Skip to content

Commit

Permalink
[Keymap] Fix Georgi's RZ key in NKRO fake-steno mode (#6701)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fedde-s authored and drashna committed Sep 15, 2019
1 parent a4581e6 commit d13e0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboards/georgi/sten.c
Original file line number Diff line number Diff line change
Expand Up @@ -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););

Expand Down

0 comments on commit d13e0b5

Please sign in to comment.