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 56909d7 commit 2e9119dCopy full SHA for 2e9119d
stdlib/REPL/docs/src/index.md
@@ -341,7 +341,15 @@ mapfoldl mapfoldr
341
342
When a single complete tab-complete result is available at the end of an input line and 2 or more characters
343
have been typed, a hint of the completion will show in a lighter color.
344
-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
345
+```
346
+atreplinit() do repl
347
+ if VERSION >= v"1.11.0-0"
348
+ repl.options.hint_tab_completes = false
349
+ end
350
+end
351
352
+to your `~/.julia/config/startup.jl`.
353
354
!!! compat "Julia 1.11"
355
Tab-complete hinting was added in Julia 1.11
0 commit comments