Skip to content

Commit

Permalink
Fix US_RDQU keycode (#13464)
Browse files Browse the repository at this point in the history
`US_RDQU` and `US_LDQU` were aliased to the same keycode. `US_RDQU`
should use the right bracket.
  • Loading branch information
liff authored Aug 23, 2021
1 parent a72b562 commit 9472c4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quantum/keymap_extras/keymap_us_extended.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
#define US_DIV S(ALGR(US_EQL)) // ÷
// Row 2
#define US_LDQU S(ALGR(US_LBRC)) // “
#define US_RDQU S(ALGR(US_LBRC)) // ”
#define US_RDQU S(ALGR(US_RBRC)) // ”
#define US_BRKP S(ALGR(US_BSLS)) // ¦
// Row 3
#define US_SECT S(ALGR(US_S)) // §
Expand Down
2 changes: 1 addition & 1 deletion quantum/keymap_extras/keymap_us_international_linux.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
#define US_DIV S(ALGR(US_EQL)) // ÷
// Row 2
#define US_LDQU S(ALGR(US_LBRC)) // “
#define US_RDQU S(ALGR(US_LBRC)) // ”
#define US_RDQU S(ALGR(US_RBRC)) // ”
#define US_BRKP S(ALGR(US_BSLS)) // ¦
// Row 3
#define US_SECT S(ALGR(US_S)) // §
Expand Down

0 comments on commit 9472c4b

Please sign in to comment.