]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
test fixes for tap dane
authorDylan Khor <khord@simspace.com>
Thu, 16 Mar 2017 17:07:01 +0000 (13:07 -0400)
committerDylan Khor <khord@simspace.com>
Thu, 16 Mar 2017 17:07:01 +0000 (13:07 -0400)
keyboards/planck/keymaps/khord/config.h
keyboards/planck/keymaps/khord/keymap.c

index 76a1f8832222a9cdd0f701ad5400a5267a3351b6..008f3a5c2c56b24b9356d925fd19ba5b09c67279 100644 (file)
@@ -63,7 +63,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 )
 
 /* Tap Dance */
-#define TAPPING_TERM 200
+#define TAPPING_TERM 150
 
 /*
  * Feature disable options
index 04b95c74471410452545890cba7dd2f556b315b2..50a5daa57717b0745ed659e8b0e8de1beb4bf4fe 100644 (file)
@@ -33,22 +33,15 @@ enum planck_keycodes {
   EXT_PLV
 };
 
+// Fillers to make layering more clear
+#define _______ KC_TRNS
+#define XXXXXXX KC_NO
+
 // Tap Dance Declarations
 enum {
   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
 #define C_A_DEL LALT(LCTL(KC_DEL))
 #define C_A_INS LALT(LCTL(KC_INS))
@@ -328,3 +321,9 @@ void music_scale_user(void)
 }
 
 #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)
+};