LoginSignup
1
1

More than 5 years have passed since last update.

neovimで検索時のハイライトをオフにする

Posted at

neovim(vim)で検索時のハイライトを一時的にオフにする

環境

neovim 0.2.3-dev

状況

neovimでは、検索時に、検索した単語がハイライト表示される。
一時的に、そのハイライトを消すには以下のコマンドを実行する。

:nohlsearch

# または以下でも可
:noh

常にハイライト表示を無効にする場合は、以下で設定する。

:set nohlsearch

逆に、ハイライト表示を有効にする場合は、以下で設定する。

:set hlsearch

参考

:h hlsearch
https://qiita.com/ysti/items/ac9ca59d76fc1d2099f6

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1