diff options
| author | Ryan <fauxpark@gmail.com> | 2024-06-02 12:42:24 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-02 12:42:24 +1000 |
| commit | 78a0adfbb4d2c4e12f93f2a62ded0020d406243e (patch) | |
| tree | e6e123b36569559233025add654580e090dc0154 /docs/feature_macros.md | |
| parent | fa6d23235bf429446250cd5212e209d5fbfdbac2 (diff) | |
[docs] Organize driver & feature docs into subfolders (#23848)
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'docs/feature_macros.md')
| -rw-r--r-- | docs/feature_macros.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md index d5a830c0ef..055bb3ff8f 100644 --- a/docs/feature_macros.md +++ b/docs/feature_macros.md | |||
| @@ -86,7 +86,7 @@ All objects have one required key: `action`. This tells QMK what the object does | |||
| 86 | Only basic keycodes (prefixed by `KC_`) are supported. Do not include the `KC_` prefix when listing keycodes. | 86 | Only basic keycodes (prefixed by `KC_`) are supported. Do not include the `KC_` prefix when listing keycodes. |
| 87 | 87 | ||
| 88 | * `beep` | 88 | * `beep` |
| 89 | * Play a bell if the keyboard has [audio enabled](feature_audio). | 89 | * Play a bell if the keyboard has [audio enabled](features/audio). |
| 90 | * Example: `{"action": "beep"}` | 90 | * Example: `{"action": "beep"}` |
| 91 | * `delay` | 91 | * `delay` |
| 92 | * Pause macro playback. Duration is specified in milliseconds (ms). | 92 | * Pause macro playback. Duration is specified in milliseconds (ms). |
| @@ -108,7 +108,7 @@ Only basic keycodes (prefixed by `KC_`) are supported. Do not include the `KC_` | |||
| 108 | 108 | ||
| 109 | ### `SEND_STRING()` & `process_record_user` | 109 | ### `SEND_STRING()` & `process_record_user` |
| 110 | 110 | ||
| 111 | See also: [Send String](feature_send_string) | 111 | See also: [Send String](features/send_string) |
| 112 | 112 | ||
| 113 | Sometimes you want a key to type out words or phrases. For the most common situations, we've provided `SEND_STRING()`, which will type out a string (i.e. a sequence of characters) for you. All ASCII characters that are easily translatable to a keycode are supported (e.g. `qmk 123\n\t`). | 113 | Sometimes you want a key to type out words or phrases. For the most common situations, we've provided `SEND_STRING()`, which will type out a string (i.e. a sequence of characters) for you. All ASCII characters that are easily translatable to a keycode are supported (e.g. `qmk 123\n\t`). |
| 114 | 114 | ||
