aboutsummaryrefslogtreecommitdiff
path: root/docs/config_options.md
diff options
context:
space:
mode:
authorJonas Gessner <JonasGessner@users.noreply.github.com>2021-07-13 19:13:51 +0200
committerGitHub <noreply@github.com>2021-07-13 10:13:51 -0700
commit52cfc9259b58a3a11a244fbe35c49c7dd1a9cae0 (patch)
tree71cbd4b8e2c622a33cbb4d080a08e035901f30c8 /docs/config_options.md
parent1ae4d52013c9f38bdc5c208ff8bbfdf173e1dddd (diff)
downloadqmk_firmware-52cfc9259b58a3a11a244fbe35c49c7dd1a9cae0.tar.gz
qmk_firmware-52cfc9259b58a3a11a244fbe35c49c7dd1a9cae0.zip
[Feature] Key Overrides (#11422)
Diffstat (limited to 'docs/config_options.md')
-rw-r--r--docs/config_options.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index 980195ac6..0c98b3101 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -195,6 +195,8 @@ If you define these options you will enable the associated feature, which may in
195 * Sets the delay between `register_code` and `unregister_code`, if you're having issues with it registering properly (common on VUSB boards). The value is in milliseconds. 195 * Sets the delay between `register_code` and `unregister_code`, if you're having issues with it registering properly (common on VUSB boards). The value is in milliseconds.
196* `#define TAP_HOLD_CAPS_DELAY 80` 196* `#define TAP_HOLD_CAPS_DELAY 80`
197 * Sets the delay for Tap Hold keys (`LT`, `MT`) when using `KC_CAPSLOCK` keycode, as this has some special handling on MacOS. The value is in milliseconds, and defaults to 80 ms if not defined. For macOS, you may want to set this to 200 or higher. 197 * Sets the delay for Tap Hold keys (`LT`, `MT`) when using `KC_CAPSLOCK` keycode, as this has some special handling on MacOS. The value is in milliseconds, and defaults to 80 ms if not defined. For macOS, you may want to set this to 200 or higher.
198* `#define KEY_OVERRIDE_REPEAT_DELAY 500`
199 * Sets the key repeat interval for [key overrides](feature_key_overrides.md).
198 200
199## RGB Light Configuration 201## RGB Light Configuration
200 202
@@ -400,6 +402,8 @@ Use these to enable or disable building certain features. The more you have enab
400 * USB N-Key Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work 402 * USB N-Key Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
401* `AUDIO_ENABLE` 403* `AUDIO_ENABLE`
402 * Enable the audio subsystem. 404 * Enable the audio subsystem.
405* `KEY_OVERRIDE_ENABLE`
406 * Enable the key override feature
403* `RGBLIGHT_ENABLE` 407* `RGBLIGHT_ENABLE`
404 * Enable keyboard underlight functionality 408 * Enable keyboard underlight functionality
405* `LEADER_ENABLE` 409* `LEADER_ENABLE`