Lets say I wanna type the following:
def greet(name):
When I type def greet( then it automatically adds the closing ) bracket and my cursor sits between then and I can type "name" but now how do I get my cursor outside or to the end so I can complete it with the : at the end. Do you use the end key on kbd or is there some other way to do this?
#Some help with VSCode and completion please
6 messages · Page 1 of 1 (latest)
You press the right arrow button or whatever?
Right arrow key, end, closing parentheses, whatever you want to use. VS Code will handle those just fine I think.
Ah ok, was hoping for something a bit more streamlined like double tap TAB or something.
you can install the TabOut extension in vscode, once it's installed you can just press tab to go to back outside the brackets
That is awesome and exactly what I needed, thanks!