From 59e505c378373a4be75fd504341a31bdc85572bf Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Mon, 22 Jan 2024 15:14:55 -0500 Subject: [PATCH] NEWS: improve the hint for disabling on-the-fly tab completion (#53006) Followup to https://github.com/JuliaLang/julia/pull/51229 --- NEWS.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index ed065939ad067..d1f9ca49bb4c7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -140,7 +140,14 @@ Standard library changes #### REPL * Tab complete hints now show in lighter text while typing in the repl. To disable - set `Base.active_repl.options.hint_tab_completes = false` ([#51229]). + set `Base.active_repl.options.hint_tab_completes = false` interactively, or in startup.jl: + ``` + if VERSION >= v"1.11.0-0" + atreplinit() do repl + repl.options.hint_tab_completes = false + end + end + ``` ([#51229]). * Meta-M with an empty prompt now toggles the contextual module between the previous non-Main contextual module and Main so that switching back and forth is simple. ([#51616], [#52670])