Rogue right arrow keys → and end keys are on the other side of the keyboard. Each time a function is input, the cursor is in the middle of various brackets. What is a better way to move the cursor out?
In sublime text 2, we can set the shortcut key by ourselves:
{"Keys": ["CTRL + ALT + space"], "command": "move", "ARGs": {"by": "characters", "Forward ": true }},
{"Keys": ["Shift + space"], "command": "move", "ARGs": {"by": "characters", "Forward ": false }},
{"Keys": ["Alt + space"], "command": "move", "ARGs": {"by": "word_ends", "Forward ": true }},
{"Keys": ["Shift + ALT + space"], "command": "move", "ARGs": {"by": "word_ends", "Forward ": false }},
{"Keys": ["Alt + enter"], "command": "move", "ARGs": {"by": "lines", "Forward ": true }},
{"Keys": ["Shift + ALT + enter"], "command": "move", "ARGs": {"by": "lines", "Forward ": false }}
Shortcut Key comparison:
CTRL + ALT + space move the cursor right
Shift + space move the cursor to the left
Alt + space move the cursor one cell right
Shift + ALT + space move the cursor left to a unit
Alt + enter move the cursor down a row
Shift + ALT + enter move the cursor up a row
Shift + press enter is completely treated as the old Cai's buy one get one, the role is different from Ctrl + press enter is not to create a new line.
Source: http://www.oldcai.com/archives/788