如何减少emacs中的全屏模式

时间:2013-09-12 08:33:01

标签: emacs fullscreen

当我在emacs中处于全屏模式时,我有一点问题,怎么可能 返回默认模式,更多解释这是我的问题。

在想要将其缩小为默认模式或正常模式(大小)之后,我使用emacs -fs filename.txt以全屏模式打开文件。非常感谢你的帮助和时间,我非常感激

3 个答案:

答案 0 :(得分:1)

前几天我发现了on EmacsWiki

(defun toggle-fullscreen ()
  "Toggle full screen"
  (interactive)
  (set-frame-parameter
     nil 'fullscreen
     (when (not (frame-parameter nil 'fullscreen)) 'fullboth)))

答案 1 :(得分:1)

F11-切换全屏模式。

答案 2 :(得分:0)

您可以通过以下代码来恢复帧的全屏参数:

(modify-frame-parameters (selected-frame) '((fullscreen . nil)))

您也可以使用

以编程方式修改当前帧的大小
 (set-frame-size (selected-frame) COLS ROWS)

只要属性全屏在之前设置为nil。