ファイルに書き出す
作者: 小見 拓
—
最終変更
2012年01月08日 12時12分
ファイルに書き出す
- 「:redir」コマンドを使用してファイルに出力する
:let outputfile = "$HOME/test.txt" :execute ":redir! > " . outputfile :silent! echon "line 1" . "\n" :silent! echon "line 2" . "\n" :silent! echon "line 3" . "\n" :silent! echon "line 4" . "\n" :silent! echon "line 5" . "\n" :redir END "# => $HOME/test.txtに出力
- バッファのテキストをファイルに出力する。
:let outputfile = "$HOME/test.txt" :execute ":write! " . outputfile "# => $HOME/test.txtにバッファのテキストを出力
- 「:redir」コマンドによる追加書き込み
:let outputfile = "$HOME/test.txt" :execute ":redir! >> " . outputfile :silent! echon "line 1" . "\n" :silent! echon "line 2" . "\n" :silent! echon "line 3" . "\n" :silent! echon "line 4" . "\n" :silent! echon "line 5" . "\n" :redir END "# => $HOME/test.txtに追記
- 「writefile()」ファンクションを使用してファイルに出力する
:let outputfile = "$HOME/test.txt" :let lines = [ "line 1", "line 2", "line 3", "line 4" ] :call writefile(lines, outputfile) "# => $HOME/test.txtに出力
Recent Comments
ありがとうございます!
http://nanasi.jp/articles/howto/editing/visualcursor-endtoend.html · 7 years ago
知りませんでした。有難うございました。
http://nanasi.jp/articles/howto/file/open-with-format.html · 9 years ago
<c-f>1ページ分、下にスクロールする<c-b>1ページ分、上にスクロールする
どっちも逆です。
http://nanasi.jp/articles/howto/user-manual/user-manual-motion.html · 10 years ago
set 使用時に : で閉じるのを忘れて右往左往してました。
http://nanasi.jp/articles/howto/file/modeline.html · 10 years ago
やっぱり日本語の方が早いっす。
http://nanasi.jp/articles/howto/help/help_ja.html · 11 years ago