判断 Emacs 是否在图形环境中的正确方法

Posted Emacs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断 Emacs 是否在图形环境中的正确方法相关的知识,希望对你有一定的参考价值。

有些时候我们会需要判断Emacs是运行在图形环境下还是纯文本环境下的。

我之前用的方法都是通过调用 (display-graphic-p) 来判断的,然而最近发现这种方案在处理 emacs --daemon 时是有问题的。

我们可以做个实验。

在图形环境中启动 emacs --daemon, 这时尚未有frame存在,我们在terminator中执行

emacsclient --eval '(display-graphic-p)'

会发现结果为nil

然后我们运行 emacsclient -c -n 启动一个emacsclient frame,再次执行

emacsclient --eval '(display-graphic-p)'

会发现结果为t

其实这种情况也好理解,用 C-h f display-graphic-p 查看该函数的说明如下:

display-graphic-p is a compiled Lisp function in ‘frame.el’.

(display-graphic-p &optional DISPLAY)

Return non-nil if DISPLAY is a graphic display.
Graphical displays are those which are capable of displaying several
frames and several different fonts at once.  This is true for displays
that use a window system such as X, and false for text-only terminals.
DISPLAY can be a display name, a frame, or nil (meaning the selected
frame’s display).

也就是说,DISPLAY为nil时会返回当前frame的显示属性,然而刚启动 emacs --daemon 时,会产生一个frame,且这个frame是处于纯文本环境中的

$ emacsclient --eval '(frame-list)'
# (#<frame F1 0xc4bed0>)
$ emacsclient --eval '(display-graphic-p (car (frame-list)))'
# nil

而比较奇怪的是,我试着执行

(display-graphic-p ":0")

发现会提示错误”Display :0.0 does not exist”.

不过,其实当我们跳出Emacs来考虑这个问题,问题就变得简单了。

启动X时,一般都会设置环境变量 DISPLAY,而纯文本环境下这个环境变量的值一般为空,所以我们可以通过判断 DISPLAY 的值来确定当前环境是否为图形环境。

(defun graphic-p ()
  "判断当前环境是否为图形环境"
  (getenv "DISPLAY"))

本期编辑:geekplux & aborn

欢迎投稿

投稿方式有以下两种(推荐第一种):

  1. 向该项目提交 Pull Request (投稿的文章请放在 tougao/这个目录下);

  2. 发邮件到投稿邮箱:860202632@qq.com; geekplux@gmail.com; aborn@aborn.me (建议以 org 文档附件形式投稿)。

投稿时请:

  • 注明你的昵称,或 ID,总之是你想显示的作者名;

  • 如投稿的文章已经再其他地方发表,可以附上原文链接

以上是关于判断 Emacs 是否在图形环境中的正确方法的主要内容,如果未能解决你的问题,请参考以下文章

在 emacs lisp 中将多个路径组件加入到单个完整路径中的正确方法是啥?

判断应用是否具有某个权限(例如获取手机联系人的权限)

在开发基于组件/环的应用程序时使用emacs / cider的正确方法是什么?

终端 Emacs 中的真彩色(24 位)

Clojure 中的 Java 输入(读取行)在 Emacs 中无法正确读取

在开发基于 compojure/ring 的应用程序时使用 emacs/cider 的正确方法是啥?