You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What Operating System(s) are you seeing this problem on?
macOS
Which Wayland compositor or X11 Window manager(s) are you using?
No response
WezTerm version
20241015-083151-9ddca7bd
Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?
Yes, and I updated the version box above to show the version of the nightly that I tried
Describe the bug
The update-status event callback doesn't get called after closing a workspace. I'm using this to display the current workspace in the right status of the tabline, as well as other things, but this is making it freeze, displaying wrong information
log line executing update-status should continue to be logged
right status should be updated to display default again
Logs
No response
Anything else?
I'm able to reproduce this behaviour consistently as long as I only do the listed steps. If I do something else in between I get mixed results: sometimes it works as expected, sometimes it freezes the right-status.
The text was updated successfully, but these errors were encountered:
What Operating System(s) are you seeing this problem on?
macOS
Which Wayland compositor or X11 Window manager(s) are you using?
No response
WezTerm version
20241015-083151-9ddca7bd
Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?
Yes, and I updated the version box above to show the version of the nightly that I tried
Describe the bug
The update-status event callback doesn't get called after closing a workspace. I'm using this to display the current workspace in the right status of the tabline, as well as other things, but this is making it freeze, displaying wrong information
To Reproduce
Steps:
exit
command on the shellConfiguration
local wezterm = require("wezterm")
local config = wezterm.config_builder()
wezterm.on("update-status", function(window, _)
wezterm.log_info("executing update-status")
window:set_right_status(wezterm.format({
{ Text = " " .. window:active_workspace() .. " " },
}))
end)
return config
Expected Behavior
executing update-status
should continue to be loggeddefault
againLogs
No response
Anything else?
I'm able to reproduce this behaviour consistently as long as I only do the listed steps. If I do something else in between I get mixed results: sometimes it works as expected, sometimes it freezes the right-status.
The text was updated successfully, but these errors were encountered: