mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
Fix conditions, #608
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ant')
|
||||
if has_key(g:polyglot_is_disabled, 'ant')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'bdf')
|
||||
if has_key(g:polyglot_is_disabled, 'bdf')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'coffee-script')
|
||||
if has_key(g:polyglot_is_disabled, 'coffee-script')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'rust')
|
||||
if has_key(g:polyglot_is_disabled, 'rust')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'coffee-script')
|
||||
if has_key(g:polyglot_is_disabled, 'coffee-script')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'elixir')
|
||||
if has_key(g:polyglot_is_disabled, 'elixir')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'cryptol')
|
||||
if has_key(g:polyglot_is_disabled, 'cryptol')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'cs')
|
||||
if has_key(g:polyglot_is_disabled, 'cs')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'cucumber')
|
||||
if has_key(g:polyglot_is_disabled, 'cucumber')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'dot')
|
||||
if has_key(g:polyglot_is_disabled, 'dot')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ruby')
|
||||
if has_key(g:polyglot_is_disabled, 'ruby')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'elixir')
|
||||
if has_key(g:polyglot_is_disabled, 'elixir')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'fish')
|
||||
if has_key(g:polyglot_is_disabled, 'fish')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'go')
|
||||
if has_key(g:polyglot_is_disabled, 'go')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'gradle')
|
||||
if has_key(g:polyglot_is_disabled, 'gradle')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'gradle')
|
||||
if has_key(g:polyglot_is_disabled, 'gradle')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'haml')
|
||||
if has_key(g:polyglot_is_disabled, 'haml')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ledger')
|
||||
if has_key(g:polyglot_is_disabled, 'ledger')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'lilypond')
|
||||
if has_key(g:polyglot_is_disabled, 'lilypond')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'livescript')
|
||||
if has_key(g:polyglot_is_disabled, 'livescript')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'elixir')
|
||||
if has_key(g:polyglot_is_disabled, 'elixir')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'nim')
|
||||
if has_key(g:polyglot_is_disabled, 'nim')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'nix')
|
||||
if has_key(g:polyglot_is_disabled, 'nix')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ocaml')
|
||||
if has_key(g:polyglot_is_disabled, 'ocaml')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'powershell')
|
||||
if has_key(g:polyglot_is_disabled, 'powershell')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'python-compiler')
|
||||
if has_key(g:polyglot_is_disabled, 'python-compiler')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ruby')
|
||||
if has_key(g:polyglot_is_disabled, 'ruby')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ruby')
|
||||
if has_key(g:polyglot_is_disabled, 'ruby')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ruby')
|
||||
if has_key(g:polyglot_is_disabled, 'ruby')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'ruby')
|
||||
if has_key(g:polyglot_is_disabled, 'ruby')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'rust')
|
||||
if has_key(g:polyglot_is_disabled, 'rust')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'sass')
|
||||
if has_key(g:polyglot_is_disabled, 'sass')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'scala')
|
||||
if has_key(g:polyglot_is_disabled, 'scala')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'swift')
|
||||
if has_key(g:polyglot_is_disabled, 'swift')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'tcl')
|
||||
if has_key(g:polyglot_is_disabled, 'tcl')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'tex')
|
||||
if has_key(g:polyglot_is_disabled, 'tex')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'tidy')
|
||||
if has_key(g:polyglot_is_disabled, 'tidy')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
if !has_key(g:polyglot_is_disabled, 'typescript')
|
||||
if has_key(g:polyglot_is_disabled, 'typescript')
|
||||
finish
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user