Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: New to zsh, question about bindkey to history-incremental-search-backward



On Aug 6,  3:27pm, Alex Clark wrote:
}
} http://pastie.org/574171

Your trouble is right here:

----
bindkey "^r" history-incremental-search-backward

set -o vi
----

The bindkey command installs the binding in the current keymap, which
is the emacs mode keymap.  You then switch keymaps to vi mode.

Reverse the order of those two statements.



Messages sorted by: Reverse Date, Date, Thread, Author