Skip to content

Instantly share code, notes, and snippets.

@LeVM
Created September 27, 2012 22:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LeVM/3796967 to your computer and use it in GitHub Desktop.
Save LeVM/3796967 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Keybindings for typing accented 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": "ü"} }
@pconerly
Copy link

pconerly commented May 6, 2016

These were really useful, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment