Skip to content

Commit

Permalink
Merge pull request #407 from hiroshiyui/add_dvorak_qwerty_key_mappings
Browse files Browse the repository at this point in the history
Add several Dvorak-Qwerty key mappings
  • Loading branch information
kanru authored Nov 20, 2023
2 parents d5382b4 + 21b098a commit 197b701
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chewingio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1496,15 +1496,15 @@ static int dvorak_convert(int key)
'a', 'A', 'o', 'O', 'e', 'E', 'u', 'U', 'i', 'I', 'd', 'D', 'h', 'H',
't', 'T', 'n', 'N', 's', 'S', '-', '_',
';', ':', 'q', 'Q', 'j', 'J', 'k', 'K', 'x', 'X', 'b', 'B', 'm', 'M',
'w', 'W', 'v', 'V', 'z', 'Z'
'w', 'W', 'v', 'V', 'z', 'Z', '[', '{', ']', '}'
};
const char qkey[] = {
'q', 'Q', 'w', 'W', 'e', 'E', 'r', 'R', 't', 'T', 'y', 'Y', 'u', 'U',
'i', 'I', 'o', 'O', 'p', 'P', '[', '{', ']', '}', '\\', '|',
'a', 'A', 's', 'S', 'd', 'D', 'f', 'F', 'g', 'G', 'h', 'H', 'j', 'J',
'k', 'K', 'l', 'L', ';', ':', '\'', '\"',
'z', 'Z', 'x', 'X', 'c', 'C', 'v', 'V', 'b', 'B', 'n', 'N', 'm', 'M',
',', '<', '.', '>', '/', '?'
',', '<', '.', '>', '/', '?', '-', '_', '=', '+'
};
size_t i;

Expand Down

0 comments on commit 197b701

Please sign in to comment.