RStudio 1.3 Preview: The Little Things
This blog post is part of a series on new features in RStudio 1.3, currently available as a preview release.
In every RStudio release, we introduce dozens of small quality-of-life improvements alongside bigger headline features. This blog post concludes our series on the upcoming RStudio 1.3 release with a look at some of these little conveniences.
RStudio has long had a Find in Files feature, which makes it possible to easily locate text in your project. If you’re not familiar with this feature, try it out: press Ctrl+Shift+F (MacOS: Cmd+Shift+F), or choose Find in Files… from the Edit menu.
In RStudio 1.3, it’s now possible to replace the text you found:
After you’ve done a search, switch to Replace view via the toggle, enter your new text, and click Replace All. It works with regular expressions, too.
This really is a little thing, but it drove many of you nuts: the size of the columns in the Environment pane was fixed, so if your variables (or values) were long, it was awkward to try to see the whole thing. Now you can!
Do you usually start new files with the same information? For example, do you usually include a header comment on your R scripts with metadata you know you’ll find useful later? You can now have RStudio inject this header for you when you create a new file.
Create a template in ~/.config/rstudio/templates/default.R
(macOS/Linux) or AppData/Roaming/RStudio/templates/default.R
(Windows) to try it out. It works with other file types, too; for example creating a file named default.cpp
will set the content for new C++ files.
If you’re an RStudio Server administrator, you can set templates for all the users on your server, which can be helpful if your organization has standards around file headers and structure. Read more in Default Document Templates from the admin guide.
RStudio automatically keeps its own backup copy of files you’re editing so that you don’t lose changes. We’ve improved this in two ways in the 1.3 release:
You can now set the initial working directory of new terminals, so it’s less likely you’ll have to begin each terminal session with the same old cd
command.
We’ve also added a bunch of commands designed to reduce the number of times you need to manually paste cumbersome file and directory paths between the IDE and the terminal.
Specifically, we’ve added:
RStudio can now run Shiny applications as background jobs in the Jobs tab we added in RStudio 1.2.
This has a couple of advantages:
Note, however, that you can’t use RStudio’s debugging interface with a Shiny application running in the background, since it is part of a separate R session.
If you’d like to try out any of these features, we welcome you to download the RStudio Preview and give them a spin!
We hope these little changes make a big difference in your day-to-day work, and we’d love to hear your feedback on the community forum.
Finally, we’re grateful to you, the R community, for the overwhelming number of ideas, support, and bug reports that have helped us build this release. We couldn’t have done it without you. Watch this space for an announcement of the stable release soon!