diff options
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 6e25fd4e..5eb3f089 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -688,6 +688,18 @@ au FileType purescript let &l:commentstring='{--%s--}' endif +" ftdetect/python.vim +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'python-compiler') == -1 + +" Vim compiler file +" Compiler: Unit testing tool for Python +" Maintainer: Ali Aliev <ali@aliev.me> +" Last Change: 2015 Nov 2 + +autocmd FileType python compiler python + +endif + " ftdetect/qml.vim if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'qml') == -1 |