We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d16ed6 commit 7ab4073Copy full SHA for 7ab4073
autoload/pymode/lint.vim
@@ -65,9 +65,7 @@ fun! pymode#lint#check() "{{{
65
66
call g:PymodeSigns.refresh(loclist)
67
68
- if g:pymode_lint_cwindow
69
- call loclist.show()
70
- endif
+ call loclist.show()
71
72
call pymode#lint#show_errormessage()
73
call pymode#wide_message('Found errors and warnings: ' . len(loclist._loclist))
autoload/pymode/tools/loclist.vim
@@ -68,7 +68,7 @@ fun! g:PymodeLocList.show() "{{{
call setloclist(0, self._loclist)
if self.is_empty()
lclose
- else
+ elseif g:pymode_lint_cwindow
let num = winnr()
lopen
74
setl nowrap
0 commit comments