Left status session text is truncated #496
-
When putting the session module to the left of the status line, the module can only contain a few characters before being truncated. The window tabs are displayed already even when the session text is not printed yet fully. How can I configure this to show the full text?
Short text is displayed comp
Here's a complete
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Beta Was this translation helpful? Give feedback.
-
Wait, why are you using this plugin at all? You're not using the colors, so just do something like:
|
Beta Was this translation helpful? Give feedback.
From the readme:
set -g status-left-length 100
Also please check out the troubleshooting guide to fix up your config
FYI the line
set -ga terminal-overrides ",tmux-256color:RGB"
is useless, it won't work because your real terminal is not tmux. Set it toset -ga terminal-features ",*:RGB"
(you also don't need the Tc override either, Tc is a private tmux terminfo extension but RGB should be used instead)