我对emacs很陌生,这是我第一次尝试编辑.spacemacs配置文件。我正试图在Spacemacs上安装Org层,但收到了警告。
如http://spacemacs.org/layers/+emacs/org/README.html#important-note中所建议的那样,org是用-http://spacemacs.org/layers/+emacs/org/README.html#important-note包装的。
这是从我的~/..spacemacs文件中得到的,其中的org被包装在-中:
dotspacemacs-configuration-layers
'(
markdown
;; ----------------------------------------------------------------
;; Example of useful layers you may want to use right away.
;; Uncomment some layer names and press <SPC f e R> (Vim style) or
;; <M-m f e R> (Emacs style) to install them.
;; ----------------------------------------------------------------
helm
;; auto-completion
;; better-defaults
emacs-lisp
;; git
;; markdown
(with-eval-after-load 'org
org
)
;; (shell :variables
;; shell-default-height 30
;; shell-default-position 'bottom)
spell-checking当我做空间comes /同步配置层时,会出现以下警告:
warning: (Spacemacs) some tests failed, check `*dotfile-test-results*' buffer下面是dotfile测试结果缓冲区中的屏幕截图,其内容为"FAIL: with -“:

是什么引起了警告?我正在使用GNU Emacs 25.2.1
发布于 2017-05-28 21:08:51
删除(with-eval-after-load 'org org)并用普通的org替换它。
那不是他们要你放的地方。
如果您发现自己正在编写(或复制)自定义的组织模式配置代码,请使用建议的方法。
https://stackoverflow.com/questions/44226640
复制相似问题