Delete tapdance timing

This commit is contained in:
mexsistor 2020-09-22 20:36:18 -05:00
parent f50f8cc26f
commit 43a0366b9b
2 changed files with 1 additions and 18 deletions

View File

@ -77,7 +77,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// #endif
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
#define DEBOUNCE 20
#define DEBOUNCE 0
/* ENCODER THINGS */
// #define ENCODER_DIRECTION_FLIP
@ -85,10 +85,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
{ F6 }
#define ENCODERS_PAD_B \
{ F5 }
/* Tap Dance timing */
#define TAPPING_TERM 200
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
#define LOCKING_SUPPORT_ENABLE
/* Locking resynchronize hack */

View File

@ -41,16 +41,3 @@ void encoder_update_user(uint8_t index, bool clockwise) {
}
}
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
// Example of "pressing" CONTROL+SHIFT+V instead of "A" on keyboard
// More info: https://docs.qmk.fm/#/feature_macros
// case KC_A:
// if (record->event.pressed) {
// SEND_STRING(SS_LCTL(SS_LSFT("v")));
// } else {
// }
// break;
}
return true;
};