From bb5d8af6b910061c916631bc3f8e7266fec682c6 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Tue, 4 Mar 2025 15:19:46 -0600 Subject: [PATCH] ui: use nerdfont for channel octothorpe --- src/irc.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/irc.zig b/src/irc.zig index dbab4c9..75f2415 100644 --- a/src/irc.zig +++ b/src/irc.zig @@ -443,7 +443,7 @@ pub const Channel = struct { .{ .text = &.{ prefix, - .{ .text = "#", .style = .{ .fg = .{ .index = 8 } } }, + .{ .text = " ", .style = .{ .fg = .{ .index = 8 } } }, .{ .text = self.name[1..], .style = style }, }, .softwrap = false, @@ -451,6 +451,7 @@ pub const Channel = struct { else .{ .text = &.{ + prefix, .{ .text = " " }, .{ .text = self.name, .style = style }, }, -- 2.51.2