Skip to content

Instantly share code, notes, and snippets.

@weapp
Forked from eltercero/sublime_key_bindings.py
Created September 23, 2015 10:12
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 weapp/16268ffb4704a7ebeaa5 to your computer and use it in GitHub Desktop.
Save weapp/16268ffb4704a7ebeaa5 to your computer and use it in GitHub Desktop.
[
{ "keys": ["ctrl+alt+super+d"], "command": "toggle_side_bar" },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+shift+l"], "command": "expand_selection", "args": {"to": "line"} },
{ "keys": ["ctrl+super+r"], "command": "reveal_in_side_bar" },
{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["ctrl+shift+<"], "command": "erb" },
{ "keys": ["super+shift+t"], "command": "reopen_last_file" },
{ "keys": ["super+i"], "command": "copy_path" },
{ "keys": ["super+ctrl+o"], "command": "goto_definition" },
{ "keys": ["ctrl+b"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
// SublimeERB
{ "keys": ["ctrl+shift+."], "command": "erb" },
// RubyBLockConverter
{ "keys": ["super+alt+j"], "command": "do_end_to_brace" },
{ "keys": ["super+alt+k"], "command": "brace_to_do_end" },
// AlignTab
{
"keys": ["super+shift+i"], "command": "align_tab",
"args" : {"live_preview" : true}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment