1
0
Fork 0

test fixes for tap dane

This commit is contained in:
Dylan Khor 2017-03-16 13:07:01 -04:00
parent 0c8f71e3c7
commit 6ca1c49d38
2 changed files with 11 additions and 12 deletions

View file

@ -63,7 +63,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
) )
/* Tap Dance */ /* Tap Dance */
#define TAPPING_TERM 200 #define TAPPING_TERM 150
/* /*
* Feature disable options * Feature disable options

View file

@ -33,22 +33,15 @@ enum planck_keycodes {
EXT_PLV EXT_PLV
}; };
// Fillers to make layering more clear
#define _______ KC_TRNS
#define XXXXXXX KC_NO
// Tap Dance Declarations // Tap Dance Declarations
enum { enum {
TD_ESC_CAPS = 0 TD_ESC_CAPS = 0
}; };
// Tap Dance Definitions
qk_tap_dance_action_t tape_dance_actions[] = {
//Tap once for Esc, twice for Caps Lock
[TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS)
// Other declarations would go here, separated by commas, if you have them
};
// Fillers to make layering more clear
#define _______ KC_TRNS
#define XXXXXXX KC_NO
// Dylan's additions // Dylan's additions
#define C_A_DEL LALT(LCTL(KC_DEL)) #define C_A_DEL LALT(LCTL(KC_DEL))
#define C_A_INS LALT(LCTL(KC_INS)) #define C_A_INS LALT(LCTL(KC_INS))
@ -328,3 +321,9 @@ void music_scale_user(void)
} }
#endif #endif
// Tap Dance Definitions
const qk_tap_dance_action_t tape_dance_actions[] = {
//Tap once for Esc, twice for Caps Lock
[TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS)
};