Directory when opening a new shell #308
-
Is there a flag/option to configure showing the current directory listing vs not at all but still maintaining auto-complete based on input? E.g. I open a new tab, prompt is as default without the 'Directory' listing below, but if I type out a directory file or folder, it will provide the autocomplete. |
Beta Was this translation helpful? Give feedback.
Answered by
marlonrichert
Jul 20, 2021
Replies: 1 comment 3 replies
-
Add this to your zstyle ':autocomplete:*' min-input 1 (Old answer)If
and
then local dirs & executables will not be shown at an empty prompt. Failing that, you can override the |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
marlonrichert
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this to your
.zshrc
file:zstyle ':autocomplete:*' min-input 1
(Old answer)
If
.
in your pathand
AUTO_CD
shell option,then local dirs & executables will not be shown at an empty prompt.
Failing that, you can override the
_autocomplete.config.tag-order
function.