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
In RStudio when the a function is at position [1,1] in a document and fn_mate() is called to create a function in a new file it throws an error because of some strange truncation.
my_function(test)
gives an error
Error in parse(text = elt) : <text>:2:0: unexpected end of input
1: y_function(test
You can see it is missing the first and last characters.
In VScode, the behavior is different in that the file and function would be created, but instead it will create a file called y_function.R with a function y_function()
The text was updated successfully, but these errors were encountered:
In RStudio when the a function is at position [1,1] in a document and
fn_mate()
is called to create a function in a new file it throws an error because of some strange truncation.gives an error
You can see it is missing the first and last characters.
In VScode, the behavior is different in that the file and function would be created, but instead it will create a file called
y_function.R
with a functiony_function()
The text was updated successfully, but these errors were encountered: