Skip to content

Instantly share code, notes, and snippets.

@eternal44
Created January 4, 2016 19:31
Show Gist options
  • Save eternal44/666a23a21cb703d9263c to your computer and use it in GitHub Desktop.
Save eternal44/666a23a21cb703d9263c to your computer and use it in GitHub Desktop.
sublime key binding
[
{ "keys": ["ctrl+super+l"], "command": "angularjs_find" },
{ "keys": ["alt+up"], "command": "move_text_up" },
{ "keys": ["alt+down"], "command": "move_text_down" },
{ "keys": ["ctrl+q"], "command": "noop" },
{ "keys": ["j", "k"], "command": "chain",
"args": {
"commands": [
["exit_insert_mode"],
["save"]
]
},
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": ["g", "t"], "command": "next_view_in_stack" },
{ "keys": ["g", "T"], "command": "prev_view_in_stack" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment