From dbe0aae4a10ece3363c94a6e59d7c519f98ce961 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 5 Mar 2024 22:03:50 +0100 Subject: [PATCH] fix: show cursors instead of cursels in status bar --- src/tui/status/selectionstate.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/status/selectionstate.zig b/src/tui/status/selectionstate.zig index 68ccbdc..9750127 100644 --- a/src/tui/status/selectionstate.zig +++ b/src/tui/status/selectionstate.zig @@ -63,7 +63,7 @@ fn format(self: *Self) void { _ = writer.write(" ") catch {}; } if (self.cursels > 1) { - std.fmt.format(writer, "({d} cursels)", .{self.cursels}) catch {}; + std.fmt.format(writer, "({d} cursors)", .{self.cursels}) catch {}; if (self.selection) |_| _ = writer.write(" ") catch {}; }