From: Vincent Driessen Date: Sun, 27 Apr 2014 13:30:18 +0000 (+0200) Subject: Merge pull request #25 from 5t111111/fix-when-space-in-filepath X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/947f660844168bf154049642f8baa0f74bad2297?hp=d1bb8f1d440a4656342bcc536574e0e1627dedcb Merge pull request #25 from 5t111111/fix-when-space-in-filepath Failed when a file path has space in it. --- diff --git a/ftplugin/python_flake8.vim b/ftplugin/python_flake8.vim index 710abf7..38bb6f7 100644 --- a/ftplugin/python_flake8.vim +++ b/ftplugin/python_flake8.vim @@ -64,7 +64,7 @@ if !exists("*Flake8()") " perform the grep itself let &grepformat="%f:%l:%c: %m\,%f:%l: %m" let &grepprg=s:flake8_cmd.s:flake8_builtins_opt.s:flake8_ignores.s:flake8_max_line_length.s:flake8_max_complexity - silent! grep! % + silent! grep! "%" " restore grep settings let &grepformat=l:old_gfm