diff options
author | skullydazed <skullydazed@users.noreply.github.com> | 2017-04-04 22:16:16 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2017-04-04 22:16:16 -0700 |
commit | 36757de1a7e927e5b00c14781fd82634067db182 (patch) | |
tree | 7fbd197116d9f1a03356abb3c45fa03d2951e057 | |
parent | 891d17f0286627f5703b211b9e33d5202adc3e83 (diff) |
Updated Custom Quantum Functions (markdown)
-rw-r--r-- | Custom-Quantum-Functions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Custom-Quantum-Functions.md b/Custom-Quantum-Functions.md index 1babb3cda2..f3a3183efc 100644 --- a/Custom-Quantum-Functions.md +++ b/Custom-Quantum-Functions.md @@ -8,7 +8,7 @@ We have structured QMK as a hierarchy: * Keyboard/Revision (`_kb`) * Keymap (`_user`) -Each of the functions described below can be defined with a `_kb()` suffix or an `_user()` suffix. We intend for you to use the `_kb()` suffix at the Keyboard/Revision level, while the `_user()` suffix should be used at the keymap level. +Each of the functions described below can be defined with a `_kb()` suffix or an `_user()` suffix. We intend for you to use the `_kb()` suffix at the Keyboard/Revision level, while the `_user()` suffix should be used at the Keymap level. When defining functions at the Keyboard/Revision level it is important that your `_kb()` implementation call `*_user()` before executing anything else- otherwise the keymap level function will never be called. |