我希望这不是一个非常愚蠢的问题,但我过去曾使用 emacs 和 ESS 来编辑 R 文件并在 R 进程中运行它们。我想对 spacemacs 做同样的事情。据我所知,这只是意味着我必须在 .spacemacs 文件中启用 ess 层,仅此而已。
所以在我的 .spacemacs 我有以下内容:
'(
;; ----------------------------------------------------------------
;; 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.
;; ----------------------------------------------------------------
;; auto-completion
;; better-defaults
emacs-lisp
;; git
markdown
javascript
colors
haskell
c-c++
ess
html
;; org
;; (shell :variables
;; shell-default-height 30
;; shell-default-position 'bottom)
;; spell-checking
;; syntax-checking
;; version-control
)
但是,如果我关闭 spacemacs,然后重新启动,并尝试创建一个 R 文件,则没有 ess 或格式/颜色或类似的东西。降价之类的东西也是如此。所有文件都以基本模式打开。我认为 spacemacs 有层,所以你可以添加它们,它开箱即用。那么我错过了什么或者我应该检查什么?我在 OSX 上。
谢谢,本。