Skip to content

Instantly share code, notes, and snippets.

@huenisys
Created August 20, 2017 06:31
Show Gist options
  • Save huenisys/61243bbfb438d948f504c9f8bb757085 to your computer and use it in GitHub Desktop.
Save huenisys/61243bbfb438d948f504c9f8bb757085 to your computer and use it in GitHub Desktop.
sublime key bindings
[
{ "keys": [";", ";"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"},
{ "keys": ["ctrl+alt+r"], "command": "goto_symbol_in_project"},
{ "keys": ["g", "t"], "command": "next_view" },
{ "keys": ["g", "T"], "command": "prev_view" },
{
"keys": ["ctrl+s"], "command": "run_multiple_commands",
"args": {
"commands": [{
"context": "view",
"command": "save"
},{
"context": "view",
"command": "exit_insert_mode"
}]
},
"context": [
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment