X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/91818a7d5f5a0af5139e9adfedc9d00fa963e699..2ced2dc79a5a3c1d4ae42a91f0bdb3fe3831df17:/autoload/flake8.vim diff --git a/autoload/flake8.vim b/autoload/flake8.vim index 06a1b6b..81aedfd 100644 --- a/autoload/flake8.vim +++ b/autoload/flake8.vim @@ -109,8 +109,10 @@ function! s:Flake8() " {{{ " read config call s:Setup() - if !executable(s:flake8_cmd) - echoerr "File " . s:flake8_cmd . " not found. Please install it first." + let l:executable = split(s:flake8_cmd)[0] + + if !executable(l:executable) + echoerr "File " . l:executable . " not found. Please install it first." return endif