all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Automatically move cursor to end of shell-mode buffer on M-p / M-n
@ 2015-02-24 15:50 Andrew Pennebaker
  2015-02-25  1:30 ` Robert Thorpe
  2015-02-25 13:51 ` J. David Boyd
  0 siblings, 2 replies; 5+ messages in thread
From: Andrew Pennebaker @ 2015-02-24 15:50 UTC (permalink / raw)
  To: Emacs Help

As a shell user, I want shell-mode M-p / M-n to automatically move my
cursor to the shell prompt, so that shell-mode behaves more intuitively.

Currently, attempting to use M-p / M-n when the cursor is not at the
prompt, results in a warning message. I think we can make shell-mode behave
more intuitively.

I have a workaround for this in my .emacs:

;; Automatically move cursor to prompt on shell up/down
(add-hook 'shell-mode-hook
          (lambda ()
            (define-key comint-mode-map (kbd "M-p")
              (lambda (arg)
                (interactive "*p")
                (goto-char (point-max))
                (comint-previous-input arg)))
            (define-key comint-mode-map (kbd "M-n")
              (lambda (arg)
                (interactive "*p")
                (goto-char (point-max))
                (comint-next-input arg)))))

In the next version of Emacs, could we bake this behavior in, so that
shell-mode behaves more intuitively?


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-02-25 15:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-24 15:50 Automatically move cursor to end of shell-mode buffer on M-p / M-n Andrew Pennebaker
2015-02-25  1:30 ` Robert Thorpe
2015-02-25  3:04   ` John Mastro
2015-02-25 13:51 ` J. David Boyd
2015-02-25 15:15   ` Andrew Pennebaker

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.