1
0
forked from VimPlug/jedi

Implement a search function, fixes #225

This commit is contained in:
Dave Halter
2020-03-01 18:47:01 +01:00
parent a6ef8efb72
commit 9d8ad4cc04
3 changed files with 123 additions and 75 deletions

View File

@@ -462,3 +462,8 @@ def validate_line_column(func):
column, line_len, line, line_string))
return func(self, line, column, *args, **kwargs)
return wrapper
def split_search_string(name):
type, _, dotted_names = name.rpartition(' ')
return type, dotted_names.split('.')