Skip to content

Instantly share code, notes, and snippets.

@linkarys
Created March 27, 2013 14:28
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 linkarys/5254574 to your computer and use it in GitHub Desktop.
Save linkarys/5254574 to your computer and use it in GitHub Desktop.
sublime: key bindings
[
{ "keys": ["alt+x"], "command": "open_browser" },
{ "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" },
{ "keys": ["alt+shift+j"], "command": "move_to", "args": {"to": "bol"}},
{ "keys": ["alt+shift+k"], "command": "move_to", "args": {"to": "eol"}},
{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}},
{ "keys": ["ctrl+alt+f"], "command": "pep8_autoformat" },
{ "keys": ["alt+shift+;"], "command": "run_macro_file", "args": {"file": "Packages/User/addnewlinewithsemi.sublime-macro" } },
{ "keys": ["alt+shift+l"], "command": "run_macro_file", "args": {"file": "Packages/User/addnewline.sublime-macro" } },
{ "keys": ["ctrl+shift+l"], "command": "run_macro_file", "args": {"file": "Packages/User/addnewlinewithcolon.sublime-macro" } },
{ "keys": ["alt+shift+v"], "command": "validate" },
{ "keys": ["ctrl+alt+shift+f2"], "command": "side_bar_rename" },
{ "keys": ["ctrl+k", "ctrl+a"], "command": "move_to", "args": {"to": "bof", "extend": false} },
{ "keys": ["ctrl+k", "ctrl+e"], "command": "move_to", "args": {"to": "eof", "extend": false} },
{ "keys": ["ctrl+k","ctrl+shift+a"], "command": "move_to", "args": {"to": "bof", "extend": true} },
{ "keys": ["ctrl+k","ctrl+shift+e"], "command": "move_to", "args": {"to": "eof", "extend": true} },
{ "keys": ["ctrl+shift+q"], "command": "html_tidy" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment