Skip to content

Instantly share code, notes, and snippets.

@bedartha
Last active December 19, 2015 09:39
Show Gist options
  • Select an option

  • Save bedartha/5934491 to your computer and use it in GitHub Desktop.

Select an option

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"…
[
{ "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