mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-07 19:24:36 +08:00
@@ -27,7 +27,7 @@ endfunction
|
||||
|
||||
|
||||
function jedi#show_func_def()
|
||||
python jedi_vim.show_func_def(jedi_vim.get_script().get_in_function_call())
|
||||
python jedi_vim.show_func_def()
|
||||
endfunction
|
||||
|
||||
|
||||
|
||||
2
jedi
2
jedi
Submodule jedi updated: 9f7b586b43...bddd097b93
@@ -162,8 +162,10 @@ def clear_func_def():
|
||||
vim.current.window.cursor = cursor
|
||||
|
||||
|
||||
def show_func_def(call_def, completion_lines=0):
|
||||
def show_func_def(call_def=None, completion_lines=0):
|
||||
try:
|
||||
if call_def == None:
|
||||
call_def = get_script().get_in_function_call()
|
||||
clear_func_def()
|
||||
|
||||
if call_def is None:
|
||||
|
||||
Reference in New Issue
Block a user