Rstudio has a great code completion feature. It provides a quick view of functions that start with a given string, as well as function and parameter definitions.

ESS is powerful enough, familiar to me, and integrated into Emacs, where I conduct most of my work - so I am hesitant to move, but this feature is making me consider such a move.

Is it possible to integrate this feature into Emacs ESS?

Is there anything similar to this for Emacs ESS?

Any hope that there will be (and if so, how could I support such an effort?)

enter image description here

link|improve this question

75% accept rate
2  
Oh, all right. I will try YetAnotherIDE. – DWin Jul 28 '11 at 21:22
possible duplicate of Emacs autocomplete-mode extension for ESS and R – Abe Sep 21 '11 at 21:49
it's similar, but surely not a dupe! – aL3xa Sep 22 '11 at 2:16
feedback

3 Answers

up vote 11 down vote accepted

You do get the completion thanks to the codetools packages (which is part of base R). So when I type

lm(

and hit TAB a new buffer opens which gets me the left-hand side of your window above: the available options to the function at hand. I don't think you can show the help directly though.

There is / was also a way to get context-sensitive help in the mini-buffer when typing but I have forgottten how/where that gets turned on.

link|improve this answer
6  
Emacs is to Eddelbuettel as honey is to Winnie the Pooh. ;) – Joshua Ulrich Jul 28 '11 at 20:49
4  
Quite right. Also makes my bed, serves me coffee and feeds the cat. – Dirk Eddelbuettel Jul 28 '11 at 21:01
...and responds to stackoverflow questions and comments. – Joshua Ulrich Jul 28 '11 at 21:16
1  
@Dirk Re: Last para -- Maybe ess-eldoc? – chl Jul 28 '11 at 22:19
1  
I'm afraid that you cannot get pop-up help for function formal arguments, but you can type C-c C-v to get help in another buffer. – aL3xa Jul 29 '11 at 0:20
show 2 more comments
feedback

Or maybe we should all use search:

Emacs autocomplete-mode extension for ESS and R

I don't want to be grumpy, I found this few hours ago and I'm still shocked. It works like a charm. Though I still prefer the old-style pop-ups. =)

link|improve this answer
that's not really an answer, its more of a comment, but the point could be better made with a vote to close as exact duplicate, as I have done. – Abe Sep 21 '11 at 21:50
feedback

Recent version of ESS integrates with auto-complete package out of the box. It provides help on arguments as well as function help. I added detailed instructions to the wiki

Ess-ac screenshot

enter image description here

Ess-eldoc was also rewritten, it non-intrusively displays arguments in the minibuffer:

(require 'ess-eldoc)

link|improve this answer
Vitoshka is that solarize theme that you're using? – aL3xa Feb 23 at 0:11
yes @aL3xa, after years of using calm forest dark theme I've switched to solarize recently and am quite happy with it :) – VitoshKa Feb 23 at 13:28
FWIW, I'm using tango dark theme and I'm happy with it, but I'd like to try out solarize. Looks nice. – aL3xa Feb 23 at 14:57
How did you setup your .emacs so that help is shown in full "glory"? :) On my machine the corresponding help pop-up is rather small and ugly. – fotNelton Mar 30 at 16:36
feedback

Your Answer

 
or
required, but never shown

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