Skip to content

Commit e44c9a7

Browse files
committed
Remove hold
1 parent 46a17eb commit e44c9a7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

autoload/pymode/lint.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fun! pymode#lint#check() "{{{
5959
endif
6060

6161
if g:pymode_lint_cwindow
62-
call pymode#quickfix_open(0, g:pymode_lint_hold, g:pymode_lint_maxheight, g:pymode_lint_minheight, 0)
62+
call pymode#quickfix_open(0, g:pymode_quickfix_maxheight, g:pymode_quickfix_minheight, 0)
6363
endif
6464

6565
if g:pymode_lint_signs

autoload/pymode/rope.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ fun! pymode#rope#find_it()
5454
call pymode#wide_message('')
5555
if !empty(l:output)
5656
call setqflist(l:output)
57-
call pymode#quickfix_open(0, g:pymode_lint_hold, g:pymode_lint_maxheight, g:pymode_lint_minheight, 0)
57+
call pymode#quickfix_open(0, g:pymode_quickfix_maxheight, g:pymode_quickfix_minheight, 0)
5858
end
5959
endfunction
6060

@@ -73,6 +73,7 @@ endfunction
7373

7474

7575
fun! pymode#rope#regenerate() "{{{
76+
call pymode#wide_message('Regenerate Rope cache ... ')
7677
PymodePython rope.regenerate()
7778
endfunction "}}}
7879

autoload/pymode/run.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fun! pymode#run#code_run(line1, line2) "{{{
8686
call setqflist(qflist)
8787
endif
8888

89-
call pymode#quickfix_open(0, g:pymode_lint_hold, g:pymode_lint_maxheight, g:pymode_lint_minheight, 0)
89+
call pymode#quickfix_open(0, g:pymode_quickfix_maxheight, g:pymode_quickfix_maxheight, 0)
9090
let &efm = l:_efm
9191

9292
catch /E234/

0 commit comments

Comments
 (0)