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
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
Consider the following magrittr/dplyr pipe statement:
mtcars %>% # line 1
filter(carb < 4) %>% # line 2
select(mpg, cyl) # line 3
When automatic formatting is turned on, hitting the return key when the cursor is placed at the beginning of line 2 does not create a new line. You must instead place the cursor on the end of line 1 and hit return there instead.
It's a minor annoyance, but one I run into constantly when constructing long or complex dplyr chains.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Consider the following
magrittr
/dplyr
pipe statement:When automatic formatting is turned on, hitting the
return
key when the cursor is placed at the beginning of line 2 does not create a new line. You must instead place the cursor on the end of line 1 and hitreturn
there instead.It's a minor annoyance, but one I run into constantly when constructing long or complex
dplyr
chains.The text was updated successfully, but these errors were encountered: