forked from qmk/qmk_configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added steno keycodes * selectively enable and disable steno keycodes - use a white list to turn steno UI on and off until we get some sort of system in info.json so Germ can get his steno keyboard launched
- Loading branch information
Showing
3 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
export default [ | ||
{ label: 'Steno', width: 'label', group: true }, | ||
|
||
{ name: 'S', code: 'STN_S1' }, | ||
{ name: 'T', code: 'STN_TL' }, | ||
{ name: 'P', code: 'STN_PL' }, | ||
{ name: 'H', code: 'STN_HL' }, | ||
{ name: '*1', code: 'STN_ST1' }, | ||
{ width: 1000 }, | ||
{ name: '*3', code: 'STN_ST3' }, | ||
{ name: 'F', code: 'STN_FR' }, | ||
{ name: 'P', code: 'STN_PR' }, | ||
{ name: 'L', code: 'STN_LR' }, | ||
{ name: 'T', code: 'STN_TR' }, | ||
{ name: 'D', code: 'STN_DR' }, | ||
{ width: 0 }, | ||
|
||
{ name: 'S', code: 'STN_S2' }, | ||
{ name: 'K', code: 'STN_KL' }, | ||
{ name: 'W', code: 'STN_WL' }, | ||
{ name: 'R', code: 'STN_RL' }, | ||
{ name: '*2', code: 'STN_ST2' }, | ||
{ width: 1000 }, | ||
{ name: '*4', code: 'STN_ST4' }, | ||
{ name: 'R', code: 'STN_RR' }, | ||
{ name: 'B', code: 'STN_BR' }, | ||
{ name: 'G', code: 'STN_GR' }, | ||
{ name: 'S', code: 'STN_SR' }, | ||
{ name: 'Z', code: 'STN_ZR' }, | ||
{ width: 0 }, | ||
|
||
{ width: 1000 }, | ||
{ width: 1000 }, | ||
{ width: 1000 }, | ||
{ name: 'A', code: 'STN_A' }, | ||
{ name: 'O', code: 'STN_O' }, | ||
{ width: 1000 }, | ||
{ name: 'E', code: 'STN_E' }, | ||
{ name: 'U', code: 'STN_U' }, | ||
{ width: 0 }, | ||
|
||
{ label: 'Numbers', width: 'label' }, | ||
{ name: '#1', code: 'STN_N1' }, | ||
{ name: '#2', code: 'STN_N2' }, | ||
{ name: '#3', code: 'STN_N3' }, | ||
{ name: '#4', code: 'STN_N4' }, | ||
{ name: '#5', code: 'STN_N5' }, | ||
{ name: '#6', code: 'STN_N6' }, | ||
{ name: '#7', code: 'STN_N7' }, | ||
{ name: '#8', code: 'STN_N8' }, | ||
{ name: '#9', code: 'STN_N9' }, | ||
{ name: '#A', code: 'STN_NA' }, | ||
{ name: '#B', code: 'STN_NB' }, | ||
{ name: '#C', code: 'STN_NC' }, | ||
|
||
{ label: 'Special Functions', width: 'label' }, | ||
{ name: 'PWR', code: 'STN_PWR' }, | ||
{ name: 'FN', code: 'STN_FN' }, | ||
{ name: 'Res1', code: 'STN_RES1' }, | ||
{ name: 'Res2', code: 'STN_RES2' }, | ||
{ width: 0 } | ||
]; |