diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-30 11:55:40 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-30 11:55:40 +0100 |
commit | 17ad302c54063be1871c7f82d75b77e7c595e10c (patch) | |
tree | 67e2645d21baa9e05958dda9693d0f7b3a834929 /ftdetect/polyglot.vim | |
parent | 1541356fe1300a6bf2553ff1d7170036e797e07e (diff) | |
download | vim-polyglot-3.3.0.tar.gz vim-polyglot-3.3.0.zip |
Change python syntax providers, closes #209v3.3.0
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 4ae4ec4e..e5d4cc20 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -13,6 +13,8 @@ let g:filetype_euphoria = 'elixir' augroup filetypedetect autocmd BufNewFile,BufReadPost *.vb setlocal filetype=vbnet augroup END + +let g:python_highlight_all = 1 augroup filetypedetect " apiblueprint:sheerun/apiblueprint.vim autocmd BufReadPost,BufNewFile *.apib set filetype=apiblueprint @@ -780,7 +782,7 @@ au FileType purescript let &l:commentstring='{--%s--}' augroup END augroup filetypedetect -" python:mitsuhiko/vim-python-combined +" python:vim-python/python-syntax augroup END augroup filetypedetect @@ -794,6 +796,10 @@ autocmd FileType python compiler python augroup END augroup filetypedetect +" python-ident:Vimjas/vim-python-pep8-indent +augroup END + +augroup filetypedetect " qml:peterhoeg/vim-qml autocmd BufRead,BufNewFile *.qml setfiletype qml augroup END |