We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e026aff commit e2cc68cCopy full SHA for e2cc68c
stdlib/REPL/docs/src/index.md
@@ -343,7 +343,15 @@ mapfoldl mapfoldr
343
344
When a single complete tab-complete result is available at the end of an input line and 2 or more characters
345
have been typed, a hint of the completion will show in a lighter color.
346
-This can be disabled via `Base.active_repl.options.hint_tab_completes = false`.
+This can be disabled via `Base.active_repl.options.hint_tab_completes = false` or by adding
347
+```
348
+atreplinit() do repl
349
+ if VERSION >= v"1.11.0-0"
350
+ repl.options.hint_tab_completes = false
351
+ end
352
+end
353
354
+to your `~/.julia/config/startup.jl`.
355
356
!!! compat "Julia 1.11"
357
Tab-complete hinting was added in Julia 1.11
0 commit comments