21

当我在终端中打开一个框架时,我希望 emacs 没有背景颜色。我正在使用具有半透明背景的终端,并且具有背景颜色的字符不是“透视”的。术语设置为“xterm-256color”。

当框架不是图形时,如何让 emacs 使用默认背景颜色(根本没有颜色)?

编辑: 我明白了,有点:

(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
(load-theme 'my-awesome-theme t)

(defun on-frame-open (frame)
  (if (not (display-graphic-p frame))
    (set-face-background 'default "unspecified-bg" frame)))
(on-frame-open (selected-frame))
(add-hook 'after-make-frame-functions 'on-frame-open)

我将上面的代码放在我的初始化文件中,但仅在终端中打开 emacsclient 时才抑制背景,而不是 emacs 本身(即仅在使用时调用emacsclient -t而不是在使用时调用emacs)。添加额外(unless window-system (set-face-background 'default "unspecified-bg" (selected-frame)))内容不起作用,只会混淆图形框架。

关于为什么会发生这种情况的任何想法?

4

3 回答 3

33
(defun on-after-init ()
  (unless (display-graphic-p (selected-frame))
    (set-face-background 'default "unspecified-bg" (selected-frame))))

(add-hook 'window-setup-hook 'on-after-init)

结合您编辑中的代码,它对我来说非常适用于 emacsterms 和新启动的 emacsen。至于为什么window-setup-hookhttp ://www.gnu.org/software/emacs/manual/html_node/elisp/Startup-Summary.html

(除了这个,早期的钩子似乎都不起作用。)

于 2013-11-27T03:58:33.303 回答
5

我尝试了这个答案中建议的方法,但我没有运气让它工作。这个片段对我有用

(defun on-frame-open (&optional frame)
  "If the FRAME created in terminal don't load background color."
  (unless (display-graphic-p frame)
    (set-face-background 'default "unspecified-bg" frame)))

(add-hook 'after-make-frame-functions 'on-frame-open)

虽然它有一个挫折,但如果终端的背景设置与我使用的主题(深色与浅色)不同,则会使用默认主题面,这在浅色或深色背景上可能看起来不太好。但在我的情况下,终端和主题都是黑暗的,它工作正常。

于 2015-10-23T09:13:12.193 回答
3

这个问题已经有两个答案,一个using window-setup-hook,在启动时调用,另一个using after-make-frame-functions,在创建新框架时调用,包括在调用之后调用emacsclient。为了涵盖所有可能的情况,我发现我需要这样做:

(defun set-background-for-terminal (&optional frame)
  (or frame (setq frame (selected-frame)))
  "unsets the background color in terminal mode"
  (unless (display-graphic-p frame)
    (set-face-background 'default "unspecified-bg" frame)))
(add-hook 'after-make-frame-functions 'set-background-for-terminal)
(add-hook 'window-setup-hook 'set-background-for-terminal)

请注意,我仅selected-frame在必要时使用;似乎在客户端模式下,在选择框架之前调用了钩子,因此在这种情况下使用框架参数很重要。

于 2018-09-12T17:18:31.770 回答