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 df1c2eb commit 363c633Copy full SHA for 363c633
stdlib/REPL/docs/src/index.md
@@ -316,6 +316,21 @@ lastindex offset string
316
The completion of fields for output from functions uses type inference, and it can only suggest
317
fields if the function is type stable.
318
319
+Dictionary keys can also be tab completed:
320
+
321
+```julia-repl
322
+julia> foo = Dict("qwer1"=>1, "qwer2"=>2, "asdf"=>3)
323
+Dict{String,Int64} with 3 entries:
324
+ "qwer2" => 2
325
+ "asdf" => 3
326
+ "qwer1" => 1
327
328
+julia> foo["q[TAB]
329
330
+"qwer1" "qwer2"
331
+julia> foo["qwer
332
+```
333
334
## Customizing Colors
335
336
The colors used by Julia and the REPL can be customized, as well. To change the
0 commit comments