Last active
December 19, 2015 09:39
-
-
Save bedartha/5934491 to your computer and use it in GitHub Desktop.
In Sublime Text 2, the default key bindings for Moving focus to a group (in a tiled view) is "Ctrl+1" and "Ctrl+2" and so on. this, however, immediately conflicts with the default key binding of OS X to switch between Desktops ("Spaces"). To change this, on can simply go to the the "Sublime Text 2" menu and to "Preferences > Key Bindings - User"…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { "keys": ["super+ctrl+1"], "command": "focus_group", "args": { "group": 0 } }, | |
| { "keys": ["super+ctrl+2"], "command": "focus_group", "args": { "group": 1 } }, | |
| { "keys": ["super+ctrl+3"], "command": "focus_group", "args": { "group": 2 } }, | |
| { "keys": ["super+ctrl+4"], "command": "focus_group", "args": { "group": 3 } } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment