From 0ee421dcde50513aa7290abb15c28e50abace04f Mon Sep 17 00:00:00 2001 From: Arhik Date: Tue, 28 May 2024 13:43:39 +0530 Subject: [PATCH] update `LineEdit.complete_line` with stdlib repl completion changes (#348) Fixes #347 --- src/repl.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repl.jl b/src/repl.jl index ccdb833..8648a64 100644 --- a/src/repl.jl +++ b/src/repl.jl @@ -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)