R/InsertDoubleAnd.R

Defines functions InsertDoubleAnd

Documented in InsertDoubleAnd

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