R/InsertInclude.R

Defines functions InsertInclude

Documented in InsertInclude

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