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
Thank you for your excellent work with Vim-R. I noticed an indenting bug recently when I was composing SQL queries. When a string is split over multiple lines, the indenter treats operators inside the string as if they were functional. Here's a minimal working example: notice that f() is indented too far in the current behavior.
Current behavior:
paste("A
=", 2)
f()
Correct behavior:
paste("A
=", 2)
f()
Thank you again for your work!
The text was updated successfully, but these errors were encountered:
I deleted from the Vim-R-plugin the files that are already distributed as official Vim runtime files. Now, there is a new repository with these files: https://github.com/jalvesaq/R-Vim-runtime
Since the official runtime files are no longer in this repository, I'm closing this bug. This bug is already described in the Known bugs section of the README.md, and new bugs should be reported in the new repository.
Thank you for your excellent work with Vim-R. I noticed an indenting bug recently when I was composing SQL queries. When a string is split over multiple lines, the indenter treats operators inside the string as if they were functional. Here's a minimal working example: notice that f() is indented too far in the current behavior.
Current behavior:
Correct behavior:
Thank you again for your work!
The text was updated successfully, but these errors were encountered: