summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2018-10-28 17:18:41 +0100
committerJack Humbert <jack.humb@gmail.com>2018-11-06 06:38:44 +0100
commit26a201e6875e82c623c136eccf937b511199c701 (patch)
tree8d029023cc75862f5e6ac79669dc7aff13eb6a97 /docs
parent6e44f94f21ef45865eb8820923d4c9c696f08133 (diff)
downloadqmk_firmware-26a201e6875e82c623c136eccf937b511199c701.tar.gz
qmk_firmware-26a201e6875e82c623c136eccf937b511199c701.tar.xz
fix example to reflect caveat
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_combo.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/feature_combo.md b/docs/feature_combo.md
index 5bb73ef10..05ffc0d72 100644
--- a/docs/feature_combo.md
+++ b/docs/feature_combo.md
@@ -44,15 +44,15 @@ For a more complicated implementation, you can use the `process_combo_event` fun
```c
enum combo_events {
ZC_COPY,
- ZV_PASTE
+ XV_PASTE
};
const uint16_t PROGMEM copy_combo[] = {KC_Z, KC_C, COMBO_END};
-const uint16_t PROGMEM paste_combo[] = {KC_Z, KC_V, COMBO_END};
+const uint16_t PROGMEM paste_combo[] = {KC_X, KC_V, COMBO_END};
combo_t key_combos[COMBO_COUNT] = {
[ZC_COPY] = COMBO_ACTION(copy_combo),
- [ZV_PASTE] = COMBO_ACTION(paste_combo),
+ [XV_PASTE] = COMBO_ACTION(paste_combo),
};
void process_combo_event(uint8_t combo_index, bool pressed) {
@@ -66,7 +66,7 @@ void process_combo_event(uint8_t combo_index, bool pressed) {
}
break;
- case ZV_PASTE:
+ case XV_PASTE:
if (pressed) {
register_code(KC_LCTL);
register_code(KC_V);
@@ -78,7 +78,7 @@ void process_combo_event(uint8_t combo_index, bool pressed) {
}
```
-This will send Ctrl+C if you hit Z and C, and Ctrl+V if you hit Z and V. But you could change this to do stuff like change layers, play sounds, or change settings.
+This will send Ctrl+C if you hit Z and C, and Ctrl+V if you hit X and V. But you could change this to do stuff like change layers, play sounds, or change settings.
## Additional Configuration