Created
February 24, 2017 11:02
-
-
Save mutsuda/df56b740f349dd301225d622b3cf7c38 to your computer and use it in GitHub Desktop.
vim toggle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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