Skip to content

Instantly share code, notes, and snippets.

@chenyanzhe
Created December 24, 2013 13:35
Show Gist options
  • Save chenyanzhe/8113447 to your computer and use it in GitHub Desktop.
Save chenyanzhe/8113447 to your computer and use it in GitHub Desktop.
Sublime Key Bindings - User
[
{ "keys": ["j", "j"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": ["g", "t"], "command": "next_view",
"context":
[
{ "key": "setting.command_mode", "operand": true },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": ["g", "T"], "command": "prev_view",
"context":
[
{ "key": "setting.command_mode", "operand": true },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": ["f8"], "command": "goto_definition" },
{
"keys": ["alt+shift+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": ["alt+shift+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]]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment