Skip to content

Instantly share code, notes, and snippets.

@AkdM
Created May 30, 2013 08:28
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 AkdM/5676484 to your computer and use it in GitHub Desktop.
Save AkdM/5676484 to your computer and use it in GitHub Desktop.
My (old) Sublime Text Configuration
[
{ "keys": ["super+alt+7"], "command": "encode_html_entities" },
{ "keys": ["shift+ctrl+u"], "command": "title_case" },
{ "keys": ["super+enter"], "command": "insert", "args": {"characters": "<br>\n"} },
{ "keys": ["super+alt+l"], "command": "insert_snippet", "args": {"contents": "<li>${0:$SELECTION}</li>" } },
{ "keys": ["super+alt+b"], "command": "insert_snippet", "args": {"contents": "<b>${0:$SELECTION}</b>" } },
{ "keys": ["super+alt+i"], "command": "insert_snippet", "args": {"contents": "<i>${0:$SELECTION}</i>" } },
{ "keys": ["super+alt+n"], "command": "insert_snippet", "args": {"contents": "<span>${0:$SELECTION}</span>" } },
{ "keys": ["super+alt+down"], "command": "insert_snippet", "args": {"contents": "<sub>${0:$SELECTION}</sub>" } },
{ "keys": ["super+alt+up"], "command": "insert_snippet", "args": {"contents": "<sup>${0:$SELECTION}</sup>" } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment