Skip to content

Instantly share code, notes, and snippets.

@eltercero
Last active February 4, 2020 10:09
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eltercero/5728184 to your computer and use it in GitHub Desktop.
Save eltercero/5728184 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": ["super+shift+c"], "command": "expand_selection", "args": {"to": "scope"} },
{ "keys": ["super+shift+j"], "command": "expand_selection", "args": {"to": "indentation"} },
{ "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} },
{ "keys": ["super+ctrl+right"], "command": "indent" },
{ "keys": ["super+ctrl+left"], "command": "unindent" },
{ "keys": ["super+shift+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["super+shift+d"], "command": "duplicate_line" },
{ "keys": ["super+shift+w"], "command": "close_all" },
{ "keys": ["alt+shift+f"], "command": "reindent", "args": {"single_line": false} },
// 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}
},
// Advanced New File
{
"keys": ["super+shift+k"], "command": "advanced_new_file_delete",
"args": {"current": true}
},
// Sublime-github
{ "keys": ["ctrl+alt+c"], "command": "open_remote_url" },
{ "keys": ["ctrl+alt+m"], "command": "open_remote_url_master" },
{ "keys": ["ctrl+alt+b"], "command": "blame" },
{ "keys": ["ctrl+alt+h"], "command": "history" },
// Git gutter
{ "keys": ["ctrl+alt+d"], "command": "git_gutter_diff_popup" },
// Expand Region
{ "keys": ["super+e"], "command": "expand_region" },
{
"keys": ["super+shift+e"],
"command": "expand_region",
"args": {"undo": true},
"context": [{ "key": "expand_region_soft_undo" }]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment