Skip to content

Instantly share code, notes, and snippets.

@roulette6
Last active September 16, 2015 15:13
Show Gist options
  • Save roulette6/ffaff02ffe8ae9451081 to your computer and use it in GitHub Desktop.
Save roulette6/ffaff02ffe8ae9451081 to your computer and use it in GitHub Desktop.
Sublime Text 3 key bindings
[
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["ctrl+shift+backquote"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["alt+super+p"], "command": "autoprefixer" },
{ "keys": ["super+alt+shift+w"], "command": "close_all" },
{ "keys": ["super+shift+alt+f"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
// origami (multiple panes)
{ "keys": ["super+k", "super+up"], "command": "create_pane", "args": {"direction": "up", "give_focus": true} },
{ "keys": ["super+k", "super+right"], "command": "create_pane", "args": {"direction": "right", "give_focus": true} },
{ "keys": ["super+k", "super+down"], "command": "create_pane", "args": {"direction": "down", "give_focus": true} },
{ "keys": ["super+k", "super+left"], "command": "create_pane", "args": {"direction": "left", "give_focus": true} },
{ "keys": ["super+k", "super+i"], "command": "destroy_pane", "args": {"direction": "self"} },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment