Skip to content

Instantly share code, notes, and snippets.

@bfatemi
Created August 15, 2019 16:19
Show Gist options
  • Save bfatemi/9f27c5c8a98a1157f4070ee05ac5e60b to your computer and use it in GitHub Desktop.
Save bfatemi/9f27c5c8a98a1157f4070ee05ac5e60b to your computer and use it in GitHub Desktop.
library(rstudioapi)
# insert text at the start of the document
insertText(c(1, 1), "# Hello\n")
# insert text at the end of the document
insertText(Inf, "# Hello\n")
# comment out the first 5 rows
pos <- Map(c, 1:5, 1)
insertText(pos, "# ")
# uncomment the first 5 rows, undoing the previous action
rng <- Map(c, Map(c, 1:5, 1), Map(c, 1:5, 3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment