forked from mirrors/qmk_firmware
Document Autocorrect callback functions (#20115)
This commit is contained in:
parent
e0bd6fac10
commit
a71e58270c
1 changed files with 12 additions and 0 deletions
|
@ -236,6 +236,18 @@ bool apply_autocorrect(uint8_t backspaces, const char *str) {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Autocorrect Status
|
||||||
|
|
||||||
|
Additional user callback functions to manipulate Autocorrect:
|
||||||
|
|
||||||
|
| Function | Description |
|
||||||
|
|----------------------------|----------------------------------------------|
|
||||||
|
| `autocorrect_enable()` | Turns Autocorrect on. |
|
||||||
|
| `autocorrect_disable()` | Turns Autocorrect off. |
|
||||||
|
| `autocorrect_toggle()` | Toggles Autocorrect. |
|
||||||
|
| `autocorrect_is_enabled()` | Returns true if Autocorrect is currently on. |
|
||||||
|
|
||||||
|
|
||||||
## Appendix: Trie binary data format :id=appendix
|
## Appendix: Trie binary data format :id=appendix
|
||||||
|
|
||||||
This section details how the trie is serialized to byte data in autocorrect_data. You don’t need to care about this to use this autocorrection implementation. But it is documented for the record in case anyone is interested in modifying the implementation, or just curious how it works.
|
This section details how the trie is serialized to byte data in autocorrect_data. You don’t need to care about this to use this autocorrection implementation. But it is documented for the record in case anyone is interested in modifying the implementation, or just curious how it works.
|
||||||
|
|
Loading…
Reference in a new issue