R/InsertTODO.R

Defines functions InsertTODO

Documented in InsertTODO

#' Insert TODO:.
#'
#' Call this function as an addin to insert \code{TODO: } at the cursor position.
#'
#' @importFrom rstudioapi insertText
#'
#' @export
InsertTODO <- function() {
  rstudioapi::insertText("TODO: ")
}
DanielRivasMD/RStudioAddIns documentation built on Sept. 9, 2023, 5:10 p.m.