Is it possible for the REPL or VSCode to autocomplete the name of keywords. For example, after typing
range(0,10, len
and hitting the Tab key, I’d like to see the compeletion of length=
, before I manually type in a value to finish off the line:
range(0, 10, length=4)