Skip to content

Instantly share code, notes, and snippets.

@dvnguyen
Last active October 12, 2015 04:04
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 dvnguyen/a77b98d6e4cc5910b329 to your computer and use it in GitHub Desktop.
Save dvnguyen/a77b98d6e4cc5910b329 to your computer and use it in GitHub Desktop.
Sublime Text - Key Bindings
[
// Alignment plugin
{ "keys": ["super+alt+a"], "command": "alignment" },
// Remap paste and indent
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
// Remap Layouts
{
"keys": ["super+alt+right"],
"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+left"],
"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": ["alt+1"], "command": "move_to_group", "args": { "group": 0 } },
{ "keys": ["alt+2"], "command": "move_to_group", "args": { "group": 1 } },
{ "keys": ["alt+3"], "command": "move_to_group", "args": { "group": 2 } },
{ "keys": ["alt+4"], "command": "move_to_group", "args": { "group": 3 } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment