fix: show cursors instead of cursels in status bar

This commit is contained in:
CJ van den Berg 2024-03-05 22:03:50 +01:00
parent a2f0acfaad
commit dbe0aae4a1

View file

@ -63,7 +63,7 @@ fn format(self: *Self) void {
_ = writer.write(" ") catch {}; _ = writer.write(" ") catch {};
} }
if (self.cursels > 1) { 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) |_| if (self.selection) |_|
_ = writer.write(" ") catch {}; _ = writer.write(" ") catch {};
} }