diff options
Diffstat (limited to 'users/ninjonas/tap_dances.h')
-rw-r--r-- | users/ninjonas/tap_dances.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/users/ninjonas/tap_dances.h b/users/ninjonas/tap_dances.h new file mode 100644 index 000000000..0a781ce4e --- /dev/null +++ b/users/ninjonas/tap_dances.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #pragma once | ||
2 | #include "ninjonas.h" | ||
3 | |||
4 | enum custom_tapdances{ | ||
5 | TD_ESC_CAPS = 0, | ||
6 | TD_LBRC_BACK, | ||
7 | TD_RBRC_FWD, | ||
8 | TD_TAB_CTRLTAB, | ||
9 | TD_GRV_CTRLGRV, | ||
10 | TD_GUI_GUISPC, | ||
11 | TD_W_CTRLW, | ||
12 | TD_Q_GUIQ, | ||
13 | }; | ||
14 | |||
15 | #define T_ESC TD(TD_ESC_CAPS) // Tap for ESC, double tap for CAPSLOCK | ||
16 | #define T_LBRC TD(TD_LBRC_BACK) // Tap for [, double tap for back browser | ||
17 | #define T_RBRC TD(TD_RBRC_FWD) // Tap for ], double tap for forward browser | ||
18 | #define T_TAB TD(TD_TAB_CTRLTAB) // Tap for TAB, double tap for CTRL + TAB | ||
19 | #define T_GRV TD(TD_GRV_CTRLGRV) // Tap for GRV, double tap for + GRV | ||
20 | #define T_GUI TD(TD_GUI_GUISPC) // Tap for , double tap for + Space | ||
21 | #define T_W TD(TD_W_CTRLW) // Tap for W, double tap for + W | ||
22 | #define T_Q TD(TD_Q_GUIQ) // Tap for Q, double tap for + Q \ No newline at end of file | ||