Skip to content

Commit

Permalink
add QMK Repeat keys (#1289)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunk2k committed Jul 16, 2023
1 parent dc1e75a commit add9ac6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/longFormKeycodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,8 @@ export const longFormKeycodes = {
DEBUG: 'DB_TOGG',
EEPROM_RESET: 'EE_CLR',
EEP_RST: 'EE_CLR',
QK_REPEAT_KEY: 'QK_REP',
QK_ALT_REPEAT_KEY: 'QK_AREP',
// Audio Keys
CLICKY_TOGGLE: 'CK_TOGG',
CLICKY_UP: 'CK_UP',
Expand Down
12 changes: 12 additions & 0 deletions src/store/modules/keycodes/quantum.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@ export default [
title: 'Resets EEPROM state',
width: 1500
},
{
name: 'Repeat',
code: 'QK_REP',
title: 'Repeat last key pressed',
width: 1500
},
{
name: 'Alt Repeat',
code: 'QK_AREP',
title: 'Perform alternate of last key pressed',
width: 1500
},
{ width: 1000 },
{
name: 'Any',
Expand Down

0 comments on commit add9ac6

Please sign in to comment.