Skip to content

Instantly share code, notes, and snippets.

@Ation
Last active April 27, 2020 13:01
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 Ation/6881f396894f96942ea9ef920dfdc6c1 to your computer and use it in GitHub Desktop.
Save Ation/6881f396894f96942ea9ef920dfdc6c1 to your computer and use it in GitHub Desktop.
Sublime hotkeys OSX + Windows
[
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"},
{ "keys": ["super+."], "command": "next_bookmark" },
{ "keys": ["super+,"], "command": "prev_bookmark" },
{ "keys": ["alt+super+/"], "command": "toggle_bookmark" },
{ "keys": ["ctrl+super+left"], "command": "jump_back" },
{ "keys": ["ctrl+super+right"], "command": "jump_forward" },
{ "keys": ["super+shift+e"], "command": "enumerate" },
{ "keys": ["super+escape"], "command": "show_panel", "args": { "panel": "output.exec" }
}
]
// windows quick switch
[
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"},
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+alt+right"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+alt+left"], "command": "prev_view" },
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" },
{ "keys": ["alt+down"], "command": "goto_definition" },
{ "keys": ["alt+up"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "hh", "h", "ipp", "inl", "m", "mm"]} },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment