https://github.com/csgillespie/raddins
A collection of RStudio addins
https://github.com/csgillespie/raddins
Last synced: 3 months ago
JSON representation
A collection of RStudio addins
- Host: GitHub
- URL: https://github.com/csgillespie/raddins
- Owner: csgillespie
- Created: 2016-03-09T20:50:54.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-26T21:31:49.000Z (about 9 years ago)
- Last Synced: 2025-03-17T17:04:53.879Z (3 months ago)
- Language: R
- Size: 228 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
Awesome Lists containing this project
README
# A collection of RStudio addins
[](https://travis-ci.org/csgillespie/raddins)
[](http://cran.rstudio.com/package=raddins)RStudio addins let you execute a bit of R code or a Shiny app through the RStudio IDE,
either via the Addins dropdown menu or with a keyboard shortcut.This package contains a collection of RStudio
[addins](https://rstudio.github.io/rstudioaddins/). To run these addins, you need the
latest version of [RStudio](https://www.rstudio.com/).This package can be installed via
```
devtools::install_github("csgillespie/raddins")
```## Running addins
After installing the package, the _Addins_ menu toolbar will be populated with the
new, exported addins
## Addins
This package currently has four addins:
### `comment_block`
Changes text from
```
Some text
```to
```
###################################################
## Some text ##
###################################################
```## `fix_width`
Formats text to have a maximum width of `options(width)`
## `move_up`
Moves a line of text up one row and appends it to the line above.
## `rstudio_section`
Makes an rstudio section block by adding `#` to the start of the line and
appending `----` to the end.## Other addins
* Jenny Bryan's assign default [arguments](https://github.com/jennybc/jadd)
* [WrapRmd](https://github.com/tjmahr/WrapRmd) which wraps R Markdown
text without mangling inline R code## Other information
* If you have any suggestions or find bugs, please use the github issue tracker.
* Feel free to submit pull requests for new addins.