Skip to content

Instantly share code, notes, and snippets.

@datacodesolutions
Created September 16, 2012 00:00
Show Gist options
  • Save datacodesolutions/3730445 to your computer and use it in GitHub Desktop.
Save datacodesolutions/3730445 to your computer and use it in GitHub Desktop.
Sublime Keyboard Shortcuts (Mac)
[
{ "keys": ["shift+tab"], "command": "unindent" },
{ "keys": ["ctrl+shift+m"], "command": "toggle_minimap" },
{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["ctrl+i"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+alt+d"], "command": "expand_selection", "args": {"to": "word"} },
{ "keys": ["ctrl+alt+d"], "command": "find_under_expand", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["ctrl+shift+j"], "command": "join_lines" },
{ "keys": ["ctrl+s"], "command": "toggle_side_bar" },
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+home"], "command": "move_to", "args": {"to": "bof", "extend": false} },
{ "keys": ["ctrl+end"], "command": "move_to", "args": {"to": "eof", "extend": false} },
{ "keys": ["ctrl+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true} },
{ "keys": ["ctrl+shift+end"], "command": "move_to", "args": {"to": "eof", "extend": true} },
{ "keys": ["super+,"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["ctrl+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"} },
{ "keys": ["ctrl+shift+s","enter"], "command": "sftp_upload_file" },
{ "keys": ["ctrl+shift+c"], "command": "sftp_diff_remote_file" },
{ "keys": ["ctrl+shift+d","super+ctrl+o"], "command": "sftp_download_file" },
{ "keys": ["ctrl+shift+x"], "command": "sftp_cancel_upload" },
{ "keys": ["alt+backquote"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["super+shift+c"], "command": "close_project" },
{ "keys": ["super+shift+o"], "command": "prompt_open_project", "args": {"dir": "/Users/mattdavis/Documents/SublimeProjects"}},
{ "keys": ["super+shift+o"], "command": "prompt_open_project", "args": {"dir": "/Users/mattdavis/Sites/budget.datacodesolutions.com"}},
{ "keys": ["ctrl+alt+f"], "command": "prompt_add_folder" },
{ "keys": ["ctrl+keypad5"], "command": "revert" },
{ "keys": ["f12"], "command": "show_panel", "args": {"panel": "output.exec"} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment