aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2023-08-10 13:34:42 +0400
committerGitHub <noreply@github.com>2023-08-10 13:34:42 +0400
commit90deacff851b27244c93795ddbc7d91fe7ea3cb4 (patch)
tree953cbb4fac64db164ea1ca1ba93d5a38308878da /src/lib.rs
parent8cf8505956aaab7565902c900b514a018a579d35 (diff)
downloadr-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.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0ff6a91..31e2a31 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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.