我曾经用来find-file-at-point
打开文件、URL 等。我的.emacs
包含
(require 'ffap)
(ffap-bindings)
我发现ido-mode
并尝试将它与
(ido-mode 1); enable ido-mode
(setq ido-enable-flex-matching t); flexibly match names
(setq ido-everywhere t); use ido-mode everywhere, in buffers and for finding files
(setq ido-use-filename-at-point 'guess); for find-file-at-point
事实证明,C-x C-f
查找文件并没有激活ido-mode
(我没有看到文件名的典型建议,就像我在做缓冲区时所做的那样C-x b
)。当我注释掉与 相关的两行时ffap
,它按预期工作,但是,我也想使用ffap
。
这可能吗?
假设该点位于 URL 上。如果C-x C-f C-f
(回退到“旧”完成样式)会激活ffap
并因此提供打开 URL,那就太好了。