我正在尝试通过像这样修改 cc-other-file-alist 来使用 ff-find-other-file
(setq cc-other-file-alist
'(
("\\.cxx$" my-other-file-fun)
("\\.hxx$" my-other-file-fun)
))
并my-other-file-fun
返回匹配列表。问题是当我打开一个 cxx 文件并调用ff-find-other-file
时,该函数my-other-file-fun
没有被调用。但是如果我打开一个 hxx 文件并调用ff-find-other-file
我的自定义函数,我会看到正确的结果。出了什么问题?我在 Linux 上使用 emacs-24.1
谢谢,
苏里亚