I want to be able to have the cursor move past the autopair ending character so I can continue typing my code.
I'm a noob to Sublime Text. I was looking through here at SO and found this post which uses this type of code (snippet):
//Tab skips to end of autopaired characters
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true},
And I then added to my Default(Windows)sublime-keymap -- User
file like this:
//Tab skips to end of autopaired characters
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true},
"context":[
]
}
When I press the 'tab' key to make the cursor move past the closing autopair, the cursor moves to a tab stop (adding 4 spaces by default), it doesn't move "forward" like pressing an arrow key would do.
How can get the cursor just move forward using the tab key or some other key? What am I missing/doing wrong here? I don't want to have to use the arrow keys as doing so is not a natural keystroke from the home keys (esp. depending upon the user keyboard). Thanks!