summaryrefslogtreecommitdiffstats
path: root/docs/feature_combo.md
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2018-10-22 23:46:50 +0200
committerJack Humbert <jack.humb@gmail.com>2018-10-27 06:18:22 +0200
commitd3a6296199c6f6564e0fffd6d7c1355496d9feac (patch)
tree06b300502e19b82878a9db3d418fb1fa8249d1cf /docs/feature_combo.md
parentb1bf0879ad2acf3aec1db0f67250b8679e565324 (diff)
downloadqmk_firmware-d3a6296199c6f6564e0fffd6d7c1355496d9feac.tar.gz
qmk_firmware-d3a6296199c6f6564e0fffd6d7c1355496d9feac.tar.xz
Add key caveat to combos doc
Diffstat (limited to 'docs/feature_combo.md')
-rw-r--r--docs/feature_combo.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/feature_combo.md b/docs/feature_combo.md
index f509e9f33..5bb73ef10 100644
--- a/docs/feature_combo.md
+++ b/docs/feature_combo.md
@@ -19,6 +19,7 @@ combo_t key_combos[COMBO_COUNT] = {COMBO(test_combo, KC_ESC)};
This will send "Escape" if you hit the A and B keys.
!> This method only supports [basic keycodes](keycodes_basic.md). See the examples for more control.
+!> You cannot reuse (share) keys in combos. Each key should only belong to a single combo.
## Examples