呼び出されたpythonのコードから、vimのデータを変更する
作者: 小見 拓
—
最終変更
2012年01月08日 12時13分
呼び出されたpythonのコードから、vimのデータを変更する
- カレント行テキストを変更する
# -*- coding: shift_jis -*- from vim import * current.line = "カレント行テキストの変更"
- 選択範囲テキストを変更する
# -*- coding: shift_jis -*- from vim import * # 選択範囲3行目のデータを変更 current.range[2] = "選択範囲3行目のデータを変更"
# -*- coding: shift_jis -*- from vim import * import vim # 選択範囲のテキストを全て変更 current.range[:] = [ "head:" + i for i in current.range ]
- カレントバッファのテキストを変更する
# -*- coding: shift_jis -*- from vim import * # 3行目のデータを変更 current.buffer[2] = "3行目のデータを変更"
# -*- coding: shift_jis -*- from vim import * import vim # カレントバッファのテキストを全て変更 current.buffer[:] = [ "head:" + i for i in current.buffer ]
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 · 12 years ago