snippr provides tools to manage and install RStudio code snippets, including installing them from public repositories.
You can install snippr
with the devtools package:
devtools::install_github("dgrtwo/snippr")
snippr lets you share RStudio snippets with others by publishing them as a GitHub repository or a Gist.
To share your snippets, create a GitHub repository with one or more .snippets
file at the top level: see the dgrtwo/snippets repository for an example. Anyone can then install your snippets using the code:
library(snippr)
snippets_install_github("dgrtwo/snippets")
Note that you may need to restart RStudio for the snippets to load. If you want to install only for one of the languages in the repo, you can use the language
argument:
snippets_install_github("dgrtwo/snippets", language = "r")
Or you can choose to install only a single snippet:
snippets_install_github("dgrtwo/snippets", language = "r", name = "S3")
If you prefer, you can share one .snippets file as a GitHub Gist (like this one), and install it with its ID:
snippets_install_gist("ecc6aec8d37af42cdd83", language = "r")
See the vignettes for more.