我尝试使用通过package-list安装的flycheck包。
根据here的建议,我在我的.emacs中添加了这一行:
(require 'flycheck)现在,我在启动emacs时收到以下错误:
Warning (initialization): An error occurred while loading `~/.emacs':
File error: Cannot open load file, no file or folder of this type, flycheck是否不再需要这一行?我应该添加其他行吗?
提前谢谢。
发布于 2020-04-25 14:54:13
好了,在使用包之后,我安装了软件包“flycheck documentation - package”,并将以下内容添加到我的配置文件中:
(use-package flycheck
:ensure t
:init (global-flycheck-mode))现在它起作用了。
https://stackoverflow.com/questions/61421930
复制相似问题