This commit is contained in:
David Halter
2013-08-27 20:28:51 +04:30
parent ed3748a9b9
commit c4980738bd

View File

@@ -5,27 +5,22 @@ function! jedi#goto_assignments()
Python jedi_vim.goto()
endfunction
function! jedi#goto_definitions()
Python jedi_vim.goto(is_definition=True)
endfunction
function! jedi#usages()
Python jedi_vim.goto(is_related_name=True)
endfunction
function! jedi#rename(...)
Python jedi_vim.rename()
endfunction
function! jedi#completions(findstart, base)
Python jedi_vim.completions()
endfunction
function! jedi#show_call_signatures_func()
Python jedi_vim.show_call_signatures()
endfunction