.spacemacs 配置文件失败:with-eval-after-load

.spacemacs configuration file FAIL: with-eval-after-load

我是 emacs 新手,这是我第一次尝试编辑 .spacemacs 配置文件。 我试图在 Spacemacs 上安装 Org 层,但收到警告。

org 按照 http://spacemacs.org/layers/+emacs/org/README.html#important-note

中的建议包装在 with-eval-after-load 中

这来自我的 ~/.spacemacs 文件,org 包含在 with-eval-after-load 中:

 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

当我 dotspacemacs/sync-configuration-layers 出现此警告时:

warning: (Spacemacs) some tests failed, check `*dotfile-test-results*' buffer

下面是来自 "FAIL: with-eval-after-load" 的 dotfile-test-results 缓冲区的屏幕截图:

什么可能导致警告? 我正在使用 GNU Emacs 25.2.1

删除 (with-eval-after-load 'org org) 并将其替换为普通的 org

那不是他们想让你放的地方。

如果您发现自己正在编写(或复制)自定义 组织模式配置代码,请使用建议的方法。