Skip to content

Instantly share code, notes, and snippets.

@versedi
Last active November 23, 2015 07:36
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 versedi/808f67a575c02f3ba752 to your computer and use it in GitHub Desktop.
Save versedi/808f67a575c02f3ba752 to your computer and use it in GitHub Desktop.
Sublime polish latin extended characters fix
[
{ "keys": ["alt+c"], "command": "insert_snippet", "args": {"contents": "ć"} },
{ "keys": ["ctrl+alt+c"], "command": "insert_snippet", "args": {"contents": "ć"} },
{ "keys": ["ctrl+shift+alt+c"], "command": "insert_snippet", "args": {"contents": "Ć"} },
{ "keys": ["alt+s"], "command": "insert_snippet", "args": {"contents": "ś"} },
{ "keys": ["ctrl+alt+s"], "command": "insert_snippet", "args": {"contents": "ś"} },
{ "keys": ["ctrl+shift+alt+s"], "command": "insert_snippet", "args": {"contents": "Ś"} },
{ "keys": ["alt+l"], "command": "insert_snippet", "args": {"contents": "ł"} },
{ "keys": ["ctrl+alt+l"], "command": "insert_snippet", "args": {"contents": "ł"} },
{ "keys": ["ctrl+shift+alt+l"], "command": "insert_snippet", "args": {"contents": "Ł"} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment