diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_macros.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md index 81ade5859..436885356 100644 --- a/docs/feature_macros.md +++ b/docs/feature_macros.md | |||
@@ -144,6 +144,8 @@ If yes, we send the string `"QMK is the best thing ever!"` to the computer via t | |||
144 | We return `true` to indicate to the caller that the key press we just processed should continue to be processed as normal (as we didn't replace or alter the functionality). | 144 | We return `true` to indicate to the caller that the key press we just processed should continue to be processed as normal (as we didn't replace or alter the functionality). |
145 | Finally, we define the keymap so that the first button activates our macro and the second button is just an escape button. | 145 | Finally, we define the keymap so that the first button activates our macro and the second button is just an escape button. |
146 | 146 | ||
147 | ?>It is recommended to use the SAFE_RANGE macro as per [Customizing Functionality](custom_quantum_functions.md). | ||
148 | |||
147 | You might want to add more than one macro. | 149 | You might want to add more than one macro. |
148 | You can do that by adding another keycode and adding another case to the switch statement, like so: | 150 | You can do that by adding another keycode and adding another case to the switch statement, like so: |
149 | 151 | ||