all: changed G(ESC) on FN layer to LSG(ESC)
This commit is contained in:
parent
5af65e78f2
commit
080c0b1e53
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ typedef enum {
|
|||
} tap_dance;
|
||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
||||
[TD_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_LSFT, KC_CAPS),
|
||||
[TD_QUIT] = ACTION_TAP_DANCE_DOUBLE(G(KC_ESC), LSG(KC_Q))
|
||||
[TD_QUIT] = ACTION_TAP_DANCE_DOUBLE(LSG(KC_ESC), LSG(KC_Q))
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
|
|
@ -20,7 +20,7 @@ typedef enum {
|
|||
TD_QUIT
|
||||
} tap_dance;
|
||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
||||
[TD_QUIT] = ACTION_TAP_DANCE_DOUBLE(G(KC_ESC), LSG(KC_Q))
|
||||
[TD_QUIT] = ACTION_TAP_DANCE_DOUBLE(LSG(KC_ESC), LSG(KC_Q))
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
|
Loading…
Reference in a new issue