Skip to content

Instantly share code, notes, and snippets.

@hamsterbacke23
Created March 19, 2013 22:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamsterbacke23/5200706 to your computer and use it in GitHub Desktop.
Save hamsterbacke23/5200706 to your computer and use it in GitHub Desktop.
sublime keymap
[
{ "keys": ["ctrl+alt+w"], "command": "close_workspace" },
{ "keys": ["ctrl+alt+o"], "command": "prompt_open_project" },
{ "keys": ["ctrl+alt+s"], "command": "save_project_as" }, //doesnt work
{ "keys": ["ctrl+shift+e"], "command": "open_folder_in_explorer" },
{ "keys": ["ctrl+shift+x"], "command": "open_localhost_in_explorer" },
//{ "keys": ["ctrl+alt+d"], "command": "simply_insert_date" },
{ "keys": ["ctrl+shift+r"], "command": "refresh_folder_list" },
{ "keys": ["ctrl+shift+b"], "command": "toggle_side_bar" },
{ "keys": ["alt+."], "command": "reveal_in_side_bar" },
{ "keys": ["ctrl+k"], "command": "toggle_record_macro" },
{ "keys": ["ctrl+shift+k"], "command": "run_macro" },
{ "keys": ["f12"], "command": "reindent"},
{ "keys": ["ctrl+shift+h"], "command": "hex_to_rgba" },
{ "keys": ["alt+ctrl+shift+d"], "command": "show_diff" },
{ "keys": ["alt+shift+w"], "command": "close_others" },
{
"keys": ["ctrl+t"], "command": "browser_refresh", "args": {
"auto_save": true,
"delay": 0.0,
"activate_browser": true,
"browser_name" : "all"
}
},
//replace ctrl+k with ctrl+q
{ "keys": ["ctrl+q", "ctrl+u"], "command": "upper_case" },
{ "keys": ["ctrl+q", "ctrl+l"], "command": "lower_case" },
{ "keys": ["ctrl+q", "ctrl+space"], "command": "set_mark" },
{ "keys": ["ctrl+q", "ctrl+a"], "command": "select_to_mark" },
{ "keys": ["ctrl+q", "ctrl+w"], "command": "delete_to_mark" },
{ "keys": ["ctrl+q", "ctrl+x"], "command": "swap_with_mark" },
{ "keys": ["ctrl+q", "ctrl+y"], "command": "yank" },
{ "keys": ["ctrl+q", "ctrl+q"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete to Hard EOL.sublime-macro"} },
{ "keys": ["ctrl+q", "ctrl+backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete to Hard BOL.sublime-macro"} },
{ "keys": ["ctrl+q", "ctrl+g"], "command": "clear_bookmarks", "args": {"name": "mark"} },
{ "keys": ["ctrl+q", "ctrl+c"], "command": "show_at_center" },
{ "keys": ["ctrl+q", "ctrl+1"], "command": "fold_by_level", "args": {"level": 1} },
{ "keys": ["ctrl+q", "ctrl+2"], "command": "fold_by_level", "args": {"level": 2} },
{ "keys": ["ctrl+q", "ctrl+3"], "command": "fold_by_level", "args": {"level": 3} },
{ "keys": ["ctrl+q", "ctrl+4"], "command": "fold_by_level", "args": {"level": 4} },
{ "keys": ["ctrl+q", "ctrl+5"], "command": "fold_by_level", "args": {"level": 5} },
{ "keys": ["ctrl+q", "ctrl+6"], "command": "fold_by_level", "args": {"level": 6} },
{ "keys": ["ctrl+q", "ctrl+7"], "command": "fold_by_level", "args": {"level": 7} },
{ "keys": ["ctrl+q", "ctrl+8"], "command": "fold_by_level", "args": {"level": 8} },
{ "keys": ["ctrl+q", "ctrl+9"], "command": "fold_by_level", "args": {"level": 9} },
{ "keys": ["ctrl+q", "ctrl+0"], "command": "unfold_all" },
{ "keys": ["ctrl+q", "ctrl+j"], "command": "unfold_all" },
{ "keys": ["ctrl+q", "ctrl+t"], "command": "fold_tag_attributes" },
{ "keys": ["ctrl+q", "ctrl+b"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+q", "ctrl+d"], "command": "find_under_expand_skip" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment