I would like to know if it is possible to refactor R code in ESS. Using search and replace in Emacs does not seem to be a good alternative to it.

link|improve this question

what exactly do you want to accomplish? can you provide an example? – David Jan 5 '11 at 0:43
Renaming of variables. This can be done easily with the statet plugin of eclipse but not in ess. – ggg Jan 11 '11 at 13:51
AFAIK refactoring in Eclipse is far far far ahead of refactoring in Emacs. In general Eclipse understands the language, while Emacs (sort of) understands the syntax (kind of). But for some reason I still use Emacs for everything except Java. – Ken Williams Jan 24 '11 at 15:25
@Ken, just out of curiosity, what is the reason the emacs is so sticky with you? – VitoshKa Jan 24 '11 at 16:55
Good question - I'm not really sure, just force of habit I guess. And I like the way the 'tab' key works. =) Though in the past couple of days I discovered StatET in Eclipse, which handles Sweave files very nicely. – Ken Williams Jan 26 '11 at 15:01
feedback

2 Answers

up vote 3 down vote accepted

ESS itself does not provide any facilities for refactoring. Instead you can use emacs functionality.

Here is an example of how to replace all words starting with "xxx" and ending with "yyy" with "zzzzzz" in all your open R files in your project directory.

  • C-x d (enter dired)

  • % m r$ (mark all files ending in R or r)

  • Q (enter dired-to-query-replace-regexp)
  • type xxx.*zzz and zzzzzz when asked for replacement patterns.
  • accept, skip with y,n

Here is a complete tutorial of how to search-replace in multiple files. and also how to save all modified buffers with ibuffer.

link|improve this answer
feedback

In Emacs you can do a search replace with M-% and then ! will replace every instance in the current buffer.

If that isn't want you mean, can you explain (edit your Q or comment here) what Statet does and what exactly you'd like to do in Emacs + ESS?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.