Skip to content

Instantly share code, notes, and snippets.

@cbonnissent
Created April 18, 2013 12:14
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 cbonnissent/5412288 to your computer and use it in GitHub Desktop.
Save cbonnissent/5412288 to your computer and use it in GitHub Desktop.
my sublime text key binding.json
[
{
"keys": ["alt+shift+&"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1]]
}
},
{
"keys": ["alt+shift+é"],
"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": ["alt+shift+\""],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.33, 0.66, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
}
},
{
"keys": ["alt+shift+'"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.25, 0.5, 0.75, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1], [3, 0, 4, 1]]
}
},
{
"keys": ["alt+shift+_"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.5, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
}
},
{
"keys": ["alt+shift+ç"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.33, 0.66, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2], [0, 2, 1, 3]]
}
},
{
"keys": ["alt+shift+("],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.5, 1.0],
"rows": [0.0, 0.5, 1.0],
"cells":
[
[0, 0, 1, 1], [1, 0, 2, 1],
[0, 1, 1, 2], [1, 1, 2, 2]
]
}
},
{ "keys": ["ctrl+&"], "command": "focus_group", "args": { "group": 0 } },
{ "keys": ["ctrl+é"], "command": "focus_group", "args": { "group": 1 } },
{ "keys": ["ctrl+\""], "command": "focus_group", "args": { "group": 2 } },
{ "keys": ["ctrl+'"], "command": "focus_group", "args": { "group": 3 } },
{ "keys": ["ctrl+shift+&"], "command": "move_to_group", "args": { "group": 0 } },
{ "keys": ["ctrl+shift+é"], "command": "move_to_group", "args": { "group": 1 } },
{ "keys": ["ctrl+shift+\""], "command": "move_to_group", "args": { "group": 2 } },
{ "keys": ["ctrl+shift+'"], "command": "move_to_group", "args": { "group": 3 } },
{ "keys": ["ctrl+à"], "command": "focus_side_bar" },
{ "keys": ["alt+&"], "command": "select_by_index", "args": { "index": 0 } },
{ "keys": ["alt+é"], "command": "select_by_index", "args": { "index": 1 } },
{ "keys": ["alt+\""], "command": "select_by_index", "args": { "index": 2 } },
{ "keys": ["alt+'"], "command": "select_by_index", "args": { "index": 3 } },
{ "keys": ["alt+("], "command": "select_by_index", "args": { "index": 4 } },
{ "keys": ["alt+-"], "command": "select_by_index", "args": { "index": 5 } },
{ "keys": ["alt+è"], "command": "select_by_index", "args": { "index": 6 } },
{ "keys": ["alt+_"], "command": "select_by_index", "args": { "index": 7 } },
{ "keys": ["alt+ç"], "command": "select_by_index", "args": { "index": 8 } },
{ "keys": ["alt+à"], "command": "select_by_index", "args": { "index": 9 } },
{ "keys": ["super+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["super+shift+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["super+alt+c"], "command": "convert_unicode_to_ascii", "args": {"forward": true} },
{"keys" : ["super+("], "command" : "fold"},
{"keys" : ["super+)"], "command" : "unfold"},
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+r"], "command": "reindent" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment