Skip to content

Instantly share code, notes, and snippets.

@jimkang
Last active August 29, 2015 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimkang/8984604 to your computer and use it in GitHub Desktop.
Save jimkang/8984604 to your computer and use it in GitHub Desktop.
Sublime group focus/moving keybindings. Goes in ~/Library/Application Support/Packages/User.
[
{ "keys": ["super+shift+,"], "command": "focus_group", "args": { "group": 0 } },
{ "keys": ["super+shift+."], "command": "focus_group", "args": { "group": 1 } },
{ "keys": ["super+shift+/"], "command": "focus_group", "args": { "group": 2 } },
{ "keys": ["alt+super+,"], "command": "move_to_group", "args": { "group": 0 } },
{ "keys": ["alt+super+."], "command": "move_to_group", "args": { "group": 1 } },
{ "keys": ["alt+super+/"], "command": "move_to_group", "args": { "group": 2 } },
{ "keys": ["super+1"], "command": "focus_group", "args": { "group": 0 } },
{ "keys": ["super+2"], "command": "focus_group", "args": { "group": 1 } },
{ "keys": ["super+3"], "command": "focus_group", "args": { "group": 2 } },
{ "keys": ["super+4"], "command": "focus_group", "args": { "group": 3 } },
{ "keys": ["alt+1"], "command": "select_by_index", "args": { "index": 0 } },
{ "keys": ["alt+2"], "command": "select_by_index", "args": { "index": 1 } },
{ "keys": ["alt+3"], "command": "select_by_index", "args": { "index": 2 } },
{ "keys": ["alt+4"], "command": "select_by_index", "args": { "index": 3 } },
{ "keys": ["alt+5"], "command": "select_by_index", "args": { "index": 4 } },
{ "keys": ["alt+6"], "command": "select_by_index", "args": { "index": 5 } },
{ "keys": ["alt+7"], "command": "select_by_index", "args": { "index": 6 } },
{ "keys": ["alt+8"], "command": "select_by_index", "args": { "index": 7 } },
{ "keys": ["alt+9"], "command": "select_by_index", "args": { "index": 8 } },
{ "keys": ["alt+0"], "command": "select_by_index", "args": { "index": 9 } },
{ "keys": ["super+k", "super+m"], "command": "set_mark" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment