projects
/
qmk_firmware.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1bf087
)
Add key caveat to combos doc
author
Drashna Jaelre
<drashna@live.com>
Mon, 22 Oct 2018 21:46:50 +0000
(14:46 -0700)
committer
Jack Humbert
<jack.humb@gmail.com>
Sat, 27 Oct 2018 04:18:22 +0000
(
00:18
-0400)
docs/feature_combo.md
patch
|
blob
|
history
diff --git
a/docs/feature_combo.md
b/docs/feature_combo.md
index f509e9f33f2b932858b72bde626f249dd69e4973..5bb73ef106772018494c9001f61f6d3e27809722 100644
(file)
--- 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