mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-15 15:03:50 -05:00
Add quake support, closes #372
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user