summaryrefslogtreecommitdiff
path: root/users/yet-another-developer/combo.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-11-26 18:36:45 +0000
committerGitHub <noreply@github.com>2023-11-27 05:36:45 +1100
commit1ed03f498fa204178c2696c510ac6a2cd8524e2d (patch)
treeb97c1f983b7e4b57c007d0feedadd3ad3e39062b /users/yet-another-developer/combo.h
parent4908d4b1ca260efecf3613e6517aa3a6f2034876 (diff)
Remove userspace keymaps (#22544)
Diffstat (limited to 'users/yet-another-developer/combo.h')
-rw-r--r--users/yet-another-developer/combo.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/users/yet-another-developer/combo.h b/users/yet-another-developer/combo.h
deleted file mode 100644
index 6fb3eaf58c..0000000000
--- a/users/yet-another-developer/combo.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-#include "quantum.h"
-enum combo_events {
- ZV_COPY,
- XV_CUT,
- CV_PASTE,
- QP_SLEEP
-};
-
-const uint16_t PROGMEM copy_combo[] = {KC_Z, KC_V, COMBO_END};
-const uint16_t PROGMEM cut_combo[] = {KC_X, KC_V, COMBO_END};
-const uint16_t PROGMEM paste_combo[] = {KC_C, KC_V, COMBO_END};
-const uint16_t PROGMEM sleep_combo[] = {KC_Q, KC_P, COMBO_END};
-
-combo_t key_combos[] = {
- [ZV_COPY] = COMBO_ACTION(copy_combo),
- [XV_CUT] = COMBO_ACTION(cut_combo),
- [CV_PASTE] = COMBO_ACTION(paste_combo),
- [QP_SLEEP] = COMBO_ACTION(sleep_combo),
-};