Skip to content

Commit

Permalink
fix call to python_get_completions from R completions (#4206)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinushey committed Jan 23, 2019
1 parent 5f4833c commit 7f7da42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/session/modules/SessionRCompletions.R
Expand Up @@ -1850,7 +1850,7 @@ assign(x = ".rs.acCompletionTypes",
# If the R console is requesting completions, but the Python REPL is
# active, then delegate to that machinery.
if (isConsole && .rs.reticulate.replIsActive())
return(.rs.rpc.python_get_completions(line))
return(.rs.rpc.python_get_completions(line, NULL))

# Inject 'params' into the global env to provide for completions in
# parameterized R Markdown documents
Expand Down

0 comments on commit 7f7da42

Please sign in to comment.