Skip to content

Instantly share code, notes, and snippets.

@jordanpoulton
Created March 21, 2013 10:26
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 jordanpoulton/5212064 to your computer and use it in GitHub Desktop.
Save jordanpoulton/5212064 to your computer and use it in GitHub Desktop.
New Key Bindings
[
/* BEGIN: blockers */
{ "keys": ["alt+a"], "command": "insert_snippet", "args": {"contents": "=>"} },
{ "keys": ["alt+s"], "command": "insert_snippet", "args": {"contents": "."} },
{ "keys": ["alt+d"], "command": "insert_snippet", "args": {"contents": "/"} },
{ "keys": ["alt+f"], "command": "insert_snippet", "args": {"contents": ";"} },
{ "keys": ["alt+g"], "command": "insert_snippet", "args": {"contents": ":"} },
{ "keys": ["alt+h"], "command": "insert_snippet", "args": {"contents": "\"$0\""} },
{ "keys": ["alt+j"], "command": "insert_snippet", "args": {"contents": "[$0]"} },
{ "keys": ["alt+k"], "command": "insert_snippet", "args": {"contents": "{$0}"} },
{ "keys": ["alt+l"], "command": "insert_snippet", "args": {"contents": "($0)"} },
{ "keys": ["alt+q"], "command": "insert_snippet", "args": {"contents": "1"} },
{ "keys": ["alt+w"], "command": "insert_snippet", "args": {"contents": "2"} },
{ "keys": ["alt+e"], "command": "insert_snippet", "args": {"contents": "3"} },
{ "keys": ["alt+r"], "command": "insert_snippet", "args": {"contents": "4"} },
{ "keys": ["alt+t"], "command": "insert_snippet", "args": {"contents": "5"} },
{ "keys": ["alt+y"], "command": "insert_snippet", "args": {"contents": "6"} },
{ "keys": ["alt+u"], "command": "insert_snippet", "args": {"contents": "7"} },
{ "keys": ["alt+i"], "command": "insert_snippet", "args": {"contents": "8"} },
{ "keys": ["alt+o"], "command": "insert_snippet", "args": {"contents": "9"} },
{ "keys": ["alt+p"], "command": "insert_snippet", "args": {"contents": "0"} },
{ "keys": ["alt+z"], "command": "insert_snippet", "args": {"contents": "!"} },
{ "keys": ["alt+c"], "command": "insert_snippet", "args": {"contents": "@"} },
{ "keys": ["alt+v"], "command": "insert_snippet", "args": {"contents": "#"} },
{ "keys": ["alt+b"], "command": "insert_snippet", "args": {"contents": "?"} },
{ "keys": ["alt+n"], "command": "insert_snippet", "args": {"contents": "%"} },
{ "keys": ["alt+m"], "command": "insert_snippet", "args": {"contents": "*"} },
{ "keys": ["alt+x"], "command": "insert_snippet", "args": {"contents": "="} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment