Re: [ESS] Can't find documentation for function

2022-09-19 Thread Lionel Henry via ESS-help
Hi Haris, That is because ESS intercepts `?` calls instead of evaluating them. As a workaround you can call the devtools implementation of `?` manually: ``` pkgload:::shim_help(foo) ``` I'd like to do better as it would improve my day-to-day but this hasn't been a priority. Best, Lionel On

Re: [ESS] Can't find documentation for function

2022-09-19 Thread Haris Fawad via ESS-help
Hi Marc, Yes, I load the package via devtools::load_all() before typing ?foo. When I do the same in the R GUI-app I get the expected behaviour: the documentation gets rendered and shown as an html file in the browser. Best, Haris On Sun, Sep 18, 2022 at 7:29 PM Marc Schwartz wrote: > Hi, > >