Skip to content

Instantly share code, notes, and snippets.

@joshgreen
Last active December 9, 2015 22:18
Show Gist options
  • Select an option

  • Save joshgreen/4336667 to your computer and use it in GitHub Desktop.

Select an option

Save joshgreen/4336667 to your computer and use it in GitHub Desktop.
Sublime Keymap
[
{ "keys": ["ctrl+,", "ctrl+."], "command": "toggle_side_bar" },
{ "keys": ["ctrl+]"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["ctrl+m"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["ctrl+comma", "ctrl+period"], "command": "toggle_side_bar" },
{ "keys": ["super+alt+b"], "command": "insert_snippet", "args": {"contents": "<strong>${0:$SELECTION}</strong>" } },
{ "keys": ["super+alt+i"], "command": "insert_snippet", "args": {"contents": "<em>${0:$SELECTION}</em>" } },
{ "keys": ["super+ctrl+u"], "command": "upper_case" },
{ "keys": ["super+ctrl+i"], "command": "lower_case" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment