Skip to content

Instantly share code, notes, and snippets.

@deeTEEcee
Created November 25, 2015 17:50
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 deeTEEcee/a3a65c6107cace2858dc to your computer and use it in GitHub Desktop.
Save deeTEEcee/a3a65c6107cace2858dc to your computer and use it in GitHub Desktop.
OSX.sublime-keymap
[
//// general
{ "keys": ["super+shift+s"], "command": "save" },
{ "keys": ["super+alt+s"], "command": "prompt_save_as" },
{ "keys": ["super+s"], "command": "save_all" },
{ "keys": ["super+ctrl+x"], "command": "alignment" },
//// navigation
{ "keys": ["super+b"], "command": "toggle_side_bar" },
{ "keys": ["f3"], "command": "goto_definition" },
{ "keys": ["alt+left"], "command": "jump_back" },
{ "keys": ["alt+right"], "command": "jump_forward" },
//// changes code
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
//// macros/hotkeys/shortcuts
//// eclipse TODO: move to right categories
// { "keys": ["shift+enter"], "command": "run_macro_file", "args": {"file": "Packages/Default/Add Line.sublime-macro"} },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
// { "keys": ["super+alt+j"], "command": "join_lines" },
// { "keys": ["super+alt+down"], "command": "duplicate_line" },
// { "keys": ["shift+super+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
// { "keys": ["super+shift+s"], "command": "save_all" },
// { "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
// { "keys": ["super+ctrl+f4"], "command": "close_all" },
// { "keys": ["super+ctrl+y"], "command": "lower_case" },
// { "keys": ["super+ctrl+x"], "command": "upper_case" },
// { "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment