zsh-users / zsh-autosuggestions

Fish-like autosuggestions for zsh
MIT License
31.11k stars 1.86k forks source link

zsh-autosuggestions breaks "zstyle completion menu select" highlighting #201

Open daniele-orlando opened 7 years ago

daniele-orlando commented 7 years ago

What's the expected behavior:

Enabling zsh-autosuggestions should work with the zstyle ':completion:*' menu select. Pressing multiple time tab after a command should highlight the current selection.

What's happening instead:

Pressing multiple time tab after a command, a completion is selected in the command line but it is not highlighted in the completion menu.

terkelg commented 7 years ago

I have the same issue. Did you find a solution?

japborst commented 6 years ago

Don't have the issue here using zsh 5.4.2 on Ubuntu 18.04.1. Is it still present in your case?

EtherealRise commented 5 years ago

This is what problem i have yet.As the picture below, the menu is gray... i hope someone can help me work out cause i love this plug :) screen shot 2018-11-11 at 17 22 10

reedts commented 4 years ago

Just to revive this, I still have the same issue. Did anyone of you find a solution?

joaomantovani commented 4 years ago

@reedts this fixed for me:

https://unix.stackexchange.com/questions/267551/how-can-i-configure-zsh-completion-to-launch-a-menu-for-command-options

Also my .zshrc

CASE_SENSITIVE="false"
setopt MENU_COMPLETE
setopt no_list_ambiguous

autoload -Uz compinit
compinit
zstyle ':completion:*' menu yes select
reedts commented 4 years ago

@joaomantovani Thanks! Got it working now.