Update docs/guide/input.md

Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>
This commit is contained in:
Will McGugan
2022-12-21 15:23:19 +00:00
committed by GitHub
parent 17a0d52945
commit 611dffcbba

View File

@@ -47,7 +47,7 @@ Many keys can also be combined with ++ctrl++ which will prefix the key with `ctr
#### character
If the key has an associated printable character then `character` will contain a string with a single unicode character. If there is no printable character for the key (such as for function keys) then `character` will be `None`.
If the key has an associated printable character, then `character` will contain a string with a single Unicode character. If there is no printable character for the key (such as for function keys) then `character` will be `None`.
For example the ++p++ key will produce `character="p"` but ++f2++ will produce `character=None`.