]> git.donarmstrong.com Git - lib.git/commitdiff
properly load ess-r-mode; fix directory typo
authorDon Armstrong <don@donarmstrong.com>
Wed, 24 Jan 2018 18:59:44 +0000 (10:59 -0800)
committerDon Armstrong <don@donarmstrong.com>
Wed, 24 Jan 2018 18:59:44 +0000 (10:59 -0800)
emacs_el/configuration/don-configuration.org

index 5ed2aa0a36e25d332d4cc26a057d348ad35fa951..f18b5ceac76ec0564c74a153561aa84e6b5101f4 100644 (file)
@@ -914,13 +914,13 @@ This can be used to link things pretty quickly if necessary
   (use-package ess
     :ensure t
     :commands R
-    :mode "\\.R\\'"
+    :mode ("\\.R\\'" . ess-r-mode)
     :bind (:map ess-mode-map
                 ("C-c C-R" . dla/ess-region-remote-eval))
     :config
     (defun ess-change-directory (path)
       "Set the current working directory to PATH for both *R* and Emacs."
-      (interactive "DDirectory to change to: ")
+      (interactive "Directory to change to: ")
     
       (when (file-exists-p path)
         (ess-command (concat "setwd(\"" path "\")\n"))