2010-05-23 4 views

Antwort

7

Für mich ist dieses Ding fantastisch nützlich:

;; ESS: Emacs Speaks Statistics 
(load "~/elisp/vendor/ess/lisp/ess-site.el") 

;; Use shift-enter to split window & launch R (if not running), execute highlighted 
;; region (if R running & area highlighted), or execute current line 
;; (and move to next line, skipping comments). Nice. 
;; See http://www.emacswiki.org/emacs/EmacsSpeaksStatistics, 
;; FelipeCsaszar. Adapted to spilit vertically instead of 
;; horizontally. 

(setq ess-ask-for-ess-directory nil) 
    (setq ess-local-process-name "R") 
    (setq ansi-color-for-comint-mode 'filter) 
    (setq comint-prompt-read-only t) 
    (setq comint-scroll-to-bottom-on-input t) 
    (setq comint-scroll-to-bottom-on-output t) 
    (setq comint-move-point-for-output t) 
    (defun my-ess-start-R() 
    (interactive) 
    (if (not (member "*R*" (mapcar (function buffer-name) (buffer-list)))) 
     (progn 
    (delete-other-windows) 
    (setq w1 (selected-window)) 
    (setq w1name (buffer-name)) 
    (setq w2 (split-window w1 nil t)) 
    (R) 
    (set-window-buffer w2 "*R*") 
    (set-window-buffer w1 w1name)))) 
    (defun my-ess-eval() 
    (interactive) 
    (my-ess-start-R) 
    (if (and transient-mark-mode mark-active) 
    (call-interactively 'ess-eval-region) 
     (call-interactively 'ess-eval-line-and-step))) 
    (add-hook 'ess-mode-hook 
     '(lambda() 
      (local-set-key [(shift return)] 'my-ess-eval))) 
    (add-hook 'inferior-ess-mode-hook 
     '(lambda() 
      (local-set-key [C-up] 'comint-previous-input) 
      (local-set-key [C-down] 'comint-next-input))) 
    (require 'ess-site) 

Ausgenommen von: http://www.kieranhealy.org/blog/archives/2009/10/12/make-shift-enter-do-a-lot-in-ess/

+1

habe ich auch benutzt. Dies macht das Verhalten von ESS [S] näher an dem von Rgui.exe und kann neue ESS-Benutzer ansprechen. – ggg

4

auf Debian/Ubuntu, verwende ich das ESS-Paket, das keine weiteren Einträge in .emacs haupt erfordert, da es die systemweite Einrichtung von /etc/emacs/site-start.d/50ess.el verwendet. Unter Windows muss ich den Pfad auf Rterm.exe setzen und ich Quelle ess-site.el genau wie das ESS-Handbuch vorschlägt.

ich aber diese haben ..., die eine fast gerade Kopie von der ‚R Extensions‘ Handbuch es Referenzen ist:

;; edd 12 May 2006 from R-exts.texi 
;;     with one variation 
;;; C 
(add-hook 'c-mode-hook 
      ;;(lambda() (c-set-style "bsd"))) 
      (lambda() (c-set-style "c++"))) ; edd 
;;;; ESS 
(add-hook 'ess-mode-hook 
      (lambda() 
      (ess-set-style 'C++) 
      ;; Because 
      ;;         DEF GNU BSD K&R C++ 
      ;; ess-indent-level     2 2 8 5 4 
      ;; ess-continued-statement-offset 2 2 8 5 4 
      ;; ess-brace-offset     0 0 -8 -5 -4 
      ;; ess-arg-function-offset   2 4 0 0 0 
      ;; ess-expression-offset    4 2 8 5 4 
      ;; ess-else-offset     0 0 0 0 0 
      ;; ess-close-brace-offset   0 0 0 0 0 
      (add-hook 'local-write-file-hooks 
         (lambda()  
         (ess-nuke-trailing-whitespace))))) 
;(setq ess-nuke-trailing-whitespace-p 'ask)  
;; or even 
(setq ess-nuke-trailing-whitespace-p t) 
+0

Interessant. Richten Sie ESS bei jedem Start manuell ein? Zum Beispiel, die Fenster zu teilen und R zu starten. Ich finde es ziemlich mühsam. Ich habe Code von http://www.kieranhealy.org/blog/archives/2009/10/12/make-shift-enter-do-a-lot-in-ess/ verwendet, um das zu automatisieren. – ggg

+2

Sie können eine gute Konfigurationsdatei auf der Website von John Fox http://soccerv.mcmaster.ca/jfox/Books/Companion/ESS/ finden, die alles automatisch einrichtet. Es ist für Xemacs entworfen, funktioniert aber gut für Emacs (vielleicht mit ein paar Modifikationen). – Calimo