[Keymap] 3w6 helltm keymap combos (#15393)
parent
7e58ab88ff
commit
495a2f0ec3
@ -0,0 +1,18 @@
|
||||
CB(open_round_brackets_combo, KC_LPRN, KC_R, KC_T)
|
||||
CB(open_square_brackets_combo, KC_LBRC, KC_F, KC_G)
|
||||
CB(open_curly_brackets_combo, KC_LCBR, KC_V, KC_B)
|
||||
CB(close_round_brackets_combo, KC_RPRN, KC_Y, KC_U)
|
||||
CB(close_square_brackets_combo, KC_RBRC, KC_H, KC_J)
|
||||
CB(close_curly_brackets_combo, KC_RCBR, KC_N, KC_M)
|
||||
|
||||
CB(esc_combo, KC_ESC, KC_Q, KC_A)
|
||||
CB(tab_combo, KC_TAB, KC_A, LSFT_T(KC_Z))
|
||||
|
||||
CB(single_quote_combo, KC_QUOT, KC_P, KC_SCLN)
|
||||
CB(double_quote_combo, KC_DQUO, KC_SCLN, RSFT_T(KC_SLSH))
|
||||
|
||||
CB(plus_combo, KC_PLUS, KC_T, KC_G)
|
||||
CB(asterisk_combo, KC_ASTR, KC_G, KC_B)
|
||||
|
||||
CB(minus_combo, KC_MINS, KC_Y, KC_H)
|
||||
CB(equal_combo, KC_EQL, KC_H, KC_N)
|
||||
@ -0,0 +1,35 @@
|
||||
/* Copyright 2021 HellSingCoder
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define CB(name, action, ...) C_##name,
|
||||
enum user_combos {
|
||||
#include "combos.def"
|
||||
COMBO_LENGTH
|
||||
};
|
||||
#undef CB
|
||||
uint16_t COMBO_LEN = COMBO_LENGTH;
|
||||
|
||||
#define CB(name, action, ...) const uint16_t PROGMEM name##_combo[] = {__VA_ARGS__, COMBO_END};
|
||||
#include "combos.def"
|
||||
#undef CB
|
||||
|
||||
combo_t key_combos[COMBO_LENGTH] = {
|
||||
#define CB(name, action, ...) COMBO(name##_combo, action),
|
||||
#include "combos.def"
|
||||
#undef CB
|
||||
};
|
||||
@ -0,0 +1,20 @@
|
||||
/* Copyright 2021 HellSingCoder
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/* Combo timer */
|
||||
#define COMBO_TERM 15
|
||||
@ -0,0 +1,2 @@
|
||||
# Combos
|
||||
COMBO_ENABLE = yes
|
||||
Loading…
Reference in New Issue