]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Remove caveat about combos with shared keys (#5601)
authorNoah Frederick <code@noahfrederick.com>
Thu, 11 Apr 2019 01:36:05 +0000 (21:36 -0400)
committerDrashna Jaelre <drashna@live.com>
Thu, 11 Apr 2019 01:36:05 +0000 (18:36 -0700)
Combos with shared keys are supported as of https://github.com/qmk/qmk_firmware/pull/2561. Therefore, this caveat no longer applies.

docs/feature_combo.md

index a2fd1423c88793548da503488a718d509647e335..680adce2dc2721cb0541f64ed4bcdad192f8aecd 100644 (file)
@@ -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