keyboard stuff
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Convert stray legacy warn/info docs panels (#24799)

authored by

Joel Challis and committed by
GitHub
6facb7a0 bcee1d2f

+9 -4
+3 -1
docs/feature_macros.md
··· 117 117 We return `true` to indicate to the caller that the key press we just processed should continue to be processed as normal (as we didn't replace or alter the functionality). 118 118 Finally, we define the keymap so that the first button activates our macro and the second button is just an escape button. 119 119 120 - ?>It is recommended to use the SAFE_RANGE macro as per [Customizing Functionality](custom_quantum_functions). 120 + ::: tip 121 + It is recommended to use the SAFE_RANGE macro as per [Customizing Functionality](custom_quantum_functions). 122 + ::: 121 123 122 124 You might want to add more than one macro. 123 125 You can do that by adding another keycode and adding another case to the switch statement, like so:
+3 -2
docs/feature_userspace.md
··· 74 74 75 75 The reason for this, is that `<name>.h` won't be added in time to add settings (such as `#define TAPPING_TERM 100`), and including the `<name.h>` file in any `config.h` files will result in compile issues. 76 76 77 - !>You should use the `config.h` for [configuration options](config_options), and the `<name>.h` file for user or keymap specific settings (such as the enum for layer or keycodes) 78 - 77 + ::: warning 78 + You should use the `config.h` for [configuration options](config_options), and the `<name>.h` file for user or keymap specific settings (such as the enum for layer or keycodes) 79 + ::: 79 80 80 81 ## Readme (`readme.md`) 81 82
+3 -1
docs/features/mouse_keys.md
··· 214 214 |`MOUSEKEY_OVERLAP_WHEEL_DELTA`|`MOUSEKEY_WHEEL_DELTA`|Step size of reset mouse wheel acceleration | 215 215 |`MOUSEKEY_OVERLAP_INTERVAL` |`MOUSEKEY_INTERVAL` |Reset time between cursor movements in milliseconds (Kinetic mode only)| 216 216 217 - ?> This feature will not be applied on Inertial mode 217 + ::: tip 218 + This feature will not be applied on Inertial mode 219 + ::: 218 220 219 221 ## Use with PS/2 Mouse and Pointing Device 220 222