Sort completions in columns instead of rows #267
-
What do you want?Sort completions in columns instead of rows Why do you want this?Easier on the eyes. Who else would benefit from this?Probably everyone. Explain in detail how you would expect this to workGiven the following situation:Type in a command with a large list of possible completions. When I perform the following steps:Tab through the completions. Then I expect the following to happen:The completions are iterated in columns instead of rows, it's qute hard to parse visually as of right now. Screen.Recording.2021-05-20.at.14.22.43.mov |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Add to your zstyle ':completion:*:*' list-rows-first no However, please be aware that this worsens |
Beta Was this translation helpful? Give feedback.
Add to your
.zshrc
file:zstyle ':completion:*:*' list-rows-first no
However, please be aware that this worsens
zsh-autocomplete
's ability to estimate how many completions can fit on screen. If you enable this feature, you might run into the occasionalzsh: do you wish to see all 71 possibilities (73 lines)?
eating some of the keys you type. Caveat emptor.