diff options
Diffstat (limited to '')
-rw-r--r-- | after/syntax/reason.vim | 2 | ||||
-rw-r--r-- | after/syntax/reason/graphql.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/after/syntax/reason.vim b/after/syntax/reason.vim index f608bde1..0df633cb 100644 --- a/after/syntax/reason.vim +++ b/after/syntax/reason.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('reason', expand('<sfile>:p')) +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 00fe9b5d..2a54c402 100644 --- a/after/syntax/reason/graphql.vim +++ b/after/syntax/reason/graphql.vim @@ -1,4 +1,4 @@ -if !polyglot#util#IsEnabled('graphql', expand('<sfile>:p')) +if !has_key(g:polyglot_is_disabled, 'graphql') finish endif |