[Keymap] Add prog_qgmlwb keymap (#16890)
This commit is contained in:
parent
ef633cf461
commit
a80943579c
27 changed files with 750 additions and 0 deletions
16
users/davidkristoffersen/macros/macros.c
Normal file
16
users/davidkristoffersen/macros/macros.c
Normal file
|
@ -0,0 +1,16 @@
|
|||
// Copyright 2022 David Kristoffersen (@davidkristoffersen)
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
#include "macros.h"
|
||||
|
||||
// Prepend key records with macros
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
||||
if (record->event.pressed) {
|
||||
#ifdef SPLIT_SPACE
|
||||
handle_split_space(keycode, record);
|
||||
#endif
|
||||
HANDLE_FALSE(process_debug(keycode, record));
|
||||
HANDLE_FALSE(process_language(keycode, record));
|
||||
}
|
||||
return true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue