Reputation:
Let's say I want to code:
if(x == 1) {
...
}
the problem I have is, after I type 1 as:
if(x == 1|) // '|' is the cursor
I have to press left arrow key ->
to get out of the parentheses )
then type bracket. Since arrow key ->
is quite far from the most used keys, it really slows me down when I move my finger that far to access the arrow key and then move my finger back, is it quick way/shortcut to get out of parentheses in VS Code?
Upvotes: 3
Views: 4718
Reputation: 186
You could type the closing bracket or try an extension like tabout https://marketplace.visualstudio.com/items?itemName=albert.TabOut
Upvotes: 1