-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rpc to get loaded packages #752
Conversation
@@ -63,3 +63,8 @@ | |||
|
|||
pkg %in% .packages() | |||
} | |||
|
|||
#' @export | |||
.ps.rpc.get_loaded_packages <- function(...) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is maybe a nit? But probably worth considering: .packages()
returns the attached packages, which is different from those whose namespaces are loaded, which is what "loaded" evokes for me. Should this be .ps.rpc.get_attached_packages()
?
Various looks at loaded packages, for various definitions of that:
> print(.packages())
[1] "pak" "reprex" "devtools" "usethis" "conflicted" "stats" "graphics"
[8] "grDevices" "utils" "datasets" "methods" "base"
> search()
[1] ".GlobalEnv" "local:rprofile" ".conflicts" "package:pak"
[5] "package:reprex" "package:devtools" "package:usethis" "package:conflicted"
[9] "tools:rstudio" "tools:positron" "package:stats" "package:graphics"
[13] "package:grDevices" "package:utils" "package:datasets" "package:methods"
[17] "Autoloads" "package:base"
> loadedNamespaces()
[1] "vctrs" "httr" "cli" "rlang" "purrr" "pkgload" "promises"
[8] "shiny" "xtable" "glue" "htmltools" "httpuv" "pkgbuild" "pak"
[15] "methods" "datasets" "ellipsis" "fastmap" "conflicted" "lifecycle" "utils"
[22] "memoise" "compiler" "miniUI" "sessioninfo" "fs" "htmlwidgets" "Rcpp"
[29] "urlchecker" "base" "stats" "graphics" "later" "digest" "R6"
[36] "reprex" "usethis" "magrittr" "withr" "tools" "grDevices" "mime"
[43] "devtools" "profvis" "remotes" "cachem"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that's the intent. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One last nit: Do you want to update copyright year?
Ark side of posit-dev/positron#6954; just adds an RPC to get the loaded packages, and calls
unlist
on the set of packages to install since those arrive in list form from the front end.