Browse Source

DST_RMV → DST_REM

pull/5289/head
Konstantin Đorđević 5 years ago
parent
commit
f2543c3b9b
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      keyboards/kbdfans/kbd6x/keymaps/konstantin/keymap.c
  2. +1
    -1
      users/konstantin/konstantin.c
  3. +1
    -1
      users/konstantin/konstantin.h
  4. +1
    -1
      users/konstantin/tap_dance.c

+ 1
- 1
keyboards/kbdfans/kbd6x/keymaps/konstantin/keymap.c View File

@ -87,6 +87,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, TOP, MV_UP, BOTTOM, PRV_TAB, _______, _______, _______, _______, _______, _______, _______, _______, CLEAR,
_______, MV_LEFT, MV_DOWN, MV_RGHT, NXT_TAB, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
XXXXXXX, DST_RMV, DST_ADD, _______, _______, _______, XXXXXXX
XXXXXXX, DST_REM, DST_ADD, _______, _______, _______, XXXXXXX
),
};

+ 1
- 1
users/konstantin/konstantin.c View File

@ -30,7 +30,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case DST_P_R:
(record->event.pressed ? register_code16 : unregister_code16)(
(get_mods() & DST_MOD_MASK) ? DST_RMV : DST_PRV
(get_mods() & DST_MOD_MASK) ? DST_REM : DST_PRV
);
return false;


+ 1
- 1
users/konstantin/konstantin.h View File

@ -24,7 +24,7 @@
#define NXT_TAB LCTL(KC_PGDN)
#define DST_ADD LCTL(LGUI(KC_D))
#define DST_RMV LCTL(LGUI(KC_F4))
#define DST_REM LCTL(LGUI(KC_F4))
#define DST_PRV LCTL(LGUI(KC_LEFT))
#define DST_NXT LCTL(LGUI(KC_RGHT))
#ifndef DST_MOD_MASK


+ 1
- 1
users/konstantin/tap_dance.c View File

@ -82,7 +82,7 @@ void td_lsft_fn_reset(qk_tap_dance_state_t *state, void *user_data) {
}
qk_tap_dance_action_t tap_dance_actions[] = {
[TD_DST_A_R] = ACTION_TAP_DANCE_DOUBLE(DST_ADD, DST_RMV),
[TD_DST_A_R] = ACTION_TAP_DANCE_DOUBLE(DST_ADD, DST_REM),
[TD_RAL_LAL] = ACTION_TAP_DANCE_DOUBLE_MODS(KC_RALT, KC_LALT),
[TD_RAL_RGU] = ACTION_TAP_DANCE_DOUBLE_MODS(KC_RALT, KC_RGUI),


Loading…
Cancel
Save