Vim printing: Difference between revisions

From wikinotes
(Created page with "Vim (as far as I know) doesn't have built-in printing functionality.<br> You can instead convert a file to html, then print that. <syntaxhighlight lang="vim"> :TOhtml " conv...")
 
No edit summary
 
Line 4: Line 4:
<syntaxhighlight lang="vim">
<syntaxhighlight lang="vim">
:TOhtml  " convert to html
:TOhtml  " convert to html
:!lp %  " print
:!lp %  " print (on linux/bsd w/ cups)
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 18:43, 17 July 2021

Vim (as far as I know) doesn't have built-in printing functionality.
You can instead convert a file to html, then print that.

:TOhtml  " convert to html
:!lp %   " print (on linux/bsd w/ cups)