Add cuesheet support, closes #366

This commit is contained in:
Adam Stankiewicz
2019-03-04 09:37:07 +01:00
parent c39dff0b10
commit edfcded9fd
4 changed files with 40 additions and 1 deletions

View File

@@ -242,6 +242,13 @@ autocmd BufNewFile,BufReadPost *.feature,*.story set filetype=cucumber
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cue') == -1
augroup filetypedetect
" cue, from cuesheet.vim in mgrabovsky/vim-cuesheet
autocmd BufRead,BufNewFile *.cue set filetype=cuesheet
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dart') == -1
augroup filetypedetect
" dart, from dart.vim in dart-lang/dart-vim-plugin