diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-29 20:30:36 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-29 20:30:36 +0100 |
commit | a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5 (patch) | |
tree | 0ec7670cabfdf1b5fa3545cee9ee9d6ca7c8ad32 /ftplugin/graphql.vim | |
parent | 1d45a6d4f094127b113470d7710695b280224933 (diff) | |
download | vim-polyglot-a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5.tar.gz vim-polyglot-a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5.zip |
Remove grapqhl, fixes #387v3.7.1
Diffstat (limited to 'ftplugin/graphql.vim')
-rw-r--r-- | ftplugin/graphql.vim | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ftplugin/graphql.vim b/ftplugin/graphql.vim deleted file mode 100644 index 7734acee..00000000 --- a/ftplugin/graphql.vim +++ /dev/null @@ -1,22 +0,0 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'graphql') != -1 - finish -endif - -" Vim filetype plugin -" Language: GraphQL -" Maintainer: Jon Parise <jon@indelible.org> - -if (exists('b:did_ftplugin')) - finish -endif -let b:did_ftplugin = 1 - -setlocal comments=:# -setlocal commentstring=#\ %s -setlocal formatoptions-=t -setlocal iskeyword+=$,@-@ -setlocal softtabstop=2 -setlocal shiftwidth=2 -setlocal expandtab - -let b:undo_ftplugin = 'setlocal com< cms< fo< isk< sts< sw< et<' |