diff options
Diffstat (limited to 'indent/graphql.vim')
-rw-r--r-- | indent/graphql.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indent/graphql.vim b/indent/graphql.vim index 1bf93abb..71076764 100644 --- a/indent/graphql.vim +++ b/indent/graphql.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'graphql') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1 " Vim indent file " Language: GraphQL " Maintainer: Jon Parise <jon@indelible.org> @@ -79,3 +76,4 @@ endfunction let &cpoptions = s:cpo_save unlet s:cpo_save +endif |