summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorNoah Frederick <code@noahfrederick.com>2019-04-11 03:36:05 +0200
committerDrashna Jaelre <drashna@live.com>2019-04-11 03:36:05 +0200
commit606b1fe82f440258f697896c39d306fefcb9033c (patch)
tree6489e46455b06a9889a1807fef929fc870f7cfa0 /docs
parent4882f7f16d3d5ef850790c935cf02112a615fd3e (diff)
downloadqmk_firmware-606b1fe82f440258f697896c39d306fefcb9033c.tar.gz
qmk_firmware-606b1fe82f440258f697896c39d306fefcb9033c.tar.xz
Remove caveat about combos with shared keys (#5601)
Combos with shared keys are supported as of https://github.com/qmk/qmk_firmware/pull/2561. Therefore, this caveat no longer applies.
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_combo.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/feature_combo.md b/docs/feature_combo.md
index a2fd1423c..680adce2d 100644
--- a/docs/feature_combo.md
+++ b/docs/feature_combo.md
@@ -19,7 +19,6 @@ 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