mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-07 03:04:30 +08:00
Don't clear command line call signatures in completions()
This commit is contained in:
@@ -104,7 +104,8 @@ def get_script(source=None, column=None):
|
|||||||
@catch_and_print_exceptions
|
@catch_and_print_exceptions
|
||||||
def completions():
|
def completions():
|
||||||
row, column = vim.current.window.cursor
|
row, column = vim.current.window.cursor
|
||||||
clear_call_signatures()
|
if vim_eval("g:jedi#show_call_signatures") == '1':
|
||||||
|
clear_call_signatures()
|
||||||
if vim.eval('a:findstart') == '1':
|
if vim.eval('a:findstart') == '1':
|
||||||
count = 0
|
count = 0
|
||||||
for char in reversed(vim.current.line[:column]):
|
for char in reversed(vim.current.line[:column]):
|
||||||
|
|||||||
Reference in New Issue
Block a user