├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── ast-call.R ├── ast.R ├── codegrip-package.R ├── compat-purrr.R ├── indent.R ├── move-addin.R ├── move-emacs.R ├── move.R ├── reshape-addin.R ├── reshape-call.R ├── reshape-emacs.R ├── reshape.R ├── text.R ├── utils-emacs.R └── utils.R ├── README.md ├── codecov.yml ├── codegrip.Rproj ├── inst ├── emacs │ └── codegrip.el └── rstudio │ └── addins.dcf ├── man ├── addin_reshape.Rd ├── codegrip-package.Rd └── figures │ └── README │ ├── move-reshape.svg │ ├── move.svg │ ├── reshape-call.svg │ └── reshape-def.svg └── tests ├── testthat.R └── testthat ├── _snaps ├── ast-call.md ├── reshape-call.md └── reshape.md ├── fixtures └── calls.R ├── helper-ast-call.R ├── helper-codegrip.R ├── helper-reshape.R ├── test-ast-call.R ├── test-ast.R ├── test-move.R ├── test-reshape-call.R ├── test-reshape.R └── test-text.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: codegrip authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/ast-call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/ast-call.R -------------------------------------------------------------------------------- /R/ast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/ast.R -------------------------------------------------------------------------------- /R/codegrip-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/codegrip-package.R -------------------------------------------------------------------------------- /R/compat-purrr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/compat-purrr.R -------------------------------------------------------------------------------- /R/indent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/indent.R -------------------------------------------------------------------------------- /R/move-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/move-addin.R -------------------------------------------------------------------------------- /R/move-emacs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/move-emacs.R -------------------------------------------------------------------------------- /R/move.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/move.R -------------------------------------------------------------------------------- /R/reshape-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/reshape-addin.R -------------------------------------------------------------------------------- /R/reshape-call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/reshape-call.R -------------------------------------------------------------------------------- /R/reshape-emacs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/reshape-emacs.R -------------------------------------------------------------------------------- /R/reshape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/reshape.R -------------------------------------------------------------------------------- /R/text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/text.R -------------------------------------------------------------------------------- /R/utils-emacs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/utils-emacs.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/codecov.yml -------------------------------------------------------------------------------- /codegrip.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/codegrip.Rproj -------------------------------------------------------------------------------- /inst/emacs/codegrip.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/inst/emacs/codegrip.el -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/addin_reshape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/man/addin_reshape.Rd -------------------------------------------------------------------------------- /man/codegrip-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/man/codegrip-package.Rd -------------------------------------------------------------------------------- /man/figures/README/move-reshape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/man/figures/README/move-reshape.svg -------------------------------------------------------------------------------- /man/figures/README/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/man/figures/README/move.svg -------------------------------------------------------------------------------- /man/figures/README/reshape-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/man/figures/README/reshape-call.svg -------------------------------------------------------------------------------- /man/figures/README/reshape-def.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/man/figures/README/reshape-def.svg -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/ast-call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/_snaps/ast-call.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/reshape-call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/_snaps/reshape-call.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/reshape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/_snaps/reshape.md -------------------------------------------------------------------------------- /tests/testthat/fixtures/calls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/fixtures/calls.R -------------------------------------------------------------------------------- /tests/testthat/helper-ast-call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/helper-ast-call.R -------------------------------------------------------------------------------- /tests/testthat/helper-codegrip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/helper-codegrip.R -------------------------------------------------------------------------------- /tests/testthat/helper-reshape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/helper-reshape.R -------------------------------------------------------------------------------- /tests/testthat/test-ast-call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/test-ast-call.R -------------------------------------------------------------------------------- /tests/testthat/test-ast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/test-ast.R -------------------------------------------------------------------------------- /tests/testthat/test-move.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/test-move.R -------------------------------------------------------------------------------- /tests/testthat/test-reshape-call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/test-reshape-call.R -------------------------------------------------------------------------------- /tests/testthat/test-reshape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/test-reshape.R -------------------------------------------------------------------------------- /tests/testthat/test-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionel-/codegrip/HEAD/tests/testthat/test-text.R --------------------------------------------------------------------------------