From 28388008327aacfc48db3c31f415564d93cd983f Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Sun, 25 Oct 2020 21:08:27 +0100 Subject: Fix conditions, #608 --- after/ftplugin/cabal.vim | 2 +- after/ftplugin/coffee.vim | 2 +- after/ftplugin/haskell.vim | 2 +- after/ftplugin/html.vim | 2 +- after/ftplugin/idris.vim | 2 +- after/ftplugin/idris2.vim | 2 +- after/ftplugin/javascript-1.vim | 2 +- after/ftplugin/javascript-2.vim | 2 +- after/ftplugin/javascriptreact.vim | 2 +- after/ftplugin/jsx.vim | 2 +- after/ftplugin/llvm.vim | 2 +- after/ftplugin/puppet.vim | 2 +- after/ftplugin/tsx.vim | 2 +- after/ftplugin/typescriptreact.vim | 2 +- after/indent/html.vim | 2 +- after/indent/javascript-1.vim | 2 +- after/indent/javascript-2.vim | 2 +- after/indent/javascriptreact.vim | 2 +- after/indent/jsx.vim | 2 +- after/indent/objc.vim | 2 +- after/indent/tsx.vim | 2 +- after/indent/typescript.vim | 2 +- after/indent/typescriptreact.vim | 2 +- after/syntax/c.vim | 2 +- after/syntax/coffee.vim | 2 +- after/syntax/cpp.vim | 2 +- after/syntax/haskell.vim | 2 +- after/syntax/help.vim | 2 +- after/syntax/html.vim | 2 +- after/syntax/html/aria.vim | 2 +- after/syntax/html/electron.vim | 2 +- after/syntax/html/rdfa.vim | 2 +- after/syntax/idris.vim | 2 +- after/syntax/idris2.vim | 2 +- after/syntax/javascript.vim | 2 +- after/syntax/javascript/graphql.vim | 2 +- after/syntax/javascript/html5.vim | 2 +- after/syntax/javascript/sql.vim | 2 +- after/syntax/javascriptreact.vim | 2 +- after/syntax/javascriptreact/graphql.vim | 2 +- after/syntax/jsx.vim | 2 +- after/syntax/jsx_pretty.vim | 2 +- after/syntax/llvm.vim | 2 +- after/syntax/mdx.vim | 2 +- after/syntax/mma.vim | 2 +- after/syntax/objc.vim | 2 +- after/syntax/reason.vim | 2 +- after/syntax/reason/graphql.vim | 2 +- after/syntax/rspec.vim | 2 +- after/syntax/ruby.vim | 2 +- after/syntax/rust.vim | 2 +- after/syntax/tsx.vim | 2 +- after/syntax/typescript/graphql.vim | 2 +- after/syntax/typescriptreact.vim | 2 +- after/syntax/typescriptreact/graphql.vim | 2 +- after/syntax/vue/graphql.vim | 2 +- after/syntax/zsh.vim | 2 +- 57 files changed, 57 insertions(+), 57 deletions(-) (limited to 'after') 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 diff --git a/after/indent/html.vim b/after/indent/html.vim index f33b27a1..ea76ee09 100644 --- a/after/indent/html.vim +++ b/after/indent/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/indent/javascript-1.vim b/after/indent/javascript-1.vim index 5a311439..67a63055 100644 --- a/after/indent/javascript-1.vim +++ b/after/indent/javascript-1.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/indent/javascript-2.vim b/after/indent/javascript-2.vim index 3177c0cb..afedd9f4 100644 --- a/after/indent/javascript-2.vim +++ b/after/indent/javascript-2.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/indent/javascriptreact.vim b/after/indent/javascriptreact.vim index a757cdd7..ceacc887 100644 --- a/after/indent/javascriptreact.vim +++ b/after/indent/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/indent/jsx.vim b/after/indent/jsx.vim index 1ba02c46..afee5bf0 100644 --- a/after/indent/jsx.vim +++ b/after/indent/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/indent/objc.vim b/after/indent/objc.vim index 13d4d32d..e9cc20e8 100644 --- a/after/indent/objc.vim +++ b/after/indent/objc.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'objc') +if has_key(g:polyglot_is_disabled, 'objc') finish endif diff --git a/after/indent/tsx.vim b/after/indent/tsx.vim index f29ccbaf..18254bfc 100644 --- a/after/indent/tsx.vim +++ b/after/indent/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/indent/typescript.vim b/after/indent/typescript.vim index 1294bc59..edf83bc8 100644 --- a/after/indent/typescript.vim +++ b/after/indent/typescript.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/indent/typescriptreact.vim b/after/indent/typescriptreact.vim index 75f2e3bb..3c3b2666 100644 --- a/after/indent/typescriptreact.vim +++ b/after/indent/typescriptreact.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/syntax/c.vim b/after/syntax/c.vim index 10497670..2c2762eb 100644 --- a/after/syntax/c.vim +++ b/after/syntax/c.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'cpp-modern') +if has_key(g:polyglot_is_disabled, 'cpp-modern') finish endif diff --git a/after/syntax/coffee.vim b/after/syntax/coffee.vim index debd9aa9..a3e5d8fa 100644 --- a/after/syntax/coffee.vim +++ b/after/syntax/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/syntax/cpp.vim b/after/syntax/cpp.vim index 517404f0..761a6c15 100644 --- a/after/syntax/cpp.vim +++ b/after/syntax/cpp.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'cpp-modern') +if has_key(g:polyglot_is_disabled, 'cpp-modern') finish endif diff --git a/after/syntax/haskell.vim b/after/syntax/haskell.vim index 61d828d2..61886369 100644 --- a/after/syntax/haskell.vim +++ b/after/syntax/haskell.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'dhall') +if has_key(g:polyglot_is_disabled, 'dhall') finish endif diff --git a/after/syntax/help.vim b/after/syntax/help.vim index 0ee4a9ca..007c21f3 100644 --- a/after/syntax/help.vim +++ b/after/syntax/help.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'scala') +if has_key(g:polyglot_is_disabled, 'scala') finish endif diff --git a/after/syntax/html.vim b/after/syntax/html.vim index 56ba064c..9dec611e 100644 --- a/after/syntax/html.vim +++ b/after/syntax/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/syntax/html/aria.vim b/after/syntax/html/aria.vim index ed5a8383..b589cc5e 100644 --- a/after/syntax/html/aria.vim +++ b/after/syntax/html/aria.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/syntax/html/electron.vim b/after/syntax/html/electron.vim index d7bfa90f..35aa1a1e 100644 --- a/after/syntax/html/electron.vim +++ b/after/syntax/html/electron.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/syntax/html/rdfa.vim b/after/syntax/html/rdfa.vim index 529c2fcd..5554f12b 100644 --- a/after/syntax/html/rdfa.vim +++ b/after/syntax/html/rdfa.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/syntax/idris.vim b/after/syntax/idris.vim index 18a31e8a..51aa6422 100644 --- a/after/syntax/idris.vim +++ b/after/syntax/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/syntax/idris2.vim b/after/syntax/idris2.vim index 6371b937..6aaecf4d 100644 --- a/after/syntax/idris2.vim +++ b/after/syntax/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/syntax/javascript.vim b/after/syntax/javascript.vim index 5a311439..67a63055 100644 --- a/after/syntax/javascript.vim +++ b/after/syntax/javascript.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/syntax/javascript/graphql.vim b/after/syntax/javascript/graphql.vim index 6044d6ae..b1a30714 100644 --- a/after/syntax/javascript/graphql.vim +++ b/after/syntax/javascript/graphql.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/syntax/javascript/html5.vim b/after/syntax/javascript/html5.vim index 683202d1..b605aed5 100644 --- a/after/syntax/javascript/html5.vim +++ b/after/syntax/javascript/html5.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/syntax/javascript/sql.vim b/after/syntax/javascript/sql.vim index f4feb758..52b94d70 100644 --- a/after/syntax/javascript/sql.vim +++ b/after/syntax/javascript/sql.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'javascript-sql') +if has_key(g:polyglot_is_disabled, 'javascript-sql') finish endif diff --git a/after/syntax/javascriptreact.vim b/after/syntax/javascriptreact.vim index a757cdd7..ceacc887 100644 --- a/after/syntax/javascriptreact.vim +++ b/after/syntax/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/syntax/javascriptreact/graphql.vim b/after/syntax/javascriptreact/graphql.vim index 308c17d7..6842f74c 100644 --- a/after/syntax/javascriptreact/graphql.vim +++ b/after/syntax/javascriptreact/graphql.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/syntax/jsx.vim b/after/syntax/jsx.vim index c8b8aa5d..8ca6c767 100644 --- a/after/syntax/jsx.vim +++ b/after/syntax/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/syntax/jsx_pretty.vim b/after/syntax/jsx_pretty.vim index a6cb8a90..1f1e3685 100644 --- a/after/syntax/jsx_pretty.vim +++ b/after/syntax/jsx_pretty.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/syntax/llvm.vim b/after/syntax/llvm.vim index e38d5041..024928b8 100644 --- a/after/syntax/llvm.vim +++ b/after/syntax/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/syntax/mdx.vim b/after/syntax/mdx.vim index 26ebf198..8d734bb2 100644 --- a/after/syntax/mdx.vim +++ b/after/syntax/mdx.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'mdx') +if has_key(g:polyglot_is_disabled, 'mdx') finish endif diff --git a/after/syntax/mma.vim b/after/syntax/mma.vim index 2509d210..67611337 100644 --- a/after/syntax/mma.vim +++ b/after/syntax/mma.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'mathematica') +if has_key(g:polyglot_is_disabled, 'mathematica') finish endif diff --git a/after/syntax/objc.vim b/after/syntax/objc.vim index 78e41fd1..a9805eed 100644 --- a/after/syntax/objc.vim +++ b/after/syntax/objc.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'objc') +if has_key(g:polyglot_is_disabled, 'objc') finish endif diff --git a/after/syntax/reason.vim b/after/syntax/reason.vim index 0df633cb..c30114ee 100644 --- a/after/syntax/reason.vim +++ b/after/syntax/reason.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'reason') +if has_key(g:polyglot_is_disabled, 'reason') finish endif diff --git a/after/syntax/reason/graphql.vim b/after/syntax/reason/graphql.vim index 2a54c402..f1d8b317 100644 --- a/after/syntax/reason/graphql.vim +++ b/after/syntax/reason/graphql.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/syntax/rspec.vim b/after/syntax/rspec.vim index 355fe524..9a0961d7 100644 --- a/after/syntax/rspec.vim +++ b/after/syntax/rspec.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'rspec') +if has_key(g:polyglot_is_disabled, 'rspec') finish endif diff --git a/after/syntax/ruby.vim b/after/syntax/ruby.vim index dea6003a..3c9fccd2 100644 --- a/after/syntax/ruby.vim +++ b/after/syntax/ruby.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'yard') +if has_key(g:polyglot_is_disabled, 'yard') finish endif diff --git a/after/syntax/rust.vim b/after/syntax/rust.vim index 638c6dd8..1cf3e3a2 100644 --- a/after/syntax/rust.vim +++ b/after/syntax/rust.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'rust') +if has_key(g:polyglot_is_disabled, 'rust') finish endif diff --git a/after/syntax/tsx.vim b/after/syntax/tsx.vim index f3b43635..458419d2 100644 --- a/after/syntax/tsx.vim +++ b/after/syntax/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/syntax/typescript/graphql.vim b/after/syntax/typescript/graphql.vim index cccdbc3e..e30f0682 100644 --- a/after/syntax/typescript/graphql.vim +++ b/after/syntax/typescript/graphql.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/syntax/typescriptreact.vim b/after/syntax/typescriptreact.vim index 75f2e3bb..3c3b2666 100644 --- a/after/syntax/typescriptreact.vim +++ b/after/syntax/typescriptreact.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/syntax/typescriptreact/graphql.vim b/after/syntax/typescriptreact/graphql.vim index aa60a3aa..0367e0da 100644 --- a/after/syntax/typescriptreact/graphql.vim +++ b/after/syntax/typescriptreact/graphql.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/syntax/vue/graphql.vim b/after/syntax/vue/graphql.vim index 308c17d7..6842f74c 100644 --- a/after/syntax/vue/graphql.vim +++ b/after/syntax/vue/graphql.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'graphql') +if has_key(g:polyglot_is_disabled, 'graphql') finish endif diff --git a/after/syntax/zsh.vim b/after/syntax/zsh.vim index fc63d3c5..fcdcac31 100644 --- a/after/syntax/zsh.vim +++ b/after/syntax/zsh.vim @@ -1,4 +1,4 @@ -if !has_key(g:polyglot_is_disabled, 'zinit') +if has_key(g:polyglot_is_disabled, 'zinit') finish endif -- cgit v1.2.3