]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - docs/feature_combo.md
Added OLED Driver to the summary
[qmk_firmware.git] / docs / feature_combo.md
index 05ffc0d725771d4e2bd08fad5cdf31393d5a81f1..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
 
@@ -29,7 +28,7 @@ If you want to add a list, then you'd use something like this:
 enum combos {
   AB_ESC,
   JK_TAB
-}
+};
 const uint16_t PROGMEM ab_combo[] = {KC_A, KC_B, COMBO_END};
 const uint16_t PROGMEM jk_combo[] = {KC_J, KC_K, COMBO_END};