I enjoy writing code with two side-by-side columns. Unfortunately, there is no out-of-the-box keyboard shortcut to switch from one column to the other. Let's add them.
- Go to "Sublime Text => Preferences => Key Bindings - User"
- Copy and paste the following into that file:
[
{ "keys": ["command+1"], "command": "focus_group", "args": { "group": 0 } },
{ "keys": ["command+2"], "command": "focus_group", "args": { "group": 1 } }
]
Now you can use Command + 2
to go to the right column and Command + 1
to go to the first column.