Emacsが新しいバッファを開くウィンドウを制御する方法はありますか?


12

私はemacsでsr-speedbarを使用しており、フレームを2〜3つの異なるウィンドウに分割することがよくあります。また、sr-speedbarでファイルをクリックすると、常に最下部のウィンドウで新しいバッファーが開きます。右下のウィンドウを比較的小さいANSI用語として保持しようとしています。emacsは、バッファーの編集に使用するはるかに広い領域ではなく、小さな用語ウィンドウで新しいバッファーを開くことを要求し続けます。

バッファ作成ロジックを構成して、低いウィンドウよりも高いウィンドウを優先する方法はありますか?

私はすでに最下部のウィンドウを取り、それを保護されているものとしてマークしようとしました、そしてそれはちょうどemacsがそれを2つの不当に小さな部分に分割しただけです。次に、window-size-fixedを有効にしてみましたが、emacsがそのウィンドウの上のバッファーを開くようにする代わりに、ウィンドウが小さすぎて分割できないというエラーが表示されました。良かったのは、一番下のウィンドウを壊さなくなったと思いますが、代わりに新しいバッファを開くことができなくなったとは言えません。

理想的には、emacsが右下のウィンドウを分割しようとするのではなく、新しく作成されたバッファーを表示するために右上のウィンドウを強制的に選択できるようにしたいです。


良い質問です。誰かが答えを出してくれるといいのですが。
cpoile 2013

@cpoileやった!私の答えを見てください。
アーロンミラー

回答:


8

私はあなたがEmacs 24を使っていると思います。以前のバージョンではこの回答をテストしていません。また、専用ウィンドウの概念がEmacsにいつ追加されたかはわかりません。2011年以降の使用についての言及を見たことがあるので、(少なくとも)Emacs 23にも機能があると思います。

ウィンドウをそのバッファ専用にすることで、Emacsが特定のウィンドウで新しいバッファを開かないようにすることができます

最も単純なケースでは、専用にするウィンドウを選択し、専用のバッファが現在表示されていることを確認してから、これを行うことができますM-: (set-window-dedicated-p (selected-window) t)。これにより、バッファを表示するウィンドウを決定するときに、変更されたウィンドウをEmacsが考慮しないようにします。献身を削除するには、同じ式を評価して、2番目の引数をに置き換えますnil

Emacsが、バッファーローカル変数window-size-fixedをnil以外の値に設定して、特定のバッファーを表示するウィンドウを分割しようとするのを防ぐことができます。

最も単純なケースでは、ウィンドウを選択してを実行することでこれを行うことができますM-: (setq window-size-fixed t)。バッファを表示するウィンドウの高さまたは幅のみを修正するには、同じ式を評価し、2番目の引数として'heightまたは'widthを渡します。制限を解除するには、2番目の引数をに置き換えますnil

一般的なケースでは、ロードパスにドロップして使用できるソリューションハッキングするのに十分興味深い問題が見つかりました(require)

;;; dedicate-windows-manually.el --- Manually (un)dedicate windows

;; Copyright (C) 2013 Aaron Miller
;; <me@aaron-miller.me>

;; This program 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 2 of
;; the License, or (at your option) any later version.

;; This program is distributed in the hope that it will be
;; useful, but WITHOUT ANY WARRANTY; without even the implied
;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; PURPOSE.  See the GNU General Public License for more details.

;; You should have received a copy of the GNU General Public
;; License along with this program; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
;; MA 02111-1307 USA

;;; Commentary:

;; Introduction
;; ============

;; The functions here defined allow you to manually dedicate and
;; undedicate windows, that is, prevent `set-window-buffer' from
;; considering them when selecting a window in which to display a
;; given buffer.

;; Windows dedicated in this fashion will also be protected from
;; splitting by setting `window-size-fixed'.

;; Installation
;; ============

;; Place this file in your load path; then, place the following
;; command somewhere in your initialization file:

;; (require 'dedicate-windows-manually)

;; Now you can use M-x dedicate-window to dedicate the selected window
;; to its currently displayed buffer, M-x undedicate-window to release
;; a dedication so applied, and M-x dedicate-window-toggle to switch
;; between the states.

;; These functions will operate only on manually dedicated or
;; undedicated windows; that is, M-x dedicate-window will not dedicate
;; a window which is already dedicated (i.e. "(window-dedicated-p
;; window) -> t", and M-x undedicate-window will not undedicate a
;; window which was not dedicated by way of M-x dedicate-window.

;; If you find yourself frequently doing M-x dedicate-window-toggle,
;; you might wish to place something like this in your init file:

;; (global-set-key (kbd "C-x 4 C-d") 'dedicate-window-toggle)

;; Bugs:
;; * Changing the lighter string while you have windows dedicated is
;;   probably not a good idea.
;; * I should certainly find a better way to change the mode line.

;;; Code:

(defcustom dedicated-window-lighter-string " [D]"
  "A string, propertized with `dedicated-window-lighter-face', prepended
to the mode line of manually dedicated windows.")

(defvar dedicated-windows-by-hand nil
  "A list of windows known to have been manually dedicated. Windows not
in this list will not be undedicated by `undedicate-window'.")

(defun dedicate-window-was-by-hand-p (window)
  (let ((result nil))
    (loop for w in dedicated-windows-by-hand
          collect (if (eq w window) (setq result t)))
    result))

(defun dedicate-window (&optional window flag)
  "Dedicate a window to its buffer, and prevent it from being split.

Optional argument WINDOW, if non-nil, should specify a window. Otherwise,
or when called interactively, the currently selected window is used.

Optional argument FLAG, if non-nil, will be passed verbatim to
`set-window-dedicated-p'."
  (interactive nil)
  (if (eq nil window) (setq window (selected-window)))
  (if (eq nil flag) (setq flag t))
  (if (window-dedicated-p window)
      (message "Window is already dedicated.")
    (progn
      (add-to-list 'dedicated-windows-by-hand window)
      (setq mode-line-format
            (append `(,dedicated-window-lighter-string) mode-line-format))
      (setq window-size-fixed t)
      (set-window-dedicated-p window flag))))

(defun undedicate-window (&optional window)
  "Un-dedicate a window from its buffer.

Optional argument WINDOW, if non-nil, should specify a window listed in
`dedicated-windows-by-hand'. Otherwise, or when called interactively,
the currently selected window is used.

If WINDOW is not in `dedicated-windows-by-hand', a complaint will be
issued and nothing will be done."
  (interactive nil)
  (if (eq nil window) (setq window (selected-window)))
  (if (not (window-dedicated-p window))
      (message "Window is not dedicated.")
    (if (not (dedicate-window-was-by-hand-p window))
        (message "Window is not dedicated by hand.")
      (progn
        (setq dedicated-windows-by-hand
              (remove window dedicated-windows-by-hand))
        (setq mode-line-format
              (remove dedicated-window-lighter-string mode-line-format))
        (setq window-size-fixed nil)
        (set-window-dedicated-p window nil)))))

(defun dedicate-window-toggle (&optional window)
  "Toggle a window's manual buffer dedication state.

Optional argument WINDOW, if non-nil, should specify a window. Otherwise,
or when called interactively, the value of `selected-window' is used."
  (interactive nil)
  (if (eq nil window) (setq window (selected-window)))
  (if (window-dedicated-p window)
      (undedicate-window window)
    (dedicate-window window)))

(provide 'dedicate-windows-manually)

;;; dedicate-windows-manually.el ends here

4

最近のEmacsリリースでは、オプションdisplay-buffer-alistが追加されました。バッファの表示、使用するウィンドウなどをきめ細かく制御できます。ただし、非常に多くのことを実行できるため、説明が非常に複雑で難しいです。ドキュメントを参照してください:C-h v display-buffer-alist

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.