私的 Vim メモ(検索編)
Vim は大抵の環境で使える上に使いこなすと強力なのですが、vi として(というか h, j, k, l, i, a, ESC, x, dd, p, :w, :q, :q!, ZZ 大体これくらいで全てを済ますという vi としてもあまりつかいこなせてないスタイルで)しか使っていなかったので悔い改めて修行中です。
ちょっと慣れてもすぐに忘れてしまうということを繰り返して今がある。そんなわけで自分用にメモるのです。
検索
-
/[検索文字列]
下方向に、[検索文字列]を検索する。
-
?[検索文字列]
上方向に、[検索文字列]を検索する。
-
*
カーソル位置の単語で下方向に検索する。
-
#
カーソル位置の単語で上方向に検索する。
-
n
順方向に次の検索結果に移動する。
-
N
逆方向に次の検索結果に移動する。
-
:nohlsearch
検索結果表示のハイライトを消す。
Tags: Vim
This entry was posted on 日曜日, 2月 14th, 2010 at 13:39 and is filed under 未分類. You can follow any responses to this entry through the RSS 2.0 feed.
Both comments and pings are currently closed.