linux – 如何将emacsclient后台设置为Emacs后台?
作者:互联网
我有(在我的.emacs中)
(set-background-color "#101416")
(set-foreground-color "#f6f3e8")
我有2个绑定:
alias ex='emacsclient -nw'
alias ec='emacsclient -c -a ""'
ex工作正常在终端打开客户端,但当我想打开它作为一个框架我有白色背景:(
为什么以及如何在那里使用我的深色背景?
解决方法:
set-background-color和set-foreground-color仅影响当前帧,运行emacsclient时不执行.emacs文件.
尝试设置变量default-frame-alist(“用于创建帧的默认值的Alist”):
(setq default-frame-alist '((background-color . "#101416") (foreground-color . "#f6f3e8")))
标签:linux,emacs,elisp,emacsclient 来源: https://codeday.me/bug/20190621/1251096.html