From 90deacff851b27244c93795ddbc7d91fe7ea3cb4 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 10 Aug 2023 13:34:42 +0400 Subject: 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 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib.rs') 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 Parser { /// 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 +/// . 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. -- cgit