diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-08-10 13:34:42 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-10 13:34:42 +0400 |
commit | 90deacff851b27244c93795ddbc7d91fe7ea3cb4 (patch) | |
tree | 953cbb4fac64db164ea1ca1ba93d5a38308878da /src/lib.rs | |
parent | 8cf8505956aaab7565902c900b514a018a579d35 (diff) | |
download | r-alacritty-vte-90deacff851b27244c93795ddbc7d91fe7ea3cb4.tar.gz r-alacritty-vte-90deacff851b27244c93795ddbc7d91fe7ea3cb4.tar.bz2 r-alacritty-vte-90deacff851b27244c93795ddbc7d91fe7ea3cb4.zip |
Add support for kitty keyboard protocol
This just adds handling of the CSI u escapes mentioned in the spec
and don't provide key to escape sequence transformation for the terminals.
Links: https://sw.kovidgoyal.net/kitty/keyboard-protocol
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -374,7 +374,7 @@ impl<const OSC_RAW_BUF_SIZE: usize> Parser<OSC_RAW_BUF_SIZE> { /// movement, or simply printing characters to the screen. /// /// The methods on this type correspond to actions described in -/// http://vt100.net/emu/dec_ansi_parser. I've done my best to describe them in +/// <http://vt100.net/emu/dec_ansi_parser>. I've done my best to describe them in /// a useful way in my own words for completeness, but the site should be /// referenced if something isn't clear. If the site disappears at some point in /// the future, consider checking archive.org. |