summaryrefslogtreecommitdiffstats
path: root/ftplugin/tablegen.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ftplugin/tablegen.vim')
-rw-r--r--ftplugin/tablegen.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/tablegen.vim b/ftplugin/tablegen.vim
index 94909ef5..b5c9f471 100644
--- a/ftplugin/tablegen.vim
+++ b/ftplugin/tablegen.vim
@@ -1,7 +1,4 @@
-if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'llvm') != -1
- finish
-endif
-
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'llvm') == -1
" Vim filetype plugin file
" Language: LLVM TableGen
" Maintainer: The LLVM team, http://llvm.org/
@@ -14,3 +11,4 @@ let b:did_ftplugin = 1
setlocal matchpairs+=<:>
setlocal softtabstop=2 shiftwidth=2
setlocal expandtab
+endif