Skip to content

Commit

Permalink
NEWS: improve the hint for disabling on-the-fly tab completion (#53006)
Browse files Browse the repository at this point in the history
Followup to #51229
  • Loading branch information
IanButterworth committed Jan 22, 2024
1 parent 47d31ac commit 59e505c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 59e505c

Please sign in to comment.