g:jedi#quickfix_window_height

This commit adds an option g:jedi#quickfix_window_height, with the
    default value 10 (as this is the default value for :copen)
This commit is contained in:
Marcin Szamotulski
2013-03-17 13:47:17 +00:00
parent 165dea0a2c
commit 422ad483c1
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ endfunction
function! jedi#add_goto_window()
set lazyredraw
cclose
execute 'belowright copen 3'
execute 'belowright copen '.g:jedi#quickfix_window_height
set nolazyredraw
if g:jedi#use_tabs_not_buffers == 1
map <buffer> <CR> :call jedi#goto_window_on_enter()<CR>