From: eistaa Date: Tue, 16 Sep 2014 11:16:15 +0000 (+0200) Subject: Added option to not show quickfix window. X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/971889ff067dc435e81c4eb1942dc9f66552ed70 Added option to not show quickfix window. --- diff --git a/ftplugin/python_flake8.vim b/ftplugin/python_flake8.vim index 5310e3b..18d0bf3 100644 --- a/ftplugin/python_flake8.vim +++ b/ftplugin/python_flake8.vim @@ -68,6 +68,12 @@ if !exists("*Flake8()") let s:flake8_quickfix_location="belowright" endif + if exists("g:flake8_hide_quickfix") + let s:flake8_hide_quickfix=g:flake8_hide_quickfix + else + let s:flake8_hide_quickfix=0 + endif + " set shellpipe to > instead of tee (suppressing output) set shellpipe=> @@ -84,10 +90,12 @@ if !exists("*Flake8()") " open cwindow let has_results=getqflist() != [] if has_results - execute s:flake8_quickfix_location." copen" - setlocal wrap - nnoremap c :cclose - nnoremap q :cclose + if s:flake8_hide_quickfix == 0 + execute s:flake8_quickfix_location." copen" + setlocal wrap + nnoremap c :cclose + nnoremap q :cclose + endif endif set nolazyredraw