dev_help: In-development help for package loaded with devtools
Description
dev_help searches for source documentation provided in
packages loaded by devtools. To improve performance, the .Rd files
are parsed to create to index once, then cached. Use
dev_topic_index_reset to clear that index.
A character vector of package names to search within.
If NULL, defaults to all packages loaded by devtools.
stage
at which stage ("build", "install", or "render") should
\\Sexpr macros be executed? This is only important if you're using
\\Sexpr macro's in your Rd files.
type
of html to produce: "html" or "text". Defaults to
your default documentation type.
if (FALSE) {
library("ggplot2")
help("ggplot") # loads installed documentation for ggplotload_all("ggplot2")
dev_help("ggplot") # loads development documentation for ggplot}