forked from mirrors/qmk_userspace
Normalise Dynamic Macro keycodes (#18939)
* `DYN_REC_START1` -> `QK_DYNAMIC_MACRO_RECORD_START_1` * `DYN_REC_START2` -> `QK_DYNAMIC_MACRO_RECORD_START_2` * `DYN_MACRO_PLAY1` -> `QK_DYNAMIC_MACRO_PLAY_1` * `DYN_MACRO_PLAY2` -> `QK_DYNAMIC_MACRO_PLAY_2` * `DYN_REC_STOP` -> `QK_DYNAMIC_MACRO_RECORD_STOP` * Update docs
This commit is contained in:
parent
3de296f420
commit
fe18df9d41
44 changed files with 216 additions and 210 deletions
|
|
@ -31,11 +31,11 @@ enum custom_keycodes {
|
|||
|
||||
#include "dynamic_macro.h"
|
||||
|
||||
#define DREC_1 DYN_REC_START1
|
||||
#define DREC_2 DYN_REC_START2
|
||||
#define DPLAY_1 DYN_MACRO_PLAY1
|
||||
#define DPLAY_2 DYN_MACRO_PLAY2
|
||||
#define DSTOP DYN_REC_STOP
|
||||
#define DREC_1 DM_REC1
|
||||
#define DREC_2 DM_REC2
|
||||
#define DPLAY_1 DM_PLY1
|
||||
#define DPLAY_2 DM_PLY2
|
||||
#define DSTOP DM_RSTP
|
||||
|
||||
|
||||
// Mod Tap Definitions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue