dotfiles/.vim/scripts/togglehighlight.vim

8 lines
128 B
VimL
Raw Permalink Normal View History

2020-05-31 08:13:12 +00:00
function! ToggleHighlights()
if &hlsearch == 1
set nohlsearch
else
set hlsearch
endif
endfunction