]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
[Keymap] Fix Georgi's RZ key in NKRO fake-steno mode (#6701)
authorFedde Schaeffer <fedde.schaeffer@gmail.com>
Sun, 15 Sep 2019 02:55:23 +0000 (04:55 +0200)
committerDrashna Jaelre <drashna@live.com>
Sun, 15 Sep 2019 02:55:23 +0000 (19:55 -0700)
It was sending a comma keypress, while I believe that the targeted
stenography software (at least on systems that generally use
US-International keyboard layout) expects a single-quote/apostrophe key.

keyboards/georgi/sten.c

index 197abaf92f5af62c2ad7457616edc65e4e12f779..c7469b6394e78acd3d1839e55dc2f56f1e072a15 100644 (file)
@@ -253,7 +253,7 @@ uint32_t processFakeSteno(bool lookup) {
        P( RB,                          SEND(KC_K););
        P( RG,                          SEND(KC_L););
        P( RS,                          SEND(KC_SCLN););
-       P( RZ,                          SEND(KC_COMM););
+       P( RZ,                          SEND(KC_QUOT););
        P( LNO,                         SEND(KC_1););
        P( RNO,                         SEND(KC_1););