Replies: 6 comments 13 replies
-
Hard to do more to help with the limited information provided; if you open an issue using the bug report template and include your configuration that might help to shed more light. |
Beta Was this translation helpful? Give feedback.
-
Here's my config: local wezterm = require 'wezterm'
-- from https://wezfurlong.org/wezterm/config/lua/wezterm.gui/get_appearance.html
function scheme_for_appearance(appearance)
if appearance:find 'Dark' then
-- return 'Builtin Solarized Dark'
-- return "3024 Night"
return "OneHalfDark"
else
-- return 'Builtin Solarized Light'
-- return "3024 Day"
return "OneHalfLight"
end
end
return {
font = wezterm.font 'JetBrains Mono',
color_scheme = scheme_for_appearance(wezterm.gui.get_appearance()),
hide_tab_bar_if_only_one_tab = true,
send_composed_key_when_left_alt_is_pressed = true, -- for accentuated characters
} I don't believe the config is the issue. I can open new tabs in existing windows. I just can't open a new window. |
Beta Was this translation helpful? Give feedback.
-
@wez Here to report the same problem. I did not load any extra files, and a new tab also appears blank until I clear scrollback/screen of the new tab. This only happens on the wezterm window that has many tabs that has many panes within those tabs with a lot of log scrollback. So perhaps it has to do with too much scrollback in those other tabs? |
Beta Was this translation helpful? Give feedback.
-
Reporting the same. Here are the cases I observe: I have several tabs with contents showing just fine. I create a new tab and get a blank pane. The background color is correct, nothing appears. On several occasions I had one pane blank and one pane fully working in a split window. If I run something with TUI (for example, neomutt) in the blank pane the contents of the app appear. Running "ls" doesn't have the same effect. If I exit the app, it goes to the blank pane again. Hope it helps. |
Beta Was this translation helpful? Give feedback.
-
only zshrc loaded |
Beta Was this translation helpful? Give feedback.
-
I'm not sure if this is related, but in my case, sometimes after closing a program (Helix, Lazygit, ...), no prompt appears, and I have to press Enter to make it show. By running WezTerm in debug mode, I found out that
What could be the reason? Is it related to the Fish shell? |
Beta Was this translation helpful? Give feedback.
-
This is the second time this happens to me now. I'm happily using Wezterm on macOS 12.6.3. At times, I try to open a new terminal window, and it simply remains blank. No prompt ever comes up, even though things were working before and I did not update the configuration.
Enabling the debug overlays shows this:
Here is the
wezterm-gui-log
: https://gist.github.com/dpo/3fb74b0dd8d618eb4b2eb4998c302392I'm not sure if this is relevant, but both times this happened, a notice that a Wezterm update is available came up at some point when I opened a new tab. I typically don't update right away because I have quite a bit of ongoing work.
Last time, I updated Wezterm, and it resolved the issue. However, I don't see why not updating should render the terminal unusable.
Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions