Skip to content

Instantly share code, notes, and snippets.

@gpessia
Created April 20, 2012 11:45
Show Gist options
  • Save gpessia/2427969 to your computer and use it in GitHub Desktop.
Save gpessia/2427969 to your computer and use it in GitHub Desktop.
Keymap - Bold & Italic for Markdown
[
// Sublime Text 2 Keymap - Bold & Italic for Markdown Syntax
{ "keys": ["super+shift+i"], "command": "insert_snippet", "args": {"contents": "*${SELECTION}*" },"context":[{"key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }]},
{ "keys": ["super+shift+b"], "command": "insert_snippet", "args": {"contents": "**${SELECTION}**" },"context":[{"key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }]}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment