X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/2cf450fb46d67e32d13ad0ff92397c11e8c640cd..0aa6cd08f60a942c22073abac16ef82a08bc9f33:/ftplugin/python_flake8.vim diff --git a/ftplugin/python_flake8.vim b/ftplugin/python_flake8.vim index bfc97c7..52d9fdf 100644 --- a/ftplugin/python_flake8.vim +++ b/ftplugin/python_flake8.vim @@ -1,7 +1,7 @@ " " Python filetype plugin for running flake8 " Language: Python (ft=python) -" Maintainer: Vincent Driessen +" Maintainer: Vincent Driessen " Version: Vim 7 (may work with lower Vim versions, but not tested) " URL: http://github.com/nvie/vim-flake8 " @@ -11,7 +11,11 @@ if exists("b:loaded_flake8_ftplugin") endif let b:loaded_flake8_ftplugin=1 -let s:flake8_cmd="flake8" +if exists("g:flake8_cmd") + let s:flake8_cmd=g:flake8_cmd +else + let s:flake8_cmd="flake8" +endif let s:flake8_ignores="" if exists("g:flake8_ignore") @@ -74,6 +78,5 @@ endif if !exists("no_plugin_maps") && !exists("no_flake8_maps") if !hasmapto('Flake8(') noremap :call Flake8() - noremap! :call Flake8() endif endif