mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
account-for-letter-case-in-python-code-completion
This commit is contained in:
parent
35b58b3105
commit
5d759cb1a0
6 changed files with 268 additions and 15 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue