diff options
-rw-r--r-- | docs/custom_quantum_functions.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/custom_quantum_functions.md b/docs/custom_quantum_functions.md index 928dccc9c..3df1d73a2 100644 --- a/docs/custom_quantum_functions.md +++ b/docs/custom_quantum_functions.md | |||
@@ -60,6 +60,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
60 | PLAY_NOTE_ARRAY(tone_qwerty); | 60 | PLAY_NOTE_ARRAY(tone_qwerty); |
61 | } | 61 | } |
62 | return true; // Let QMK send the enter press/release events | 62 | return true; // Let QMK send the enter press/release events |
63 | default: | ||
64 | return true; // Process all other keycodes normally | ||
63 | } | 65 | } |
64 | } | 66 | } |
65 | ``` | 67 | ``` |