-
For example, when Neovim is open, the scrollbar is not particularly useful. |
Beta Was this translation helpful? Give feedback.
Answered by
wez
Oct 7, 2022
Replies: 1 comment 2 replies
-
You could do something like: wezterm.on('update-status', function(window, pane)
local overrides = window:get_config_overrides() or {}
overrides.enable_scroll_bar = not pane:is_alt_screen_active()
window:set_config_overrides(overrides)
end) See also: |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
paveloom
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could do something like:
See also: