Skip to content

Instantly share code, notes, and snippets.

@shayhurley
Last active October 12, 2015 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shayhurley/4097081 to your computer and use it in GitHub Desktop.
Save shayhurley/4097081 to your computer and use it in GitHub Desktop.
Sublime Text 2 Keyboard Mapping - Updated 31/12/2012
[
{ "keys": ["super+ctrl+]"], "command": "alignment" },
{ "keys": ["super+shift+v"], "command": "paste_and_indent" },
{ "keys": ["super+v"], "command": "paste" },
{ "keys": ["super+alt+t"], "command": "html_tidy"},
{ "keys": ["ctrl+shift+j"], "command": "join_lines" },
{ "keys": ["super+alt+r"], "command": "show_panel", "args": {"panel": "replace"} },
{
"keys": ["super+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": ["super+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": ["super+alt+up"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.5, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["super+alt+down"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{ "keys": ["ctrl+shift+left"], "command": "move_to_group", "args": { "group": 0 } },
{ "keys": ["ctrl+shift+right"], "command": "move_to_group", "args": { "group": 1 } },
{ "keys": ["ctrl+shift+w"], "command": "toggle_white_space" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment