diff options
Diffstat (limited to 'after/ftplugin')
-rw-r--r-- | after/ftplugin/cabal.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/coffee.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/haskell.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/html.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/idris.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/idris2.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/javascript-1.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/javascript-2.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/javascriptreact.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/jsx.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/llvm.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/puppet.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/tsx.vim | 2 | ||||
-rw-r--r-- | after/ftplugin/typescriptreact.vim | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/after/ftplugin/cabal.vim b/after/ftplugin/cabal.vim index 80757d8e..387e655b 100644 --- a/after/ftplugin/cabal.vim +++ b/after/ftplugin/cabal.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'haskell') +if has_key(g:polyglot_is_disabled, 'haskell') finish endif diff --git a/after/ftplugin/coffee.vim b/after/ftplugin/coffee.vim index f6a750f6..b01a8a08 100644 --- a/after/ftplugin/coffee.vim +++ b/after/ftplugin/coffee.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'cjsx') +if has_key(g:polyglot_is_disabled, 'cjsx') finish endif diff --git a/after/ftplugin/haskell.vim b/after/ftplugin/haskell.vim index 03446e8b..75117f1b 100644 --- a/after/ftplugin/haskell.vim +++ b/after/ftplugin/haskell.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'haskell') +if has_key(g:polyglot_is_disabled, 'haskell') finish endif diff --git a/after/ftplugin/html.vim b/after/ftplugin/html.vim index ab2a8f2b..6cbec0ad 100644 --- a/after/ftplugin/html.vim +++ b/after/ftplugin/html.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'html5') +if has_key(g:polyglot_is_disabled, 'html5') finish endif diff --git a/after/ftplugin/idris.vim b/after/ftplugin/idris.vim index 1b973639..3fa7a746 100644 --- a/after/ftplugin/idris.vim +++ b/after/ftplugin/idris.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'idris') +if has_key(g:polyglot_is_disabled, 'idris') finish endif diff --git a/after/ftplugin/idris2.vim b/after/ftplugin/idris2.vim index 55a57ff2..2572f2af 100644 --- a/after/ftplugin/idris2.vim +++ b/after/ftplugin/idris2.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'idris2') +if has_key(g:polyglot_is_disabled, 'idris2') finish endif diff --git a/after/ftplugin/javascript-1.vim b/after/ftplugin/javascript-1.vim index 4ffa2117..58e2e1f6 100644 --- a/after/ftplugin/javascript-1.vim +++ b/after/ftplugin/javascript-1.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'javascript') +if has_key(g:polyglot_is_disabled, 'javascript') finish endif diff --git a/after/ftplugin/javascript-2.vim b/after/ftplugin/javascript-2.vim index 5a311439..67a63055 100644 --- a/after/ftplugin/javascript-2.vim +++ b/after/ftplugin/javascript-2.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'jsx') +if has_key(g:polyglot_is_disabled, 'jsx') finish endif diff --git a/after/ftplugin/javascriptreact.vim b/after/ftplugin/javascriptreact.vim index a757cdd7..ceacc887 100644 --- a/after/ftplugin/javascriptreact.vim +++ b/after/ftplugin/javascriptreact.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'jsx') +if has_key(g:polyglot_is_disabled, 'jsx') finish endif diff --git a/after/ftplugin/jsx.vim b/after/ftplugin/jsx.vim index 02451a80..54ebd29f 100644 --- a/after/ftplugin/jsx.vim +++ b/after/ftplugin/jsx.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'jsx') +if has_key(g:polyglot_is_disabled, 'jsx') finish endif diff --git a/after/ftplugin/llvm.vim b/after/ftplugin/llvm.vim index 84402199..19835810 100644 --- a/after/ftplugin/llvm.vim +++ b/after/ftplugin/llvm.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'llvm') +if has_key(g:polyglot_is_disabled, 'llvm') finish endif diff --git a/after/ftplugin/puppet.vim b/after/ftplugin/puppet.vim index 64b1699b..2e3f9c7d 100644 --- a/after/ftplugin/puppet.vim +++ b/after/ftplugin/puppet.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'puppet') +if has_key(g:polyglot_is_disabled, 'puppet') finish endif diff --git a/after/ftplugin/tsx.vim b/after/ftplugin/tsx.vim index 8c687fa6..3d4226d1 100644 --- a/after/ftplugin/tsx.vim +++ b/after/ftplugin/tsx.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'jsx') +if has_key(g:polyglot_is_disabled, 'jsx') finish endif diff --git a/after/ftplugin/typescriptreact.vim b/after/ftplugin/typescriptreact.vim index 75f2e3bb..3c3b2666 100644 --- a/after/ftplugin/typescriptreact.vim +++ b/after/ftplugin/typescriptreact.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'jsx') +if has_key(g:polyglot_is_disabled, 'jsx') finish endif |