From db358d171d24eaa10286cbb72916302dd8e22d00 Mon Sep 17 00:00:00 2001 From: Buttenup <50253991+Buttenup@users.noreply.github.com> Date: Mon, 27 Dec 2021 13:57:09 +1100 Subject: [PATCH] Update feature_macros.md (#15026) * Update feature_macros.md Added a link to the usage of SAFE_RANGE as this wasn't clear to me when I visited this page in isolation. * Fix typo Co-authored-by: Nick Brassel --- docs/feature_macros.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/feature_macros.md b/docs/feature_macros.md index 81ade585926..43688535694 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 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). Finally, we define the keymap so that the first button activates our macro and the second button is just an escape button. +?>It is recommended to use the SAFE_RANGE macro as per [Customizing Functionality](custom_quantum_functions.md). + You might want to add more than one macro. You can do that by adding another keycode and adding another case to the switch statement, like so: