1
0
Fork 0

Feature-ify Send String (#17275)

This commit is contained in:
Ryan 2022-07-02 22:10:08 +10:00 committed by GitHub
parent 7e41eb0277
commit 3ecb0a80af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 892 additions and 623 deletions

View file

@ -106,6 +106,8 @@ Only basic keycodes (prefixed by `KC_`) are supported. Do not include the `KC_`
### `SEND_STRING()` & `process_record_user`
See also: [Send String](feature_send_string.md)
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`).
Here is an example `keymap.c` for a two-key keyboard: