From 622e6dd78180c7c19731e13adf3e3d1641e65f7d Mon Sep 17 00:00:00 2001 From: gm Date: Thu, 16 Jul 2026 21:18:53 +0900 Subject: [PATCH] Show main menu hint in tab bar --- wezterm.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wezterm.lua b/wezterm.lua index 797b5b4..d1c9fa4 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -95,6 +95,15 @@ end) local pane_start_times = {} wezterm.on("update-right-status", function(window, pane) + window:set_left_status(wezterm.format({ + { Background = { Color = "#89b4fa" } }, + { Foreground = { Color = "#1e1e2e" } }, + { Text = " ☰ " }, + { Background = { Color = "#313244" } }, + { Foreground = { Color = "#cdd6f4" } }, + { Text = " Menu: Ctrl+a m " }, + })) + local pane_id = pane:pane_id() if not pane_start_times[pane_id] then pane_start_times[pane_id] = os.time()