Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

Vimでテキストを印刷

$
0
0

↓の記事を見て、backspace.fmのVim-sideでKoRoNさんがVimでカラー印刷できると言っていたのを思い出して、もうちょっと簡単に(?)実現する方法を調べてみた。

プログラムの写経(vim編)
http://qiita.com/NoriakiOshita/items/b7a5b0f14189da25128a

追記

参照先の記事でhardcopyについて触れられている記述を見逃してました... すみません
hardcopyが動作する場合はこんな感じにするといいよ、と受け取って頂ければ幸いです。

印刷方法

結論としては以下のコマンドをVimで実行するだけ。(MacVimでのみ検証済み)

:set background=light
:set printoption=syntax:y,number:y
:hardcopy

Vimではhardcopyというコマンドで印刷ができる (詳しくはhelp :hardcopyを参照 ちなみに自分の環境だとMacのプレビューが開かれた)
helpを見ると、

If 'background' is "dark", then the colours are darkened to compensate for
the fact that otherwise they would be too bright to show up clearly on
white paper.

と書いてあるのでbackground=lightに指定
また行番号とsyntaxを反映させるためprintoptions=syntax:y,number:yに指定

Vimのコンパイルオプションとかによっては動作しない場合もあると思うので注意


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>