Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save datacodesolutions/3730442 to your computer and use it in GitHub Desktop.
Save datacodesolutions/3730442 to your computer and use it in GitHub Desktop.
Sublime Keyboard Shortcuts (Windows)
[
{ "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+shift+n"], "command": "new_window" },
{ "keys": ["ctrl+shift+w"], "command": "close_window" },
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["alt+d"], "command": "expand_selection", "args": {"to": "word"} },
{ "keys": ["alt+d"], "command": "find_under_expand", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["alt+k", "alt+d"], "command": "find_under_expand_skip" },
{ "keys": ["ctrl+shift+j"], "command": "join_lines" },
{ "keys": ["ctrl+alt+up"], "command": "swap_line_up" },
{ "keys": ["ctrl+alt+down"], "command": "swap_line_down" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["alt+s"], "command": "save" },
{ "keys": ["alt+x"], "command": "cut" },
{ "keys": ["alt+c"], "command": "copy" },
{ "keys": ["alt+v"], "command": "paste" },
{ "keys": ["ctrl+f"], "command": "show_panel", "args": {"panel": "find"} },
{ "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+shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["ctrl+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+b"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+keypad5"], "command": "revert" },
{ "keys": ["ctrl+shift+s","enter"], "command": "sftp_upload_file" },
{ "keys": ["ctrl+shift+c"], "command": "sftp_diff_remote_file" },
{ "keys": ["ctrl+shift+x"], "command": "sftp_cancel_upload" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment