如何在 .emacs 文件中检测 Cocoa Emacs?

发布于 2024-12-03 14:24:23 字数 88 浏览 3 评论 0原文

我如何(从 .emacs 内部)判断 Emacs 版本是否是 Cocoa?我只希望一些配置选项在 Cocoa Emacs 中加载时应用,而不是在命令行版本中应用。

How can I tell (from inside of .emacs) whether or not the Emacs version is Cocoa? I only want some configuration options to apply when they are loaded in Cocoa Emacs and not in the command-line version.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝礼 2024-12-10 14:24:23

尝试 (featurep 'ns) 检查 NextStep emacs 功能。另请参阅Ch v window-system,可以检查该变量是否为'ns

Try (featurep 'ns) to check for the NextStep emacs feature. See also C-h v window-system, can check if that variable is 'ns.

自找没趣 2024-12-10 14:24:23

执行类似于以下内容的操作就足够了:

要查看您是否在 Mac 上并且不在命令行版本中运行:

(when (and (eq system-type 'darwin) window-system)
  (setq my-option "cocoa"))

要查看您是否在 Mac 上并且正在命令行版本中运行:

(when (and (eq system-type 'darwin) (not window-system))
  (setq my-option "command-line"))

编辑:我编辑了答案以检查 Mac(系统类型)而不是命令行(窗口系统)。

It's sufficient to do something similar to the following:

To see if you're on a Mac and not running in the command-line version:

(when (and (eq system-type 'darwin) window-system)
  (setq my-option "cocoa"))

To see if you're on a Mac and are running in the command-line version:

(when (and (eq system-type 'darwin) (not window-system))
  (setq my-option "command-line"))

EDIT: I edited my answer to check for both Mac (system-type) and not command-line (window-system).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文