diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-09-11 13:25:03 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-09-11 13:25:03 +0200 |
commit | b8d993932931549cc2bf8158abc9bad026d14c11 (patch) | |
tree | 397b353c1113a7e0e48e7dba478137daf06ddbf5 /ftdetect | |
parent | 0244e228faf6ee71750cbca3bdcd18411a927d22 (diff) | |
download | vim-polyglot-b8d993932931549cc2bf8158abc9bad026d14c11.tar.gz vim-polyglot-b8d993932931549cc2bf8158abc9bad026d14c11.zip |
Add python compiler, closes #147
Diffstat (limited to 'ftdetect')
-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 |