Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For:
Release Notes
New Features
?
help operator or insidedebug()
) no longer add trailing parentheses to functions (Ark: Completion engine should know more about?
#1818, R: Completions: Adding parentheses inside ofdebug()
andundebug()
#2338).Bug Fixes
QA Notes
In the R Console:
enc2native()
, using the?
operator. Literally, type?enc2
and allow the completions to pop-up. Accept the completion forenc2native
. There should be no trailing parentheses. You should complete to?enc2native
and not?enc2native()
.str()
orargs()
function to a function, while accepting a completion for that function. Let's use thenew.env()
function as an example. Start typingargs(new.)
and allow the completions to pop-up. Accept the completion fornew.env
. There should be no trailing parenthese. You should complete toargs(new.env)
, which works and reveals the arguments, not toargs(new.env())
, which just returnsNULL
.Created on 2025-02-10 with reprex v2.1.1