From 36d98dce7cab82aa95483eda12f0cf830d095bd2 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Sat, 14 Feb 2026 20:46:29 +0100 Subject: [PATCH] refactor: simplify symbols palette naming And give it an icon like the other palettes. --- src/tui/mode/overlay/symbol_palette.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tui/mode/overlay/symbol_palette.zig b/src/tui/mode/overlay/symbol_palette.zig index e6776d5..2bbfb51 100644 --- a/src/tui/mode/overlay/symbol_palette.zig +++ b/src/tui/mode/overlay/symbol_palette.zig @@ -14,9 +14,9 @@ const ed = @import("../../editor.zig"); const module_name = @typeName(@This()); const Widget = @import("../../Widget.zig"); -pub const label = "Go to Symbol"; -pub const name = "Go to"; -pub const description = "Symbols in scope"; +pub const label = "Search symbols"; +pub const name = "󰊕 symbols"; +pub const description = "file symbols"; pub const icon = "󱎸 "; pub const modal_dim = false; pub const placement = .top_right;