Add quake support, closes #372

This commit is contained in:
Adam Stankiewicz
2019-03-04 10:32:24 +01:00
parent efa1a55dc7
commit 833b2fadd5
4 changed files with 320 additions and 1 deletions

View File

@@ -908,6 +908,20 @@ autocmd FileType python compiler python
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'qmake') == -1
augroup filetypedetect
" qmake, from pri.vim in artoj/qmake-syntax-vim
au BufRead,BufNewFile *.pri set filetype=qmake
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'qmake') == -1
augroup filetypedetect
" qmake, from pro.vim in artoj/qmake-syntax-vim
au BufRead,BufNewFile *.pro set filetype=qmake
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'qml') == -1
augroup filetypedetect
" qml, from qml.vim in peterhoeg/vim-qml