@@ -39,7 +39,7 @@ Configure behavior for selection menus via keyword arguments:
39
39
Subtypes of `ConfiguredMenu` will print `cursor`, `up_arrow`, and `down_arrow` automatically
40
40
as needed, your `writeline` method should not print them.
41
41
42
- !!! compat Julia 1.6
42
+ !!! compat " Julia 1.6"
43
43
`Config` is available as of Julia 1.6. On older releases use the global `CONFIG`.
44
44
"""
45
45
function Config (;
@@ -81,7 +81,7 @@ All other keyword arguments are as described for [`TerminalMenus.Config`](@ref).
81
81
`checked` and `unchecked` are not printed automatically, and should be printed by
82
82
your `writeline` method.
83
83
84
- !!! compat Julia 1.6
84
+ !!! compat " Julia 1.6"
85
85
`MultiSelectConfig` is available as of Julia 1.6. On older releases use the global `CONFIG`.
86
86
"""
87
87
function MultiSelectConfig (;
109
109
110
110
Global menu configuration parameters
111
111
112
- !!! compat Julia 1.6
112
+ !!! compat " Julia 1.6"
113
113
`CONFIG` is deprecated, instead configure menus via their constructors.
114
114
"""
115
115
const CONFIG = Dict {Symbol,Union{Char,String,Bool}} ()
@@ -130,7 +130,7 @@ Keyword-only function to configure global menu parameters
130
130
- `supress_output::Bool=false`: Ignored legacy argument, pass `suppress_output` as a keyword argument to `request` instead.
131
131
- `ctrl_c_interrupt::Bool=true`: If `false`, return empty on ^C, if `true` throw InterruptException() on ^C
132
132
133
- !!! compat Julia 1.6
133
+ !!! compat " Julia 1.6"
134
134
As of Julia 1.6, `config` is deprecated. Use `Config` or `MultiSelectConfig` instead.
135
135
"""
136
136
function config (;charset:: Symbol = :na ,
0 commit comments