在 emacs 中加载 fic-mode
这个答案为我提供了我需要的解决方案。对我来说唯一的问题是我必须手动加载它,即 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试以下操作:创建一个包含以下三行的新文件:
将
"/path/to/fic-mode-directory"
替换为保存fic- 的目录的绝对路径模式.el
。然后从命令行运行,
其中
/path/to/file
是上述文件的路径。现在输入Cx Cf test.cpp。
生成的缓冲区中是否打开了小说模式?
Try the following: create a new file containing the following three lines:
Replace
"/path/to/fic-mode-directory"
with the absolute path to the directory in which you savedfic-mode.el
.Then from the command line, run
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?