Skip to content

Commit

Permalink
update LineEdit.complete_line with stdlib repl completion changes (#…
Browse files Browse the repository at this point in the history
…348)

Fixes #347
  • Loading branch information
arhik authored May 28, 2024
1 parent 5327ede commit 0ee421d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ mutable struct DebugCompletionProvider <: REPL.CompletionProvider
state::DebuggerState
end

function LineEdit.complete_line(c::DebugCompletionProvider, s)
function LineEdit.complete_line(c::DebugCompletionProvider, s; hint=true)
partial = REPL.beforecursor(s.input_buffer)
full = LineEdit.input_string(s)

Expand Down

0 comments on commit 0ee421d

Please sign in to comment.