gpt4 book ai didi

emacs - 在 Emacs 中哪里输入一段代码?

转载 作者:行者123 更新时间:2023-12-02 12:34:09 26 4
gpt4 key购买 nike

我刚刚开始使用 Emacs 来编辑 Latex 文档。我被 Emacs 所吸引,因为我希望能够自定义语法突出显示,甚至定义特定单词的颜色。我是 Emacs 新手,不是程序员,所以我在做我想做的事情时遇到了极大的困难,因为我发现大多数帮助都假设了我的水平的太多知识(我花了几天时间才能够安装 emacs + auctex 和更改第一个面的颜色)。

我发现了一些我认为对我有帮助的东西,但我不知道该怎么做。下面的帖子是我想做的,但是我应该用这段代码做什么?我应该在哪里插入或在哪里输入?我在 Windows 中使用 GNU Emacs。非常感谢您的帮助:)

M-x what-face

will print the face found at the current point. And the code for that is:

(defun what-face (pos)   
(interactive "d")
(let ((face (or (get-char-property (point) 'read-face-name)
(get-char-property (point) 'face))))
(if face (message "Face: %s" face) (message "No face at %d" pos))))

顺便说一句,我在另一篇文章中发现了这一点,可以在这里找到: Get font face under cursor in Emacs

最佳答案

最简单的选择是将其放在 ~/.emacs 中,该文件在 emacs 启动时运行。

关于emacs - 在 Emacs 中哪里输入一段代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2887071/

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