You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zle, the line editor from zsh offers two main modes to browse history:
the one emulated in histdb-interactive.zsh, inspired of bash CTRL + R interactive search
a more concise syntax from tcsh world "up-line-or-beginning-search" and "down-line-or-beginning-search" where you can search by writing the first letters of your query, then [up] key (or down to scroll back)
To emulate that we would need a function allowing to open the query buffer through _histdb_isearch_query then directly do the _histdb-isearch-up without ofering any special interactive mode.
The text was updated successfully, but these errors were encountered:
Zle, the line editor from zsh offers two main modes to browse history:
Reference: https://github.com/zsh-users/zsh/blob/master/Functions/Zle/up-line-or-beginning-search
Could zsh-histdb support that mode?
To emulate that we would need a function allowing to open the query buffer through _histdb_isearch_query then directly do the _histdb-isearch-up without ofering any special interactive mode.
The text was updated successfully, but these errors were encountered: