5

这是已经提到的问题的一些变体,但我无法弄清楚究竟是什么。

我的框架分为三个窗口:

----------------
|       |      |
|       |------|
|       |shell |
----------------

当我输入 shell 时,我会使用“tab”来完成。它们出现在左侧的窗口中。然后emacs不会关闭缓冲区,而是关闭整个窗口,我只剩下一个水平分割的屏幕:

----------------
|              |
|--------------|
| shell        |
----------------

我不确定我是否了解如何阻止这种情况发生,而且我记得这不是一个问题。我的拙劣尝试设法达到了 emacs 根本不会关闭完成建议缓冲区的状态,但这也不理想。

我该怎么做才能让emacs正常关闭完成缓冲区,但不理会我的窗口?

4

1 回答 1

5

M-x 专用模式

;; This minor mode allows you to toggle a window's "dedicated" flag.
;; When a window is "dedicated", Emacs will not select files into that
;; window. This can be quite handy since many commands will use
;; another window to show results (e.g., compilation mode, starting
;; info, etc.) A dedicated window won't be used for such a purpose.
;;
;; Dedicated buffers will have "D" shown in the mode line.
于 2012-07-28T23:21:33.457 回答