help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Issues running shell/tshell


From: Kevin Rodgers
Subject: Re: Issues running shell/tshell
Date: Fri, 30 Sep 2005 09:57:58 -0600
User-agent: Mozilla Thunderbird 0.9 (X11/20041105)

aizenman@gmail.com wrote:
> I'd like to run a shell in emacs because I hear that it's so damn cool
> :-) But both shell options (shell and tshell) have their issues that
> make them unuseable.  Does anyone know the solutions?
>
> -shell-
> I'd like to be able to use up and down arrow to get history.  Is there
> perhaps a line I can put in my .emacs to give me that option?

History is available in the *shell* buffer via M-p and M-n.  The up and
down arrows move point up and down, as usual, but you can change their
default bindings like this:

(add-hook 'shell-mode-hook
          (lambda ()
            (local-set-key (kbd "<up>") 'comint-previous-input)
            (local-set-key (kbd "<down>") 'comint-next-input)))

--
Kevin Rodgers





reply via email to

[Prev in Thread] Current Thread [Next in Thread]