diff options
Diffstat (limited to '')
-rw-r--r-- | ftplugin/latex-box/latexmk.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftplugin/latex-box/latexmk.vim b/ftplugin/latex-box/latexmk.vim index 15db3686..bee760a5 100644 --- a/ftplugin/latex-box/latexmk.vim +++ b/ftplugin/latex-box/latexmk.vim @@ -1,5 +1,7 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1 - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'latex') != -1 + finish +endif + " LaTeX Box latexmk functions " Options and variables {{{ @@ -554,5 +556,3 @@ endif " }}} " vim:fdm=marker:ff=unix:noet:ts=4:sw=4 - -endif |