From: WAKASUGI Mubae Date: Sun, 27 Apr 2014 00:30:25 +0000 (+0900) Subject: Put double quotes around a file path to check a correct file path with white space... X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/452086f0b6dc39e6cf1369b910994c1525a90e24 Put double quotes around a file path to check a correct file path with white 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