Skip to content

Instantly share code, notes, and snippets.

@ppdeassis
Last active July 25, 2018 22:20
Show Gist options
  • Save ppdeassis/8980703 to your computer and use it in GitHub Desktop.
Save ppdeassis/8980703 to your computer and use it in GitHub Desktop.
Sublime Text - Key binding Preferences
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["super+shift+w"], "command": "close_all" },
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["ctrl+shift+d"], "command": "file_diff_menu" },
{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment