Currently I have set options(help_type="text") and getOption("help_type") returns "text". Not sure why but R still opens a new browser window or tab when I type ?par in the inferior ESS (iESS) buffer. If I explicitly evaluate help(par,help_type="text"), the contents of the help page is printed in the iESS buffer. I thought there was a way to have the contents open in a its own separate Emacs buffer -- was I mistaken?
| |||
|
show 1 more comment
feedback
|
|
If (as we discovered in the comments) you set inferior-ess-help-command to "utils::help(\"%s\")\n", then the problem was resolved. It appeared to have been caused by another inferior-ess-help-command in the configuration file. Its always a good idea to start emacs with the -nw options if you experience weird problems like this. | |||
|
feedback
|
|
In your The first should open each
This second version has a single buffer for all help pages you call up
| |||||||
feedback
|
.help.ESS <- helpdoes appear, and the value ofinferior-ess-help-commandis"utils::help(\"%s\", help_type=\"html\")\n"on Emacs 24 on OS X... – crippledlambda Aug 23 '11 at 13:23(setq inferior-ess-help-command "utils::help(\"%s\")\n")apparently does not help either – crippledlambda Aug 23 '11 at 13:27inferior-ess-r-help-commanddefined in my configuration files and this was being assigned to the global value of myinferior-ess-help-commandvariable. Must have been carried over from an older installation. – crippledlambda Aug 23 '11 at 13:38