R/end_box.R

Defines functions end_box

end_box <- function(width = getOption("width", 80)){

  context <- rstudioapi::getActiveDocumentContext()

  current_col <- context$selection[[1]]$range[[1]][[2]]

  num_spaces <- width - current_col - 1

  rstudioapi::insertText(location = context$selection[[1]]$range[[1]],
                         text = paste0(strrep(" ", num_spaces), "##"))

}
EstherHerbert/Useful.functions documentation built on June 11, 2025, 11:19 p.m.