Skip to content

Commit

Permalink
handle message from complete_methods!
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Jan 23, 2025
1 parent 090e291 commit 1a46931
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions stdlib/REPL/src/REPLCompletions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1097,6 +1097,9 @@ function complete_keyword_argument(partial::String, last_idx::Int, context_modul
last_word = partial[wordrange] # the word to complete
kwargs = Set{String}()
for m in methods
# if MAX_METHOD_COMPLETIONS is hit a single TextCompletion is return by complete_methods! with an explanation
# which can be ignored here
m isa TextCompletion && continue
m::MethodCompletion
possible_kwargs = Base.kwarg_decl(m.method)
current_kwarg_candidates = String[]
Expand Down

0 comments on commit 1a46931

Please sign in to comment.