Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: History problem
- X-seq: zsh-users 4686
- From: Wayne Davison <wayned@xxxxxxxxxxxxxxxxxxxxx>
- To: Robert Rendler <caffeinated@xxxxxxxxxxxxxxxx>
- Subject: Re: History problem
- Date: Fri, 22 Feb 2002 19:28:21 -0800 (PST)
- Cc: <zsh-users@xxxxxxxxxx>
- In-reply-to: <20020223131126.6c7b42bd.caffeinated@xxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
On Sat, 23 Feb 2002, Robert Rendler wrote:
> When I go into the history the prompt begins at the beginning of the
> command
Check the output of "bindkey" -- something has set up-arrow (or whatever
key you pressed) to a binding other than up-line-or-history (such as
history-beginning-search-backward). It sounds like you may have some
global-rc-file settings affecting your shell (look for /etc/zshrc, for
instance). There are a number of ways to fix this, including just
adding your own bindkey commands to your .zshrc:
bindkey "^P" up-line-or-history
bindkey "^[OA" up-line-or-history
..wayne..
Messages sorted by:
Reverse Date,
Date,
Thread,
Author