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/