Created
September 27, 2012 22:58
-
-
Save LeVM/3796967 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Keybindings for typing accented characters
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
{ "keys": ["alt+`,a"], "command": "insert", "args": {"characters": "à"} }, | |
{ "keys": ["alt+i,a"], "command": "insert", "args": {"characters": "â"} }, | |
{ "keys": ["alt+e,e"], "command": "insert", "args": {"characters": "é"} }, | |
{ "keys": ["alt+`,e"], "command": "insert", "args": {"characters": "è"} }, | |
{ "keys": ["alt+i,e"], "command": "insert", "args": {"characters": "ê"} }, | |
{ "keys": ["alt+`,e"], "command": "insert", "args": {"characters": "ë"} }, | |
{ "keys": ["alt+u,i"], "command": "insert", "args": {"characters": "ï"} }, | |
{ "keys": ["alt+i,i"], "command": "insert", "args": {"characters": "î"} }, | |
{ "keys": ["alt+i,o"], "command": "insert", "args": {"characters": "ô"} }, | |
{ "keys": ["alt+`,u"], "command": "insert", "args": {"characters": "ù"} }, | |
{ "keys": ["alt+i,u"], "command": "insert", "args": {"characters": "û"} }, | |
{ "keys": ["alt+u,u"], "command": "insert", "args": {"characters": "ü"} } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These were really useful, thanks!