├── .Rbuildignore ├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── .DS_Store ├── hotkeys.R ├── insert.R └── without.R ├── README.md ├── assets ├── .DS_Store ├── hotkeys-fit.png ├── hotkeys-logo.R ├── hotkeys-logo.graffle │ ├── data.plist │ └── image2.png └── hotkeys-logo.png ├── hotkeys.Rproj ├── inst ├── .DS_Store └── rstudio │ └── addins.dcf └── man ├── .DS_Store ├── a1.Rd ├── a10.Rd ├── a11.Rd ├── a12.Rd ├── a13.Rd ├── a2.Rd ├── a3.Rd ├── a4.Rd ├── a5.Rd ├── a6.Rd ├── a7.Rd ├── a8.Rd ├── a9.Rd └── grapes-w-slash-o-grapes.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/hotkeys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/R/hotkeys.R -------------------------------------------------------------------------------- /R/insert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/R/insert.R -------------------------------------------------------------------------------- /R/without.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/R/without.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/hotkeys-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/assets/hotkeys-fit.png -------------------------------------------------------------------------------- /assets/hotkeys-logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/assets/hotkeys-logo.R -------------------------------------------------------------------------------- /assets/hotkeys-logo.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/assets/hotkeys-logo.graffle/data.plist -------------------------------------------------------------------------------- /assets/hotkeys-logo.graffle/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/assets/hotkeys-logo.graffle/image2.png -------------------------------------------------------------------------------- /assets/hotkeys-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/assets/hotkeys-logo.png -------------------------------------------------------------------------------- /hotkeys.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/hotkeys.Rproj -------------------------------------------------------------------------------- /inst/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/inst/.DS_Store -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/a1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a1.Rd -------------------------------------------------------------------------------- /man/a10.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a10.Rd -------------------------------------------------------------------------------- /man/a11.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a11.Rd -------------------------------------------------------------------------------- /man/a12.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a12.Rd -------------------------------------------------------------------------------- /man/a13.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a13.Rd -------------------------------------------------------------------------------- /man/a2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a2.Rd -------------------------------------------------------------------------------- /man/a3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a3.Rd -------------------------------------------------------------------------------- /man/a4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a4.Rd -------------------------------------------------------------------------------- /man/a5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a5.Rd -------------------------------------------------------------------------------- /man/a6.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a6.Rd -------------------------------------------------------------------------------- /man/a7.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a7.Rd -------------------------------------------------------------------------------- /man/a8.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a8.Rd -------------------------------------------------------------------------------- /man/a9.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/a9.Rd -------------------------------------------------------------------------------- /man/grapes-w-slash-o-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-stata/hotkeys/HEAD/man/grapes-w-slash-o-grapes.Rd --------------------------------------------------------------------------------