Add cql support, closes #98

This commit is contained in:
Adam Stankiewicz
2015-12-28 14:58:35 +01:00
parent a8d08c8a49
commit 829ab22723
4 changed files with 142 additions and 0 deletions

View File

@@ -45,6 +45,12 @@ function! s:DetectCoffee()
endfunction
autocmd BufNewFile,BufRead * call s:DetectCoffee()
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cql') == -1
if has("autocmd")
au BufNewFile,BufRead *.cql set filetype=cql
endif
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cucumber') == -1
autocmd BufNewFile,BufReadPost *.feature,*.story set filetype=cucumber