I was using RStudio and trying to learn python by using sublime as IDE. I found it a bit weird that I cannot move my cursor to left/rightmost with Alt + Arrow key(left / right). Is there any way I can bind it to do the job or sublime has different keys to do it? Thanks in advance.
How to bind alt+left/right to move cursor to left/rightmost of the line
jfcherng
#2
// go begin of line
{ "keys": ["whatever_keybing_you_want"], "command": "move_to", "args": { "extend": false, "to": "bol" } },
// go end of line
{ "keys": ["whatever_keybing_you_want"], "command": "move_to", "args": { "extend": false, "to": "eol" } },
1 Like