在正常模式下,每当我按下键 n (单个 n 或与键 n 组合使用时,例如 nd < / strong>,,nn , jn 等),vim将向我显示运行命令:/ final 的结果。
我不记得自己是否在不知不觉中完成了此类映射,或者是否误按了某些特定的按键组合。
答案 0 :(得分:5)
n
is a default mapping in vim。特别地,n
从光标的位置向下重复上一次搜索。您最近搜索了“最终”,因此它就是搜索的内容。
通常,在vim中找出:help <key>
的键很容易。
在这种情况下,那会给你
n Repeat the latest "/" or "?" [count] times.
If the cursor doesn't move the search is repeated with
count + 1.
|last-pattern| {Vi: no count}