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
When using function suggestions within the debug() function in R code, Positron automatically inserts opening and closing brackets around the suggested function name. For example, typing debug( and selecting a function name like filter results in debug(filter()). However, the desired behavior is to insert the function name without brackets, as in debug(filter). This behavior exists in RStudio.
Steps to Reproduce:
Open a new R file in Positron.
Start typing debug( and select a function name from the suggestion list (e.g., filter).
Observe that the function name is automatically enclosed in brackets.
Expected Behavior:
When selecting a function name from suggestions within the debug() function, it should not automatically insert brackets around the function name.
Additional Context:
This behavior is specific to using function suggestions within the debug() function and affects the workflow by requiring manual removal of the brackets each time.
The text was updated successfully, but these errors were encountered:
I believe this is a duplicate of #2338, and I am happy to report that it was fixed in #6273. This fix will be incorporated in the next build we make available at https://github.com/posit-dev/positron/releases (unfortunately not the one published today).
Description:
When using function suggestions within the
debug()
function in R code, Positron automatically inserts opening and closing brackets around the suggested function name. For example, typingdebug(
and selecting a function name likefilter
results indebug(filter())
. However, the desired behavior is to insert the function name without brackets, as indebug(filter)
. This behavior exists in RStudio.Steps to Reproduce:
debug(
and select a function name from the suggestion list (e.g.,filter
).Expected Behavior:
When selecting a function name from suggestions within the
debug()
function, it should not automatically insert brackets around the function name.Additional Context:
This behavior is specific to using function suggestions within the
debug()
function and affects the workflow by requiring manual removal of the brackets each time.The text was updated successfully, but these errors were encountered: