Skip to content

Instantly share code, notes, and snippets.

@roulette6
Created September 17, 2015 14:37
Show Gist options
  • Save roulette6/e283d4a652019aa46790 to your computer and use it in GitHub Desktop.
Save roulette6/e283d4a652019aa46790 to your computer and use it in GitHub Desktop.
Windows ST3 user keybindings after installing Origami
[
{ "keys": ["ctrl+shift+v"], "command": "paste" },
{ "keys": ["ctrl+v"], "command": "paste_and_indent" },
{ "keys": ["alt+ctrl+p"], "command": "autoprefixer" },
{ "keys": ["ctrl+alt+shift+w"], "command": "close_all" },
{ "keys": ["ctrl+shift+alt+f"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
{ "keys": ["ctrl+alt+up"], "command": "swap_line_up" },
{ "keys": ["ctrl+alt+down"], "command": "swap_line_down" },
// origami (multiple panes)
{ "keys": ["ctrl+k", "ctrl+up"], "command": "create_pane", "args": {"direction": "up", "give_focus": true} },
{ "keys": ["ctrl+k", "ctrl+right"], "command": "create_pane", "args": {"direction": "right", "give_focus": true} },
{ "keys": ["ctrl+k", "ctrl+down"], "command": "create_pane", "args": {"direction": "down", "give_focus": true} },
{ "keys": ["ctrl+k", "ctrl+left"], "command": "create_pane", "args": {"direction": "left", "give_focus": true} },
{ "keys": ["ctrl+k", "ctrl+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