Created
September 22, 2012 13:35
-
-
Save laanwj/3766192 to your computer and use it in GitHub Desktop.
Haskell unicode syntax key bindings for Sublime Text 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": [":",":"], "command": "insert_snippet", "args": {"contents": "∷"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": ["-",">"], "command": "insert_snippet", "args": {"contents": "→"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": ["<","-"], "command": "insert_snippet", "args": {"contents": "←"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": ["=",">"], "command": "insert_snippet", "args": {"contents": "⇒"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": ["-","<"], "command": "insert_snippet", "args": {"contents": "↢"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": [">","-"], "command": "insert_snippet", "args": {"contents": "↣"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": ["-","<","<"], "command": "insert_snippet", "args": {"contents": "⤛"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": [">",">","-"], "command": "insert_snippet", "args": {"contents": "⤜"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": ["ctrl+shift+8"], "command": "insert_snippet", "args": {"contents": "★"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment