mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-24 19:03:29 +00:00
*** empty log message ***
This commit is contained in:
parent
94d7c01aae
commit
35aaf00cff
@ -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)
|
||||
|
@ -1390,6 +1390,7 @@ With prefix arg, silently save all file-visiting buffers, then kill."
|
||||
(define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
|
||||
(define-key ctl-x-4-map "\C-f" 'find-file-other-window)
|
||||
(define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
|
||||
(define-key ctl-x-4-map "o" 'display-buffer)
|
||||
|
||||
(define-key ctl-x-5-map "b" 'switch-to-buffer-other-screen)
|
||||
(define-key ctl-x-5-map "f" 'find-file-other-screen)
|
||||
|
@ -1471,7 +1471,8 @@ before each command.")
|
||||
return window;
|
||||
}
|
||||
|
||||
DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 2, 0,
|
||||
DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 2,
|
||||
"BDisplay buffer:\nP",
|
||||
"Make BUFFER appear in some window but don't select it.\n\
|
||||
BUFFER can be a buffer or a buffer name.\n\
|
||||
If BUFFER is shown already in some window, just use that one,\n\
|
||||
|
Loading…
Reference in New Issue
Block a user