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.
我经常将光标放在一个单词上,我想用另一个单词替换该单词的所有出现。用另一个单词替换光标下所有出现的单词的最简单方法是什么?
用于<C-r><C-w>在命令行中插入光标下的单词:
<C-r><C-w>
:%s/<C-r><C-w>/bar/g
如果您需要做很多事情,您可以轻松地创建如下映射:
nnoremap <F6> :%s/<C-r><C-w>/
上面的映射插入了命令的第一部分,准备好输入替换、任何标志和命中<CR>:
<CR>
:%s/foo/