查找汇总 f/F<char> - find/previous next char in current line t/T - 跟f一样只不过光标停在⬅️左侧 */# - find current word n/N - find next/previous N/n - find next in # and ?
Note
「*」find/highlight current word
n/N - find next/previous
!> 如果用【?/#】搜寻,小写n表示寻找前一个(刚好相反)
Tip
/foo\c # 大小写不敏感查找
:s/p/h1 # replace next p to h1 in current line
:%s/p/h1 # replace all in current line
:%s/p/h1/g # replace all in global
vision模式选中代码后 :s/原来的/新的字符串
:m 0 "移动当前行到第一行