Created
November 25, 2015 17:50
-
-
Save deeTEEcee/a3a65c6107cace2858dc to your computer and use it in GitHub Desktop.
OSX.sublime-keymap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
//// 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