Skip to content

Instantly share code, notes, and snippets.

@nickautomatic
Last active March 14, 2018 17:10
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 nickautomatic/9045ef7638979d909cbb to your computer and use it in GitHub Desktop.
Save nickautomatic/9045ef7638979d909cbb to your computer and use it in GitHub Desktop.
Sublime Text keymap (with shortcuts from jEdit)
[
// My Sublime shortcuts:
{ "keys": ["ctrl+k", "ctrl+m"], "command": "toggle_minimap" },
// jEdit shortcuts:
{ "keys": ["alt+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["alt+right"], "command": "indent" },
{ "keys": ["alt+left"], "command": "unindent" },
{ "keys": ["ctrl+e", "ctrl+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+e", "ctrl+w"], "command": "close_all" },
{ "keys": ["ctrl+e", "ctrl+s"], "command": "save_all" },
{ "keys": ["alt+t"], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" } },
// Atom / Github shortcuts (require sublime-github plugin)
{ "keys": ["alt+g", "b"], "command": "blame" },
{ "keys": ["alt+g", "g"], "command": "open_remote_url" },
{ "keys": ["alt+g", "h"], "command": "history" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment