Sam Hocevar

Results 182 comments of Sam Hocevar

Mmmh. Do you use a standard qwerty layout or something more unusual? Oh and are you maybe using some kind of anti-keylogger / security plugin for Firefox?

You're right, it would make more sense to swap all of these, even I use the diacritic-letter order exclusively. I will double check that they all work; I'm no longer...

I can add automatic rules for Russian keyboards so it works out of the box. Can you confirm that typing `aAbBcCdDeEfFuU` on a Russian keyboard yields `фФиИсСвВуУаАгГ`?

@zored thanks! Now I realise that on a Belarusian keyboard the sequence will be `фФіІсСвВуУаАгГ` and on a French keyboard it will be `qQbBcCdDeEfFuU`, so it seems pretty risky to...

@zored the problem is that QMK’s `send_unicode_hex_string` will have to be replaced and QMK will have to use decimal numbers instead. I will also have to modify WinCompose heavily. I’ll...

@zored not yet; if you are in a hurry you can modify function `GetGenericSequenceResult` in `Settings.cs` and replace `16` with `10` to force it to use decimal!

@cubimon it’s just that QMK has no control over the keyboard layout the user is currently using, so it may send `u1ab3` but WinCompose could receive `г1Фи3` instead. One idea...

(**Edit: *this comment was confusing scan codes and virtual keys, I rewrote it properly***) @cubimon QMK doesn’t know about ASCII, just [HID keycodes](https://source.android.com/devices/input/keyboard-devices.html). The Windows keyboard driver then transforms these...

(**Edit: *this comment was confusing scan codes and virtual keys, I rewrote it properly***) @cubimon it’s not a problem with what WinCompose prints, it’s a problem with what it receives...

@cubimon my bad, I confused virtual keys and scancodes above. Let me rephrase it once more! * the USB keyboard sends **HID key codes**, *e.g.* `KEY_A`, `KEY_B`… * the device...