summaryrefslogtreecommitdiffstats
path: root/docs/feature_mouse_keys.md
diff options
context:
space:
mode:
authorBrian Choromanski <BrianChoromanski@gmail.com>2018-02-28 22:43:15 +0100
committerJack Humbert <jack.humb@gmail.com>2018-02-28 22:43:15 +0100
commit8e99fbc884d8599a18327f1bae82433fe11e9b7a (patch)
treecf532f3c6516a5fabd93a45479ecb145070888a3 /docs/feature_mouse_keys.md
parent524053e3c0eceab0eadf04cde6c2c0f1a77520fe (diff)
downloadqmk_firmware-8e99fbc884d8599a18327f1bae82433fe11e9b7a.tar.gz
qmk_firmware-8e99fbc884d8599a18327f1bae82433fe11e9b7a.tar.xz
Fixed typo of 'confid.h' to 'config.h' (#2448)
* Fixed typo of 'confid.h' to 'config.h' * Fixed broken links in docs
Diffstat (limited to 'docs/feature_mouse_keys.md')
-rw-r--r--docs/feature_mouse_keys.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/feature_mouse_keys.md b/docs/feature_mouse_keys.md
index c4239b4da..9e7df929e 100644
--- a/docs/feature_mouse_keys.md
+++ b/docs/feature_mouse_keys.md
@@ -5,17 +5,17 @@ Mousekeys is a feature that allows you to emulate a mouse using your keyboard. Y
## Adding Mousekeys to a Keymap
-There are two steps to adding Mousekeys support to your keyboard. You must enable support in the Makefile and you must map mouse actions to keys on your keyboard.
+There are two steps to adding Mousekeys support to your keyboard. You must enable support in the `rules.mk` file and you must map mouse actions to keys on your keyboard.
-### Adding Mousekeys Support in the `Makefile`
+### Adding Mousekeys Support in the `rules.mk`
-To add support for Mousekeys you simply need to add a single line to your keymap's `Makefile`:
+To add support for Mousekeys you simply need to add a single line to your keymap's `rules.mk`:
```
MOUSEKEY_ENABLE = yes
```
-You can see an example here: https://github.com/qmk/qmk_firmware/blob/master/keyboards/clueboard/keymaps/mouse_keys/Makefile
+You can see an example here: https://github.com/qmk/qmk_firmware/blob/master/keyboards/clueboard/66/keymaps/mouse_keys/rules.mk
### Mapping Mouse Actions to Keyboard Keys