diff options
author | Roland McGrath <roland@gnu.org> | 1992-07-02 02:36:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1992-07-02 02:36:29 +0000 |
commit | 35aaf00cff31d60c5d1a06a7db872d1facb5a8b5 (patch) | |
tree | fbb159010e7bfc3ca9fca2fa7ca358db27beaca2 /lisp/buff-menu.el | |
parent | 94d7c01aae32fcedca09c23baa0cf4d02f177455 (diff) | |
download | emacs-35aaf00cff31d60c5d1a06a7db872d1facb5a8b5.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/buff-menu.el')
-rw-r--r-- | lisp/buff-menu.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 371bb586d80..6682f42c682 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el @@ -1,12 +1,12 @@ ;;; buff-menu.el --- buffer menu main function and support functions. -;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 1, or (at your option) +;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, @@ -33,6 +33,7 @@ (define-key Buffer-menu-mode-map "1" 'Buffer-menu-1-window) (define-key Buffer-menu-mode-map "f" 'Buffer-menu-this-window) (define-key Buffer-menu-mode-map "o" 'Buffer-menu-other-window) + (define-key Buffer-menu-mode-map "\C-o" 'Buffer-menu-switch-other-window) (define-key Buffer-menu-mode-map "s" 'Buffer-menu-save) (define-key Buffer-menu-mode-map "d" 'Buffer-menu-delete) (define-key Buffer-menu-mode-map "k" 'Buffer-menu-delete) @@ -66,6 +67,7 @@ Letters do not insert themselves; instead, they are commands. \\[Buffer-menu-this-window] -- select that buffer in place of the buffer menu buffer. \\[Buffer-menu-other-window] -- select that buffer in another window, so the buffer menu buffer remains visible in its window. +\\[Buffer-menu-switch-other-window] -- switch the other window to this buffer. \\[Buffer-menu-visit-tags-table] -- visit-tags-table this buffer. \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer. \\[Buffer-menu-save] -- mark that buffer to be saved, and move down. @@ -274,6 +276,12 @@ You can mark buffers with the \\<Buffer-menu-mode-map>\\[Buffer-menu-mark] comma (interactive) (switch-to-buffer-other-window (Buffer-menu-buffer t))) +(defun Buffer-menu-switch-other-window () + "Make the other window select this line's buffer. +The current window remains selected." + (interactive) + (display-buffer (Buffer-menu-buffer t))) + (defun Buffer-menu-2-window () "Select this line's buffer, with previous buffer in second window." (interactive) |