Is there a setting in RStudio v1.3.911 to keep trailing whitespace in multi-line strings after saving?
For example, after saving a .R file, the space after SELECT is removed, breaking the query.
glue::glue("SELECT
city, state...")
To remedy the issue, I can add \\ after the space, but it makes the query print on one line.