Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在插入模式下向前移动一个单词。
为什么这不起作用:
inoremap ,w <esc>w
但这有效(回一个字):
inoremap ,b <esc>b
这是因为当光标位于单词的开头时,<Esc>会将光标向左移动一个字符(这有点不直观,但默认的 vi 行为),并且w只会移动到原始位置。
<Esc>
w
这应该有效:
inoremap ,w <esc>ww
我不是特别喜欢你的映射:
,
<Esc>b
<C-Left>
<C-Right>