Is there any way to disable "all matches"? #265
-
"All matches" will redundantly suggest what's already been suggested. Ex:
Is there any way to avoid the same options cluttering the suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
It's not redundant per sé (even though it might be to you personally): It shows you that you can press Shift-Tab to insert all of the matches listed (instead of just one). 🙂 Anyway… No, hiding that is currently not possible. But feel free to open a feature request for it. |
Beta Was this translation helpful? Give feedback.
-
I just discovered that this is, in fact, already possible through Zsh's completion system. The following hides both types of Shift-Tab completions, but without disabling them: zstyle ':completion:*:all-matches' hidden all
zstyle ':completion:*:unambiguous' hidden all |
Beta Was this translation helpful? Give feedback.
I just discovered that this is, in fact, already possible through Zsh's completion system. The following hides both types of Shift-Tab completions, but without disabling them: