Skip to content

Instantly share code, notes, and snippets.

@marczhermo
Created April 22, 2013 10:12
Show Gist options
  • Select an option

  • Save marczhermo/5433732 to your computer and use it in GitHub Desktop.

Select an option

Save marczhermo/5433732 to your computer and use it in GitHub Desktop.
Sublime 2 : Key Binding User
[
{ "keys": ["j", "j"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": ["ctrl+shift+o"], "command": "prompt_select_project" },
{
"keys": ["alt+shift+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": ["alt+shift+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 } },
{ "keys": ["ctrl+alt+right"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+alt+left"], "command": "prev_view_in_stack" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment