forked from VimPlug/jedi
reverse rename sorting -> fixes issue 5 of jedi-vim
This commit is contained in:
@@ -344,7 +344,8 @@ class Script(object):
|
|||||||
else:
|
else:
|
||||||
names.append(dynamic.RelatedName(d.names[0], d))
|
names.append(dynamic.RelatedName(d.names[0], d))
|
||||||
|
|
||||||
return sorted(set(names), key=lambda x: (x.module_path, x.start_pos))
|
return sorted(set(names), key=lambda x: (x.module_path, x.start_pos),
|
||||||
|
reverse=True)
|
||||||
|
|
||||||
def get_in_function_call(self):
|
def get_in_function_call(self):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user