diff options
Diffstat (limited to '')
-rw-r--r-- | syntax/godebugoutput.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/syntax/godebugoutput.vim b/syntax/godebugoutput.vim index c7fbd005..3d05e3e2 100644 --- a/syntax/godebugoutput.vim +++ b/syntax/godebugoutput.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'go') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'go') == -1 if exists("b:current_syntax") finish endif @@ -15,3 +12,4 @@ hi def link godebugOutputErr Comment hi def link godebugOutputOut Normal " vim: sw=2 ts=2 et +endif |