Sublime Forum

EurKEY keybinding doesnt work

#1

Hi,

I’m using the EurKEY keyboard layout (LINK). I noticed that I can’t type “ü” in Sublime Text 4, normally it’s “AltGr + u”, but in ST4 (ST3 as well) nothing happens. I’m quite sure, it has something to do with a keybind in ST. There is a soft_redo keybind mapped to ctrl+shift+u, I tried disabling it with

{ “keys”: [“ctrl+shift+u”], “command”: “pass” }

but it doesn’t work. Can someone tell me how I can use “AltGr + u” to type “ü” in ST again?

0 Likes

#2

You should be able to remap it to output the desired char:

{ "keys": ["ctrl+alt+u"], "command": "insert_snippet", "args": {"contents": "ü"} }
1 Like

#3

Well, sometimes the most obvious solution is the easiest one. Works like a charm, thank you!

1 Like