diff options
author | Allen Choi <37539914+Thunderbird2086@users.noreply.github.com> | 2022-07-16 15:29:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-16 00:29:09 -0700 |
commit | 9cdccb12d112c13e79f127ca686bbe81b8fcef6f (patch) | |
tree | 7544093c41b7a6310bbe547c23ea06e64680a23e /keyboards/crkbd/keymaps/thunderbird2086/tap_dances.c | |
parent | 66983f090c6c648ea8db21c1ff11934b0ff4c882 (diff) |
[Keymap] Crkbd/thunderbird2086 (#16973)
* crkbd:thunderbird2086
* readme
* after code review
* coding format
* minor change
* changed file name
* correct image
* updated readme
* using query to get rgb status
* minor update
Diffstat (limited to 'keyboards/crkbd/keymaps/thunderbird2086/tap_dances.c')
-rw-r--r-- | keyboards/crkbd/keymaps/thunderbird2086/tap_dances.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/keyboards/crkbd/keymaps/thunderbird2086/tap_dances.c b/keyboards/crkbd/keymaps/thunderbird2086/tap_dances.c new file mode 100644 index 0000000000..1cf6fdf092 --- /dev/null +++ b/keyboards/crkbd/keymaps/thunderbird2086/tap_dances.c @@ -0,0 +1,12 @@ +// Copyright 2021 Allen Choi (@thunderbird2086) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H +#include "tap_dances.h" + +qk_tap_dance_action_t tap_dance_actions[] = { + [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS), + [TD_TAB_CTRLTAB] = ACTION_TAP_DANCE_DOUBLE(KC_TAB, LCTL(KC_TAB)), + [TD_GRV_CTRLGRV] = ACTION_TAP_DANCE_DOUBLE(KC_GRV, LGUI(KC_GRV)), + [TD_GUI_GUISPC] = ACTION_TAP_DANCE_DOUBLE(KC_LGUI, LGUI(KC_SPC)), +}; |