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.
vim で /string を使用して目的の単語を見つけた後、強調表示が煩わしくなります。強調表示をシャットダウンする最も簡単な方法を誰か教えてもらえますか? ありがとう
最も簡単な方法は、:nohコマンドを入力することです。
:noh
さらに、この行を に追加して、.vimrcそのコマンドをキーにマップすることができるため、検索後にEnter押すだけでハイライトをクリアできます。Enter
.vimrc
:nnoremap <CR> :noh<CR><CR>