produce code completions at the caret's position

This commit is contained in:
shocoman 2022-10-31 01:17:59 +07:00
parent 0bd1c24b94
commit 7317db025b
7 changed files with 122 additions and 27 deletions

View file

@ -166,7 +166,7 @@ def getCallTipJava(command='', locals=None):
for args in object.argslist:
if args is not None:
# for now
tipList.append(str(args.data))
tipList.append(str(args.method))
# elif callable(object):
# argspec = str(object.__call__)
# # these don't seem to be very accurate