microsoft / RTVS

R Tools for Visual Studio.
MIT License
390 stars 118 forks source link

Improving intellisense when working with the tidyverse #4234

Open amlucius opened 6 years ago

amlucius commented 6 years ago

Two suggestions:

  1. I often write dplyr code like the following. It would be nice if--after typing the function (mutate, select, etc.)--intellisense knew to look inside the dataframe IncGeo_Final for the suggested code completion.

IncGeo_Final <- IncGeo_Final %>% rename(ZipCode = IncidentZipCode) %>% mutate(ZipCode = gsub("-.*", "", ZipCode))

  1. Intellisense also doesn't seem to prioritize tidyverse functions after the maggitr. For example, if you added a maggitr to the above coded and started typing select or arrange, the tidyverse functions don't show up at the top of the listing.
MikhailArkhipov commented 6 years ago

Related #1051