summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorDaniel Shields <1530706+shieldsd@users.noreply.github.com>2022-09-26 04:38:37 +0100
committerGitHub <noreply@github.com>2022-09-25 20:38:37 -0700
commita4dcf22fd7fd251b14688286d1e9abff2fcdf546 (patch)
treecd56017908ace21d5433dd7fb4e2ad636a1ed183 /users
parent82eb98449de01456ed0d7568d0525ab6cc380155 (diff)
[Keymap] Tune mod tap configuration for dshields home row mods (#18458)
Diffstat (limited to 'users')
-rw-r--r--users/dshields/config.h5
-rw-r--r--users/dshields/dshields.c27
2 files changed, 31 insertions, 1 deletions
diff --git a/users/dshields/config.h b/users/dshields/config.h
index 9a722b89e6..21a5c3500d 100644
--- a/users/dshields/config.h
+++ b/users/dshields/config.h
@@ -4,7 +4,10 @@
#define USB_MAX_POWER_CONSUMPTION 100
#define ONESHOT_TAP_TOGGLE 2
#define ONESHOT_TIMEOUT 3000
-#define RETRO_TAPPING
+#define IGNORE_MOD_TAP_INTERRUPT
+#define PERMISSIVE_HOLD_PER_KEY
+#define TAPPING_FORCE_HOLD_PER_KEY
+#define TAPPING_TERM 200
#define BACKLIGHT_BREATHING
#define DYNAMIC_MACRO_NO_NESTING
diff --git a/users/dshields/dshields.c b/users/dshields/dshields.c
index 13eab12d4a..46f0b33cd3 100644
--- a/users/dshields/dshields.c
+++ b/users/dshields/dshields.c
@@ -29,3 +29,30 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
+bool get_tapping_force_hold(uint16_t keycode, keyrecord_t *record) {
+ switch (keycode) {
+ case MT_A:
+ case MT_S:
+ case MT_D:
+ case MT_F:
+ case MT_J:
+ case MT_K:
+ case MT_L:
+ case MT_SCLN:
+ return true;
+ default:
+ return false;
+ }
+}
+
+bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {
+ switch (keycode) {
+ case MT_SPC:
+ case MT_BSPC:
+ case MT_ESC:
+ return true;
+ default:
+ return false;
+ }
+}
+