Merge pull request #83 from andviro/master

fix for #81
This commit is contained in:
David Halter
2013-01-25 01:37:24 -08:00
3 changed files with 13 additions and 5 deletions

12
.gitignore vendored
View File

@@ -1,2 +1,10 @@
*.swp
*.pyc
*~
*.sw?
*.py[cod]
.coverage
.tox
.mr.developer.cfg
.project
.pydevproject
.ropeproject
.idea

View File

@@ -101,7 +101,7 @@ function! jedi#new_buffer(path)
set filetype=python
endfunction
function! s:add_goto_window()
function! jedi#add_goto_window()
set lazyredraw
cclose
execute 'belowright copen 3'
@@ -120,7 +120,7 @@ function! jedi#goto_window_on_enter()
if l:data.bufnr
" close goto_window buffer
normal ZQ
jedi#new_buffer(bufname(l:data.bufnr))
call jedi#new_buffer(bufname(l:data.bufnr))
call cursor(l:data.lnum, l:data.col)
else
echohl WarningMsg | echo "Builtin module cannot be opened." | echohl None

View File

@@ -148,7 +148,7 @@ def goto(is_definition=False, is_related_name=False, no_output=False):
lnum=d.line_nr, col=d.column + 1,
text=PythonToVimStr(d.description)))
vim.eval('setqflist(%s)' % repr(lst))
vim.eval('<sid>add_goto_window()')
vim.eval('jedi#add_goto_window()')
return definitions