Randy Lai
Randy Lai
Right now, we search for `library` and `require` in the current document only and show docs from those packages required. We need to extended it to `source` and support R...
A related but not entirely the same issue `tidyverse` uses a complicated way to [load its dependencies](https://github.com/tidyverse/tidyverse/blob/master/R/attach.R) rather than just using the `Depends` field. It would be hard for us...
It’s has already been done. However, the package dependencies are only resolved when the file is open and saved.
It may be related to #15 and #27.
It can be considered as a bug. The hover reply is not sent back because the server fails to load the document content. The document content is only loaded when...
When you say all R files, what are those R files? We are already loading the R files if the root folder is a R package.
It is handled by the codeAction provider. We could also use this [code](https://github.com/rstudio/rstudio/blob/master/src/cpp/session/modules/SessionSource.R#L124) from RStudio.
I don't think I would have the time and energy to look into it. I'd pass it for this time.
As you have mentioned, it is difficult with only lexical analysis. The LSP itself doesn't have a mechanism to hook into a live session, we will need to have something...