mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-06 10:54:22 +08:00
removed sorting, because jedi does that now.
This commit is contained in:
@@ -24,7 +24,7 @@ if g:jedi#auto_initialization
|
||||
end
|
||||
|
||||
if g:jedi#popup_on_dot
|
||||
inoremap <buffer> . .<C-R>=jedi#do_popup_on_dot() ? "\<lt>C-X>\<lt>C-O>" : ""<CR>
|
||||
inoremap <buffer> . .<C-R>=jedi#do_popup_on_dot() ? "\<C-X>\<C-O>" : ""<CR>
|
||||
end
|
||||
|
||||
if g:jedi#auto_close_doc
|
||||
|
||||
2
jedi
2
jedi
Submodule jedi updated: 9f1f230a02...24b8942713
@@ -77,8 +77,6 @@ def complete():
|
||||
)
|
||||
out.append(d)
|
||||
|
||||
out.sort(key=lambda x: x['word'].lower())
|
||||
|
||||
strout = str(out)
|
||||
except Exception:
|
||||
# print to stdout, will be in :messages
|
||||
|
||||
Reference in New Issue
Block a user