在 emacs 中加载 fic-mode

发布于 2024-11-16 13:22:11 字数 463 浏览 2 评论 0原文

这个答案为我提供了我需要的解决方案。对我来说唯一的问题是我必须手动加载它,即 fic-mode。更明确地说,每当我打开一个 c++ 文件时,我必须执行 Mx fic-mode ,然后执行 Mx font-lock-fontify-buffer以便让它真正启动并运行。在我的 .emacs 中,我有

(require 'fic-mode)
(add-hook 'c++-mode-hook '(lambda () (fic-mode 1)))

,但它不起作用。

您对如何使其自动可用有什么建议吗?

This answer gave me the solution I needed. The only problem for me, is that I have to load it, namely fic-mode, manually. More explicitly, whenever I open a c++ file, I have to do M-x fic-mode and then M-x font-lock-fontify-buffer in order to have it really up and running. In my .emacs I have

(require 'fic-mode)
(add-hook 'c++-mode-hook '(lambda () (fic-mode 1)))

but it doesn't do the trick.

Do you have any suggestions how to make it available automatically?

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

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

发布评论

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

评论(1

花开半夏魅人心 2024-11-23 13:22:11

请尝试以下操作:创建一个包含以下三行的新文件:

(setq load-path (cons "/path/to/fic-mode-directory" load-path))
(require 'fic-mode)
(add-hook 'c++-mode-hook 'turn-on-fic-mode)

"/path/to/fic-mode-directory" 替换为保存 fic- 的目录的绝对路径模式.el

然后从命令行运行,

emacs -Q -l /path/to/file

其中 /path/to/file 是上述文件的路径。

现在输入Cx Cf test.cpp

生成的缓冲区中是否打开了小说模式?

Try the following: create a new file containing the following three lines:

(setq load-path (cons "/path/to/fic-mode-directory" load-path))
(require 'fic-mode)
(add-hook 'c++-mode-hook 'turn-on-fic-mode)

Replace "/path/to/fic-mode-directory" with the absolute path to the directory in which you saved fic-mode.el.

Then from the command line, run

emacs -Q -l /path/to/file

where /path/to/file is the path to the above file.

Now type C-x C-f test.cpp.

Is fic-mode turned on in the resulting buffer?

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