Skip to content

Instantly share code, notes, and snippets.

@nhooyr
Created January 24, 2016 07:18
Show Gist options
  • Save nhooyr/3a7382909a02dd3a8f99 to your computer and use it in GitHub Desktop.
Save nhooyr/3a7382909a02dd3a8f99 to your computer and use it in GitHub Desktop.
function! ToggleHighlight()
if &hls && v:hlsearch
nohls
else
set hls
endif
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment