Skip to content

Instantly share code, notes, and snippets.

@wildlyinaccurate
Last active December 17, 2015 02:59
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 wildlyinaccurate/5540080 to your computer and use it in GitHub Desktop.
Save wildlyinaccurate/5540080 to your computer and use it in GitHub Desktop.
My Sublime Text keymap configuration
[
{ "keys": ["ctrl+d"], "command": "duplicate_line" },
{ "keys": ["ctrl+shift+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys" : ["ctrl+shift+down"], "command" : "swap_line_down"},
{ "keys" : ["ctrl+shift+up"], "command" : "swap_line_up"},
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" },
{ "keys": ["ctrl+s"], "command": "save_all" },
{ "keys": ["ctrl+shift+w"], "command": "close_all" }
]
[
{ "keys": ["ctrl+shift+a"], "command": "run_macro_file", "args": {"file": "Packages/User/docblock-author.sublime-macro"} },
{ "keys": ["ctrl+d"], "command": "duplicate_line" },
{ "keys": ["ctrl+shift+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete line.sublime-macro"} },
{ "keys": ["command+shift+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete line.sublime-macro"} },
{ "keys" : ["ctrl+shift+down"], "command" : "swap_line_down"},
{ "keys" : ["ctrl+shift+up"], "command" : "swap_line_up"},
{ "keys": ["super+s"], "command": "save_all" },
{ "keys": ["super+shift+w"], "command": "close_all" },
{ "keys": ["f13"], "command": "reindent" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment