mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-08 00:24:16 -04:00
- removed most combos and all key overrides - implemented custom override for haptic and audio config - went back to older keymap (e.g. backspace and del on most layers) - reintroduced dedicated mouse button on thumb cluster - mouse button 2 is now a combo
20 lines
No EOL
522 B
C
20 lines
No EOL
522 B
C
#pragma once
|
|
#include "t4corun.h"
|
|
|
|
|
|
const uint16_t PROGMEM mou_btn2_combo[] = { KC_C, KC_V, COMBO_END };
|
|
const uint16_t PROGMEM mou_drg_combo[] = { KC_X, KC_V, COMBO_END };
|
|
|
|
enum combos {
|
|
MOUSE_BUTTON2,
|
|
MOUSE_DRGTOG,
|
|
COMBO_LENGTH
|
|
};
|
|
|
|
//their documentation is so confusing because you don't use COMBO_LEN defining the actions
|
|
uint16_t COMBO_LEN = COMBO_LENGTH;
|
|
|
|
combo_t key_combos[COMBO_LENGTH] = {
|
|
[MOUSE_BUTTON2] = COMBO(mou_btn2_combo, KC_BTN2),
|
|
[MOUSE_DRGTOG] = COMBO(mou_drg_combo, TR_DRGS)
|
|
}; |