From 7ac12c6ecaa3c604e56bfd5dda9e5516fd908022 Mon Sep 17 00:00:00 2001 From: zvecr Date: Tue, 10 Aug 2021 09:16:18 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20master=20@?= =?UTF-8?q?=20aeff347a074495f5aea77612bb083f79f7fcaf17=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- feature_wpm.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/feature_wpm.md b/feature_wpm.md index c8ec3a7f327..e2fac1ecea0 100644 --- a/feature_wpm.md +++ b/feature_wpm.md @@ -45,6 +45,7 @@ bool wpm_keycode_user(uint16_t keycode) { Additionally, if `WPM_ALLOW_COUNT_REGRESSION` is defined, there is the `uint8_t wpm_regress_count(uint16_t keycode)` function that allows you to decrease the WPM. This is useful if you want to be able to penalize certain keycodes (or even combinations). +```c __attribute__((weak)) uint8_t wpm_regress_count(uint16_t keycode) { bool weak_modded = (keycode >= QK_LCTL && keycode < QK_LSFT) || (keycode >= QK_RCTL && keycode < QK_RSFT); @@ -60,3 +61,4 @@ __attribute__((weak)) uint8_t wpm_regress_count(uint16_t keycode) { return 1; } } +```