gpt4 book ai didi

Emacs -fs(全屏)

转载 作者:行者123 更新时间:2023-12-01 10:12:15 26 4
gpt4 key购买 nike

我正在尝试在全屏模式下使用 emacs 并使用合适的字体。我有一台运行 Ubuntu 的基于 nvidia 的笔记本电脑。首次加载时,字体很大,认为是 16pt 字体。我使用菜单选项设置了合适的字体(8pt)。

现在,当我在全屏模式下运行 emacs 时,它会针对巨大的字体调整窗口类型,然后加载我的 8pt 字体。现在我屏幕的一半是迷你缓冲区。如何正确设置字体以便我可以使用全屏模式。

我已经尝试在我的 x 配置中指定显示大小,但 X 没有启动。我听说您还需要为 nvidia 驱动程序做一些其他事情...但不确定它是如何工作的。

最佳答案

我在我的 .emacs 中使用以下内容(来自 http://www.emacswiki.org/emacs/FullScreen):

(defun toggle-fullscreen (&optional f)
(interactive)
(let ((current-value (frame-parameter nil 'fullscreen)))
(set-frame-parameter nil 'fullscreen
(if (equal 'fullboth current-value)
(if (boundp 'old-fullscreen) old-fullscreen nil)
(progn (setq old-fullscreen current-value)
'fullboth)))))

(global-set-key [f11] 'toggle-fullscreen)

;; Make new frames fullscreen by default. Note: this hook doesn't do
;; anything to the initial frame if it's in your .emacs, since that file is
;; read _after_ the initial frame is created.
(add-hook 'after-make-frame-functions 'toggle-fullscreen)

然后 F11 将打开/关闭全屏。

关于Emacs -fs(全屏),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4215864/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com