当我在emacs中处于全屏模式时,我有一个小问题,如何恢复到默认模式,更多解释这是我的问题。
在我想将它减小到默认或正常模式(大小)之后,我使用 emacs -fs filename.txt 以全屏模式打开一个文件。非常感谢您的帮助和您的时间,我非常感谢
当我在emacs中处于全屏模式时,我有一个小问题,如何恢复到默认模式,更多解释这是我的问题。
在我想将它减小到默认或正常模式(大小)之后,我使用 emacs -fs filename.txt 以全屏模式打开一个文件。非常感谢您的帮助和您的时间,我非常感谢
前几天我在 EmacsWiki 上发现了这个:
(defun toggle-fullscreen ()
"Toggle full screen"
(interactive)
(set-frame-parameter
nil 'fullscreen
(when (not (frame-parameter nil 'fullscreen)) 'fullboth)))
F11 - 切换全屏模式。
您可以通过评估以下代码来恢复帧的全屏参数:
(modify-frame-parameters (selected-frame) '((fullscreen . nil)))
您也可以通过编程方式修改当前帧的大小
(set-frame-size (selected-frame) COLS ROWS)
只要属性 fullscreen 之前已设置为 nil。