Skip to content

Instantly share code, notes, and snippets.

@IslamAzab
Last active March 19, 2017 09:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IslamAzab/4a4f1cce740fda5aa2f3 to your computer and use it in GitHub Desktop.
Save IslamAzab/4a4f1cce740fda5aa2f3 to your computer and use it in GitHub Desktop.
Sublime Shortcuts
preferences -> key bindings user
[
{ "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+pageup"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+pagedown"], "command": "prev_view_in_stack" },
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+h"], "command": "show_panel", "args": {"panel": "find_in_files"} },
{ "keys": ["ctrl+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["f12"], "command": "reindent"},
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" },
{ "keys": ["ctrl+shift+alt+s"], "command": "save_all" },
{ "keys": ["ctrl+shift+alt+keypad_divide"], "command": "unfold_all" },
{ "keys": ["ctrl+shift+alt+keypad_multiply"], "command": "fold_all" },
{ "keys": ["ctrl+shift+alt+r"], "command": "reindent", "args": { "single_line": false } },
{ "keys": ["ctrl+shift+alt+l"], "command": "set_setting", "args": { "setting": "rulers", "value": [80, 120] } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment