How to get from
input = c("a", "b", "c")
to
output = c(quote(a), quote(b), quote(c))
automatically?
List apply as.symbol() to your input vector.
lapply(X = input, as.symbol)