Skip to content

Commit

Permalink
Fix graphite layout (#306)
Browse files Browse the repository at this point in the history
match graphite with Ascii
  • Loading branch information
lucasyarid authored Oct 30, 2024
1 parent 08b9dfa commit 3109ee7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/keybr-generators/layouts/en_graphite.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"KeyE": "dD",
"KeyR": "wW",
"KeyT": "zZ",
"KeyY": ",-",
"KeyY": "'_",
"KeyU": "fF",
"KeyI": "oO",
"KeyO": "uU",
Expand All @@ -44,8 +44,8 @@
"KeyB": "vV",
"KeyN": "kK",
"KeyM": "pP",
"Comma": ",>",
"Period": "_\"",
"Comma": ".>",
"Period": "-\"",
"Slash": "/<",
"Space": " "
}
6 changes: 3 additions & 3 deletions packages/keybr-keyboard/lib/layout/en_graphite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const LAYOUT_EN_GRAPHITE: CharacterDict = {
KeyE: [/* LATIN SMALL LETTER D */ 0x0064, /* LATIN CAPITAL LETTER D */ 0x0044],
KeyR: [/* LATIN SMALL LETTER W */ 0x0077, /* LATIN CAPITAL LETTER W */ 0x0057],
KeyT: [/* LATIN SMALL LETTER Z */ 0x007a, /* LATIN CAPITAL LETTER Z */ 0x005a],
KeyY: [/* COMMA */ 0x002c, /* HYPHEN-MINUS */ 0x002d],
KeyY: [/* APOSTROPHE */ 0x0027, /* LOW LINE */ 0x005f],
KeyU: [/* LATIN SMALL LETTER F */ 0x0066, /* LATIN CAPITAL LETTER F */ 0x0046],
KeyI: [/* LATIN SMALL LETTER O */ 0x006f, /* LATIN CAPITAL LETTER O */ 0x004f],
KeyO: [/* LATIN SMALL LETTER U */ 0x0075, /* LATIN CAPITAL LETTER U */ 0x0055],
Expand All @@ -49,8 +49,8 @@ export const LAYOUT_EN_GRAPHITE: CharacterDict = {
KeyB: [/* LATIN SMALL LETTER V */ 0x0076, /* LATIN CAPITAL LETTER V */ 0x0056],
KeyN: [/* LATIN SMALL LETTER K */ 0x006b, /* LATIN CAPITAL LETTER K */ 0x004b],
KeyM: [/* LATIN SMALL LETTER P */ 0x0070, /* LATIN CAPITAL LETTER P */ 0x0050],
Comma: [/* COMMA */ 0x002c, /* GREATER-THAN SIGN */ 0x003e],
Period: [/* LOW LINE */ 0x005f, /* QUOTATION MARK */ 0x0022],
Comma: [/* FULL STOP */ 0x002e, /* GREATER-THAN SIGN */ 0x003e],
Period: [/* HYPHEN-MINUS */ 0x002d, /* QUOTATION MARK */ 0x0022],
Slash: [/* SOLIDUS */ 0x002f, /* LESS-THAN SIGN */ 0x003c],
Space: [/* SPACE */ 0x0020],
};

0 comments on commit 3109ee7

Please sign in to comment.