Skip to content

Instantly share code, notes, and snippets.

@mutsuda
Created February 24, 2017 11:02
Show Gist options
  • Save mutsuda/df56b740f349dd301225d622b3cf7c38 to your computer and use it in GitHub Desktop.
Save mutsuda/df56b740f349dd301225d622b3cf7c38 to your computer and use it in GitHub Desktop.
vim toggle
function! ToggleSyntax()
if exists("g:syntax_on")
syntax off
else
syntax enable
endif
endfunction
nmap <silent> ;s :call ToggleSyntax()<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment