Skip to content

Help in 2.10 lost its "Find" feature

6 messages · Hadley Wickham, Henrik Bengtsson, Duncan Murdoch +1 more

#
Most browsers offer this feature - it certainly works in safari and
firefox, and I'm sure in internet explorer too.

Hadley
#
For the text based help, there is no search feature on Windows, e.g.

options(help_type="text");
help(readLines);

but if you use the HTML-based help, you can use the browser's search
features as suggested/wanted:

options(help_type="html");
help(readLines);

/Henrik
On Wed, Nov 11, 2009 at 5:40 PM, hadley wickham <h.wickham at gmail.com> wrote:
#
On 11/11/2009 11:40 AM, hadley wickham wrote:
I think Daniel was talking about the full text search of all pages. 
This index for this was built by the Microsoft Help Compiler so it was 
available in CHM help; the Mac has the full text search available in 
lots of places, so it worked there just because the system automatically 
indexed the static HTML pages.

I think it would be nice to get this back and make it less platform 
specific.  It would need indexing of the content of the pages, and 
Javascript or similar to access the indices.

Duncan Murdoch
#
It would be nice to have an interface to something like lucene - would
be useful for other projects apart from R help.

Hadley