I use Sublime Text 3 with a Polish keyboard (both hardware and keyboard installed in Windows 7), and I cannot enter "ć" ("c" with a Polish accent - Right Alt + c ) and "Ś" (capital " s "with an accent - Right Alt + Shift + c ).
Of the entire set consisting of eighteen Polish characters ( ęóąśłżźćńĘÓĄŚŁŻŹĆŃ ), these two are rather strange excpetion in Sublime Text 3.
What could be the reason for this and is there any workaround to call these letters from clippboard to copy?
I am sure that this is not caused by conflicts in the key binding between the main editor and the plugins (I installed a dozen of them), because I added these two lines to Preferences > Key Bindings -- User :
{ "keys": ["alt+c"], "command": "insert_snippet", "args": {"contents": "ć"} }, { "keys": ["shift+alt+s"], "command": "insert_snippet", "args": {"contents": "Ś"} },
And it didn’t help even a little (any possible conflicts would be overwritten by the above configuration change).
This problem arises from the main code of Sublime Text 3. I don’t know if and how it affects other languages that use language-specific characters?
source share