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 /ftdetect | |
parent | 1d45a6d4f094127b113470d7710695b280224933 (diff) | |
download | vim-polyglot-a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5.tar.gz vim-polyglot-a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5.zip |
Remove grapqhl, fixes #387v3.7.1
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 37fc5552..85409bc5 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -462,14 +462,6 @@ au BufNewFile,BufRead *.gradle set filetype=groovy augroup end endif -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1 - augroup filetypedetect - " graphql, from graphql.vim in jparise/vim-graphql -" vint: -ProhibitAutocmdWithNoGroup -au BufRead,BufNewFile *.graphql,*.graphqls,*.gql setfiletype graphql - augroup end -endif - if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haml') == -1 augroup filetypedetect " haml, from haml.vim in sheerun/vim-haml @@ -841,8 +833,8 @@ endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 augroup filetypedetect - " ocaml, from jbuild.vim in rgrinberg/vim-ocaml -au BufRead,BufNewFile jbuild,dune,dune-project set ft=jbuild + " ocaml, from dune.vim in rgrinberg/vim-ocaml +au BufRead,BufNewFile jbuild,dune,dune-project set ft=dune augroup end endif @@ -1225,7 +1217,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'rust') == -1 " vint: -ProhibitAutocmdWithNoGroup autocmd BufRead,BufNewFile *.rs setf rust -autocmd BufRead,BufNewFile Cargo.toml if &filetype == "" | set filetype=cfg | endif +autocmd BufRead,BufNewFile Cargo.toml setf FALLBACK cfg " vim: set et sw=4 sts=4 ts=8: augroup end |