mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2026-05-25 01:38:39 +08:00
+1
-1
@@ -27,7 +27,7 @@ endfunction
|
|||||||
|
|
||||||
|
|
||||||
function jedi#show_func_def()
|
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
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+1
-1
Submodule jedi updated: 9f7b586b43...bddd097b93
+3
-1
@@ -162,8 +162,10 @@ def clear_func_def():
|
|||||||
vim.current.window.cursor = cursor
|
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:
|
try:
|
||||||
|
if call_def == None:
|
||||||
|
call_def = get_script().get_in_function_call()
|
||||||
clear_func_def()
|
clear_func_def()
|
||||||
|
|
||||||
if call_def is None:
|
if call_def is None:
|
||||||
|
|||||||
Reference in New Issue
Block a user