You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My personal coding style (and the Tidyverse style guide) prefer having a space after a comma. Is there a way to set this as an option in datapasta?
The current implementation seems to be slightly incoherent in that regard. When I fiddle a b c I do get space after the commas: c(a, b, c). However, when I fiddle the following vertical vector to a horizontal one, the spaces disappear:
c(a,
b,
c)
Spaces are also deleted by Toggle Vector Quotes: c(a, b, c) is converted to c("a","b","c").
My personal coding style (and the Tidyverse style guide) prefer having a space after a comma. Is there a way to set this as an option in datapasta?
The current implementation seems to be slightly incoherent in that regard. When I fiddle
a b c
I do get space after the commas:c(a, b, c)
. However, when I fiddle the following vertical vector to a horizontal one, the spaces disappear:Spaces are also deleted by
Toggle Vector Quotes
:c(a, b, c)
is converted toc("a","b","c")
.Session info
The text was updated successfully, but these errors were encountered: