Skip to content

Instantly share code, notes, and snippets.

@DanielSwensson
Created June 4, 2013 19:23
Show Gist options
  • Save DanielSwensson/5708726 to your computer and use it in GitHub Desktop.
Save DanielSwensson/5708726 to your computer and use it in GitHub Desktop.
Sublime text 2 shortcuts
[
{ "keys": ["ctrl+b"], "command": "toggle_side_bar" },
{
"keys": ["ctrl+alt+left"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.33, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["ctrl+alt+right"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.66, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{ "keys": ["ctrl+alt+up"], "command": "move_to_group", "args": { "group": 0 } },
{ "keys": ["ctrl+alt+down"], "command": "move_to_group", "args": { "group": 1 } },
{ "keys": ["super+k"], "command": "toggle_side_bar" },
{ "keys": ["§"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["super+forward_slash"], "command": "toggle_comment", "args": { "block": false } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment