Skip to content

Commit

Permalink
Fix greek dead key
Browse files Browse the repository at this point in the history
This key was using an invalid unicode code point that was causing other errors as well.
Use the character `µ` (micro) instead, this is what the current version of klfc does and
is defined by Xlib Compose Keys for en_US.UTF-8.
  • Loading branch information
sodevel committed Jul 27, 2023
1 parent b8d989f commit 0dbfaa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions altgr-weur.klc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ LAYOUT
06 5 0 5 0025 20ac 00a3 // QWERTY 5: 5, %, €, £
07 6 0 6 005e 005e@ 02c7@ // QWERTY 6: 6, ^, cdk:circumflex, cdk:caron
08 7 0 7 0026 201e 201a // QWERTY 7: 7, &, „, ‚
09 8 0 8 002a 00df e000@ // QWERTY 8: 8, *, ß, cdk:greek
09 8 0 8 002a 00df 00b5@ // QWERTY 8: 8, *, ß, cdk:greek
0a 9 0 9 0028 201c 2018 // QWERTY 9: 9, (, “, ‘
0b 0 0 0 0029 201d 2019 // QWERTY 0: 0, ), ”, ’
0c OEM_MINUS 0 002d 005f 2013 2014 // QWERTY -: -, _, –, —
Expand Down Expand Up @@ -237,7 +237,7 @@ DEADKEY 02c7 // caron
01b7 01ee // Ʒ → Ǯ
0292 01ef // ʒ → ǯ

DEADKEY e000 // greek
DEADKEY 00b5 // greek

0041 0391 // A → Α
0061 03b1 // a → α
Expand Down

0 comments on commit 0dbfaa4

Please sign in to comment.