Replies: 1 comment 1 reply
-
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.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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.
Is there an option for that?
Beta Was this translation helpful? Give feedback.
All reactions