Menu Scroll with Limited Amount of Lines #699
-
I'd like a combination of settings in ~/.zshrc like
Where the second setting makes pressing the up arrow on the first suggestion (10th from the bottom) will continue to the previous suggestion (i.e. 11th one) instead of circling back to start. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
As mentioned in the Readme, this will let you scroll up to 2000 lines backward: zstyle ':autocomplete:history-search-backward:*' list-lines 2000 You could even decide to make it scroll through all of history: zstyle -e ':autocomplete:history-search-backward:*' list-lines '$HISTSIZE' However, depending on the actual number of items in your history, this can be extremely slow. That is, unfortunately, a limitation of Zsh and there's not much I can do about it. |
Beta Was this translation helpful? Give feedback.
Sorry, not natively possible in Zsh