Vim速成 - 第4节 搜索

第4节 搜索

vi-vim-tutorial-4.gif

基础

  • /

/斜杠是最基础的搜索操作。在/后输入你要搜索的文字,然后按下回车。作为一个"动作",你可以在一个操作后使用它,也可以在视图模式使用它。

  • ?

向前进行搜索。

  • n

同向地重复上一次搜做操作。

  • N

反向重复上一次搜索操作。

be careful, because the search target is interpreted as a regular expression: a*b means zero or more 'a's followed by a'b', ^abc means 'abc' at the beginning of a line, [0-9] looks for the next digit, etc.

注意:

进阶

下列很高效的操作只在vim下有效。

  • *

向后搜索下一个光标选中的"实例"

  • #

同*操作,向前进行所搜。

你可能感兴趣的:(Vim速成 - 第4节 搜索)