diff options
author | skullY <skullydazed@gmail.com> | 2018-05-07 22:40:57 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2018-05-07 22:46:26 -0700 |
commit | 303f425c6b4f9ab6056f863e515c71c9325f2bfa (patch) | |
tree | 150c9eba72bc40cf2d9a101d4a606156ea54cd0b /docs/feature_macros.md | |
parent | 9e5676650ec4ae71565201871c1aaf05e96a756b (diff) | |
download | qmk_firmware-303f425c6b4f9ab6056f863e515c71c9325f2bfa.tar.gz qmk_firmware-303f425c6b4f9ab6056f863e515c71c9325f2bfa.zip |
Fix up info boxes.
Diffstat (limited to 'docs/feature_macros.md')
-rw-r--r-- | docs/feature_macros.md | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md index 006fa04bc..673153081 100644 --- a/docs/feature_macros.md +++ b/docs/feature_macros.md | |||
@@ -2,9 +2,7 @@ | |||
2 | 2 | ||
3 | Macros allow you to send multiple keystrokes when pressing just one key. QMK has a number of ways to define and use macros. These can do anything you want: type common phrases for you, copypasta, repetitive game movements, or even help you code. | 3 | Macros allow you to send multiple keystrokes when pressing just one key. QMK has a number of ways to define and use macros. These can do anything you want: type common phrases for you, copypasta, repetitive game movements, or even help you code. |
4 | 4 | ||
5 | {% hint style='danger' %} | 5 | !> **Security Note**: While it is possible to use macros to send passwords, credit card numbers, and other sensitive information it is a supremely bad idea to do so. Anyone who gets a hold of your keyboard will be able to access that information by opening a text editor. |
6 | **Security Note**: While it is possible to use macros to send passwords, credit card numbers, and other sensitive information it is a supremely bad idea to do so. Anyone who gets a hold of your keyboard will be able to access that information by opening a text editor. | ||
7 | {% endhint %} | ||
8 | 6 | ||
9 | ## The New Way: `SEND_STRING()` & `process_record_user` | 7 | ## The New Way: `SEND_STRING()` & `process_record_user` |
10 | 8 | ||
@@ -132,9 +130,7 @@ SEND_STRING(".."SS_TAP(X_END)); | |||
132 | 130 | ||
133 | ## The Old Way: `MACRO()` & `action_get_macro` | 131 | ## The Old Way: `MACRO()` & `action_get_macro` |
134 | 132 | ||
135 | {% hint style='info' %} | 133 | ?> This is inherited from TMK, and hasn't been updated - it's recommend that you use `SEND_STRING` and `process_record_user` instead. |
136 | This is inherited from TMK, and hasn't been updated - it's recommend that you use `SEND_STRING` and `process_record_user` instead. | ||
137 | {% endhint %} | ||
138 | 134 | ||
139 | By default QMK assumes you don't have any macros. To define your macros you create an `action_get_macro()` function. For example: | 135 | By default QMK assumes you don't have any macros. To define your macros you create an `action_get_macro()` function. For example: |
140 | 136 | ||