zsh-autosuggestions
zsh-autosuggestions copied to clipboard
Ubuntu 20.4 terminal the suggestion text color is the same as terminal tex
Ubuntu 20.4 terminal the suggestion text color is the same as terminal text
To Reproduce
freshly installed zsh, oh_my_zsh, and added zsh-autosuggestions plugin
if I do this It's working fine.
% zsh -df
% source path/to/zsh-autosuggestions.zsh
Expected behavior
default color should be dark gray
Screenshots
Desktop
- OS + distribution: Ubuntu 20.04
- Zsh version: 5.8
- Plugin version: commit ae315ded4dba10685dbbafbfa2ff3c1aefeb490d (HEAD -> master, tag: v0.6.4)
Additional context
Thank you
Same thing happens to me with tmux
Check with the command echotc Co
, "it indicates a limit on the number of colours which will be enforced by the line editor." (cit).
If it return 8
you can use only black, red, green, yellow, blue, magenta, cyan and white
as foreground colors in ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE
variable: ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=blue"
edit:
my solution was to set TERM=xterm-256color
in .zshrc' file, before setting the fg color:
TERM=xterm-256color
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=8"
Worked for me
Didn't work for me on iTerm with p10k and oh my zsh.
echotc Co
is giving me 256.
My config has
TERM=xterm-256color
zle_highlight+=(paste:none)
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=241,bold,underline"
It works when I open a new tab, but when I then run source ~/.zshrc
in the same tab it loses the autosuggestion color and looks similar to the original screenshot.
Do you happen to have the FORCE_FLOAT
option set? See my issue #565 , where I solved my problem with this by simply unsetting this option.
Unfortunately not, I just checked any and all zsh config I could find if FORCE_FLOAT
is set anywhere and also checked setopt
after sourcing ~/.zshrc
and it's not set. Similarly, unsetopt FORCE_FLOAT
does nothing in ways of resolving the issue for me.
I'm having the same issue with macOS and iTerm2
It works when I open a new tab, but when I then run source ~/.zshrc in the same tab it loses the autosuggestion color and looks similar to the original screenshot."
same issue for me on Ubuntu 18.04.5, zsh 5.4.2
same issue here with gnoe-terminal on manjaro, after resourcing the suggestions become solid
Could this issue be a duplicate of #538 ? I just checked #538 and saw some solutions in the discussion there Btw, this problem seems already mentioned at the GitHub main page of powerlevel10k
Hi, I have the same issue in macOS too.
MacOS: 12.4
zsh: 5.9
Hi, I have the same issue in macOS too.
MacOS: 12.4 zsh: 5.9
same issue when i update to macos 12.4
Hi, I have the same issue in macOS too.
MacOS: 12.4 zsh: 5.9
same issue when i update to macos 12.4
upgrade zsh-syntax-highlighting
solved this problem
example:
cd $ZSH/custom/plugins/zsh-syntax-highlighting
git pull