mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-20 23:08:31 +08:00
account-for-letter-case-in-python-code-completion
This commit is contained in:
@@ -74,8 +74,9 @@ def getAutoCompleteList(command='', locals=None, includeMagic=1,
|
||||
pyObj = locals[attribute]
|
||||
completion_list.append(PythonCodeCompletionFactory.
|
||||
newCodeCompletion(attribute,
|
||||
attribute[len(filter):],
|
||||
pyObj))
|
||||
attribute,
|
||||
pyObj,
|
||||
filter))
|
||||
except:
|
||||
# hmm, problem evaluating? Examples of this include
|
||||
# inner classes, e.g. access$0, which aren't valid Python
|
||||
|
||||
Reference in New Issue
Block a user