FILE: C:\Program Files\Git\usr\share\vim\vim91\pack\dist\opt\nohlsearch\plugin\nohlsearch.vim
--
" nohlsearch.vim: Auto turn off hlsearch
" Last Change: 2024-07-31
" Maintainer: Maxim Kim
"
" turn off hlsearch after:
" - doing nothing for 'updatetime'
" - getting into insert mode
if exists('g:loaded_nohlsearch')
finish
endif
let g:loaded_nohlsearch = 1
augroup nohlsearch
au!
noremap (nohlsearch) nohlsearch
noremap! (nohlsearch) nohlsearch
au CursorHold * call feedkeys("\(nohlsearch)", 'm')
au InsertEnter * call feedkeys("\(nohlsearch)", 'm')
augroup END
--