Add autocomplete for python help entry

This commit is contained in:
baldurk
2026-08-27 13:43:14 +01:00
parent 9a2ec4aa19
commit b100e05053
5 changed files with 147 additions and 70 deletions
@@ -2143,6 +2143,8 @@ class PyReflector:
prefix_filter = node.id
while curscope is not None:
for k, v in curscope.identifiers.items():
if k.startswith('_renderdoc'):
continue
if any([x.line <= line for x in v]):
ret.append(k)
curscope = curscope.parent