在 Vim 中,我有
a #write after cursor
A #write after end line
I #write at start of line
我想在一个单词之前写,例如
I want to edit this line
我的光标位于 后面的位置this
。我想写在这之前而不删除this
。如何?
答案1
试试这个:esc++bi
- esc让你进入正常模式
- b转到上一个单词的开头
- i让您进入插入模式。
在 Vim 中,我有
a #write after cursor
A #write after end line
I #write at start of line
我想在一个单词之前写,例如
I want to edit this line
我的光标位于 后面的位置this
。我想写在这之前而不删除this
。如何?
试试这个:esc++bi