From 18b0c217fc9691602d1232d0dd578fd357fbabde Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 2 Jan 2025 22:54:07 +0100 Subject: [PATCH] feat: use smaller NL symbol --- src/tui/editor.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/editor.zig b/src/tui/editor.zig index 7a6a6ed..0a93699 100644 --- a/src/tui/editor.zig +++ b/src/tui/editor.zig @@ -46,7 +46,7 @@ pub const whitespace = struct { pub const visible = "·"; pub const blank = " "; pub const indent = "│"; - pub const eol = "↩"; // alternatives: "$", "⏎", "󰌑", "↲", "⤶", "󱞱", "󱞲", "⤦", "¬", "␤", "❯", "❮" + pub const eol = "󰌑"; // alternatives: "$", "⏎", "󰌑", "↩", "↲", "⤶", "󱞱", "󱞲", "⤦", "¬", "␤", "❯", "❮" pub const tab_begin = "-"; pub const tab_end = ">"; };