R/OpenAllRFiles.R

Defines functions OpenAllRFiles

Documented in OpenAllRFiles

#' Open All R Files in Current Directory for Editing
#' 
#' Simple shortcut function to open all R files in current working directory for editing in RStudio
#' @param none
#' @keywords convenience, wrapper, file, editing
#' @export
#' @examples
#' OpenAllRFiles()
OpenAllRFiles <- function() {
   lapply(list.files(pattern="*.R"),file.edit)
}
jakobludewig/miscR documentation built on Aug. 8, 2019, 6:12 p.m.