diff options
Diffstat (limited to '')
-rw-r--r-- | syntax/dsdl.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/syntax/dsdl.vim b/syntax/dsdl.vim index f9ffc877..3300ca70 100644 --- a/syntax/dsdl.vim +++ b/syntax/dsdl.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'dlang') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dlang') == -1 " Vim syntax file for DUB configurations." " " Language: SDLang (dub config) @@ -92,3 +89,4 @@ hi def link dsdlStatement Statement hi def link dsdlAttribute Tag let b:current_syntax = "dsdl" +endif |