履歴の追加・削除
作者: 小見 拓
—
最終変更
2012年01月08日 12時11分
履歴を追加する
" コマンドラインの履歴を追加。 " 「:」「cmd」、どちらでも良い。 call histadd(':', 'saveas history.html') call histadd('cmd', 'saveas history.html') " 検索の履歴を追加。 " 「/」「search」、どちらでも良い。 call histadd('/', 'search_words') call histadd('search', 'search_words') " 式の履歴を追加。 " 「=」「expr」、どちらでも良い。 call histadd('=', 'Rand(10)') call histadd('expr', 'Rand(10)') " input()の履歴を追加。 " 「@」「input」、どちらでも良い。 call histadd('@', 'Yes, I do.') call histadd('input', 'Yes, I do.')
input()の履歴は、input()で表示されるプロンプトへの入力履歴
" プロンプトに入力すると、履歴が追加される call input('Is this a reference page ?')
履歴を削除する
" コマンドラインの履歴を削除。 " インデックス指定。数字が大きくなるほど最新。マイナス値で最新側から指定。 call histdel(':', -1) " 正規表現。部分一致で削除。 call histdel(':', '^help') " 検索の履歴を削除。 call histdel('/', -1) call histdel('/', '^search_') " 式の履歴を削除。 cal histdel('=', -1) cal histdel('=', '^Rand') " input()の履歴を削除。 call histdel('@', -1) call histdel('@', 'Yes, I do.')
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