Skip to content

Instantly share code, notes, and snippets.

@roshanca
Created December 7, 2012 02:14
Show Gist options
  • Save roshanca/4230195 to your computer and use it in GitHub Desktop.
Save roshanca/4230195 to your computer and use it in GitHub Desktop.
DIY keymap for sublime text 2
[
{ "keys": ["ctrl+s"], "command": "toggle_side_bar" },
{ "keys": ["super+shift+."], "command": "expand_selection", "args": {"to": "scope"} },
{ "keys": ["alt+/"], "command": "auto_complete" },
{ "keys": ["alt+/"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
},
{ "keys": ["super+shift+r"], "command": "reindent"}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment