diff options
Diffstat (limited to '')
-rw-r--r-- | ftplugin/julia.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/julia.vim b/ftplugin/julia.vim index bdfe9877..27930727 100644 --- a/ftplugin/julia.vim +++ b/ftplugin/julia.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'julia') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'julia') == -1 " Vim filetype plugin file " Language: Julia " Maintainer: Carlo Baldassi <carlobaldassi@gmail.com> @@ -109,3 +106,4 @@ let b:undo_ftplugin .= " | delcommand JuliaDoc | delcommand JuliaDocKeywordprg" let &cpo = s:save_cpo unlet s:save_cpo +endif |