Is there an R-extension to Emacs autocomplete-mode that can be used with ESS?

If the extension doesn't exist I'd also appreciate any hints for writing one!

link|improve this question

VitoshKa, can you please post your source? – jacob Jan 11 at 10:55
feedback

2 Answers

up vote 8 down vote accepted

There is an ac-source for R here. I recall struggling with it and finally wrote my own which at that time was much faster, but buggy since I didn't manage to make prefix regexp work properly.

EDIT: the newest ESS (only svn currently) has out-of-the-box integration with auto-complete. I have added the instructions to the wiki.

enter image description here

link|improve this answer
OK, I tried it and seems to be quite good, I think it should be enough for me. – Matti Pastell Jan 14 '11 at 8:17
It works like a charm! =) – aL3xa Sep 21 '11 at 17:26
feedback

auto-complete-acr is auto-complete sources.

it is more useful than ac-R.

add to .emacs below.

(require ‘auto-complete)
(require ‘auto-complete-acr)
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.