From 69e4428d802272417fc0e40a7d0d04edc5bb43c3 Mon Sep 17 00:00:00 2001 From: dkmar Date: Fri, 3 Jan 2025 23:34:39 -0800 Subject: [PATCH] fix typo: CSI header --- src/input/Binding.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/Binding.zig b/src/input/Binding.zig index 33ed80c8b..5a8a3b562 100644 --- a/src/input/Binding.zig +++ b/src/input/Binding.zig @@ -230,7 +230,7 @@ pub const Action = union(enum) { unbind: void, /// Send a CSI sequence. The value should be the CSI sequence without the - /// CSI header (`ESC ]` or `\x1b]`). + /// CSI header (`ESC [` or `\x1b[`). csi: []const u8, /// Send an `ESC` sequence.