Skip to content

Commit

Permalink
Disable completions from utils by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelHentschel committed Nov 17, 2020
1 parent ca5de66 commit 4622fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/completion.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ completionsRequest <- function(response, args, request) {
# use our completion tools
targets <- c(targets, .vsc.getCompletion(frameIdVsc, text, column, line))
}
if(getOption('vsc.completionsFromUtils', TRUE)){
if(getOption('vsc.completionsFromUtils', FALSE)){
# use the completion tools from package utils
targets <- c(targets, getCompletionsFromUtils(text, column, line))
}
Expand Down

0 comments on commit 4622fc0

Please # to comment.