diff options
Diffstat (limited to 'autoload/vital')
-rw-r--r-- | autoload/vital/_crystal.vim | 2 | ||||
-rw-r--r-- | autoload/vital/_crystal/ColorEcho.vim | 2 | ||||
-rw-r--r-- | autoload/vital/_crystal/Data/List.vim | 2 | ||||
-rw-r--r-- | autoload/vital/_crystal/Data/String.vim | 2 | ||||
-rw-r--r-- | autoload/vital/_crystal/Process.vim | 2 | ||||
-rw-r--r-- | autoload/vital/_crystal/Web/JSON.vim | 2 | ||||
-rw-r--r-- | autoload/vital/crystal.vim | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/autoload/vital/_crystal.vim b/autoload/vital/_crystal.vim index b328af90..c93828a2 100644 --- a/autoload/vital/_crystal.vim +++ b/autoload/vital/_crystal.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'crystal') finish endif diff --git a/autoload/vital/_crystal/ColorEcho.vim b/autoload/vital/_crystal/ColorEcho.vim index 7180dce6..61e22f17 100644 --- a/autoload/vital/_crystal/ColorEcho.vim +++ b/autoload/vital/_crystal/ColorEcho.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'crystal') finish endif diff --git a/autoload/vital/_crystal/Data/List.vim b/autoload/vital/_crystal/Data/List.vim index 68f87490..0af74f78 100644 --- a/autoload/vital/_crystal/Data/List.vim +++ b/autoload/vital/_crystal/Data/List.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'crystal') finish endif diff --git a/autoload/vital/_crystal/Data/String.vim b/autoload/vital/_crystal/Data/String.vim index 67cd217c..66d58ae0 100644 --- a/autoload/vital/_crystal/Data/String.vim +++ b/autoload/vital/_crystal/Data/String.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'crystal') finish endif diff --git a/autoload/vital/_crystal/Process.vim b/autoload/vital/_crystal/Process.vim index 2da1a016..31b6b890 100644 --- a/autoload/vital/_crystal/Process.vim +++ b/autoload/vital/_crystal/Process.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'crystal') finish endif diff --git a/autoload/vital/_crystal/Web/JSON.vim b/autoload/vital/_crystal/Web/JSON.vim index a1d01238..bcf96f85 100644 --- a/autoload/vital/_crystal/Web/JSON.vim +++ b/autoload/vital/_crystal/Web/JSON.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'crystal') finish endif diff --git a/autoload/vital/crystal.vim b/autoload/vital/crystal.vim index 68938d83..a73b19ba 100644 --- a/autoload/vital/crystal.vim +++ b/autoload/vital/crystal.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('crystal', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'crystal') finish endif |