ZSH_AUTOSUGGEST_CLEAR_WIDGETS shows on clear command #464
-
Hi everyone, The fact that it tries autocompleting clear to ZSH_AUTOSUGGEST_CLEAR_WIDGETS= really bothers me. Is there any way I can turn this off? |
Beta Was this translation helpful? Give feedback.
Answered by
marlonrichert
Aug 11, 2022
Replies: 1 comment
-
Normally, Autocomplete does not show any command completions that match the current word on the command line exactly. To disable this, add to your zstyle ':completion:*:-command-:*' ignore-line no For those cases where you don't want this behavior, just press CtrlSpace to reveal all possible completions. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
marlonrichert
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Normally, Autocomplete does not show any command completions that match the current word on the command line exactly.
To disable this, add to your
.zshrc
file after sourcing Zsh Autocomplete:zstyle ':completion:*:-command-:*' ignore-line no
For those cases where you don't want this behavior, just press CtrlSpace to reveal all possible completions.