打开文件时Emacs的polymode给出错误(Emacs polymode gives error

2019-10-21 06:48发布

我下载了polymode zip文件从GitHub ,打开zip文件赋予一个文件夹命名为polymode主 。 我改名为polymode的文件夹,并把它放在我.emacs.d文件夹。 然后我插入以下行到我.emacs文件:

;; Polymode
(setq load-path
      (append '("~/.emacs.d/polymode/" "~/.emacs.d/polymode/modes")
          load-path))

(require 'poly-R)
(require 'poly-markdown)

当我打开一个文件使用Emacs它给了我下面的错误:

Warning (initialization): An error occurred while loading `c:/Users/ab/.emacs':

File error: Cannot open load file, markdown-mode

To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file.  Start Emacs with
the `--debug-init' option to view a complete error backtrace.

任何想法,我做错了什么?
感谢帮助。

PS:
Windows 7的
GNU Emacs的24.3.1
ESS

Answer 1:

polymode 取决于markdown-mode用于其降价的支持 ,而且它并不像你已经安装了它。

由于您使用Emacs的24,其中有package.el内置的,我强烈建议安装它通过MELPA稳定 (在提供常规MELPA和果酱 ),但如果你还在安装包手动你可以找到它在其网站 。



文章来源: Emacs polymode gives error when opening file
标签: emacs knitr ess