X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=docs%2Ffeature_dynamic_macros.md;h=9803557e9e7fa51f2f79df68daea93d6b2239c34;hb=bad56a4f2b91fc8591f6d33a1710ea0050abcfbf;hp=4dd8a39e6ffc1d14734274cca76b1b0b69f809ef;hpb=67cc5cebc0430d15169e2c649ea25112a31bfa31;p=qmk_firmware.git diff --git a/docs/feature_dynamic_macros.md b/docs/feature_dynamic_macros.md index 4dd8a39e6..9803557e9 100644 --- a/docs/feature_dynamic_macros.md +++ b/docs/feature_dynamic_macros.md @@ -1,4 +1,4 @@ -# Dynamic macros: record and replay macros in runtime +# Dynamic Macros: Record and Replay Macros in Runtime QMK supports temporary macros created on the fly. We call these Dynamic Macros. They are defined by the user from the keyboard and are lost when the keyboard is unplugged or otherwise rebooted. @@ -52,7 +52,7 @@ For users of the earlier versions of dynamic macros: It is still possible to fin ```c uint16_t macro_kc = (keycode == MO(_DYN) ? DYN_REC_STOP : keycode); - + if (!process_record_dynamic_macro(macro_kc, record)) { return false; }