Skip to content

Instantly share code, notes, and snippets.

@ivan1911
Last active December 20, 2015 16:29
Show Gist options
  • Save ivan1911/6161977 to your computer and use it in GitHub Desktop.
Save ivan1911/6161977 to your computer and use it in GitHub Desktop.
Sublime Windows Keybindings
[
{ "keys": ["ctrl+e"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+b"], "command": "expand_selection", "args": {"to": "brackets"} },
{ "keys": ["ctrl+b"], "command": "move_to", "args": {"to": "brackets"} },
{ "keys": ["ctrl+k"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
{ "keys": ["ctrl+r"], "command": "show_panel", "args": {"panel": "replace"} },
{ "keys": ["ctrl+shift+r"], "command": "replace_next" },
{ "keys": ["ctrl+s"], "command": "save" },
{ "keys": ["ctrl+shift+s"], "command": "prompt_save_as" },
{ "keys": ["ctrl+u"], "command": "upper_case" },
{ "keys": ["ctrl+shift+3"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+shift+u"], "command": "lower_case" },
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["f3"], "command": "find_next" },
{ "keys": ["f2"], "command": "next_bookmark" },
{ "keys": ["ctrl+backspace"], "command": "right_delete" },
{ "keys": ["ctrl+j"], "command": "join_lines" },
{ "keys": ["alt+f5"], "command": "insert_date", "args": {"format": "%Y%m%d%I%M%S"} },
{ "keys": ["f5"], "command": "insert_date", "args": {"format": "%d.%m.%Y"} },
{ "keys": ["shift+f3"], "command": "find_prev" },
{ "keys": ["ctrl+ctrl+s"], "command": "sftp_upload_file" },
{ "keys": ["ctrl+b"], "command": "toggle_side_bar" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment