This is more of an IDE question. It would be very useful if we get a feature in Rstudio IDE (I think its not there yet) where, when I type a list of comma separated variables, and when I highlight them all and click on this IDE feature button it will auto enclose all the comma separated variables with double (or single quotes).
e.g.
c(abc,def,ijk)
becomes
c("abc","def","ijk")
This should save a lot of typing for people who have to initialise a string vector.
Note: I found several similarly worded questions on rstudo community like the one below but that is not what I am asking. The below link is a completely different question and is not an IDE question.