Skip to content

Instantly share code, notes, and snippets.

@chaos-ad
Created June 13, 2012 12:12
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 chaos-ad/2923688 to your computer and use it in GitHub Desktop.
Save chaos-ad/2923688 to your computer and use it in GitHub Desktop.
Sublime 2 keymap (place me to ~/.config/sublime-text-2/Packages/User)
[
{ "keys": ["f8"], "command": "build" },
{ "keys": ["ctrl+alt+f"], "command": "show_panel", "args": { "panel": "find_in_files" } },
{ "keys": ["ctrl+d"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" },
{ "keys": ["ctrl+r"], "command": "show_panel", "args": {"panel": "replace"} },
{ "keys": ["ctrl+shift+r"], "command": "replace_next" },
{ "keys": ["ctrl+h"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
{ "keys": ["ctrl+alt+p"], "command": "goto_symbol", "args": { "action": "list_all" } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment