Files
cmder/vendor/clink_settings.default
David Refoua 27e27cae14 conf: restore the clink's "gray text" auto-suggestions display
The [`autosuggest.inline` feature](https://chrisant996.github.io/clink/clink.html#inline-suggestions) was disabled by default from the config in **a breaking change** from https://github.com/chrisant996/clink/releases/tag/v1.9.20 and later
2026-06-03 11:07:08 +03:30

37 lines
861 B
Plaintext

# For explanation of these and other settings see:
# https://chrisant996.github.io/clink/clink.html
# name: Expand envvars when completing
# type: boolean
match.expand_envvars = True
# name: Sets how command history expansion is applied
# type: enum
# options: off,on,not_squoted,not_dquoted,not_quoted
history.expand_mode = not_dquoted
# name: Skip adding lines prefixed with whitespace
# type: boolean
history.ignore_space = True
# name: The number of history lines to save
# type: integer
history.max_lines = 25000
# name: Share history between instances
# type: boolean
history.shared = False
# name: Auto-answer terminate prompt
# type: enum
# options: off,answer_yes,answer_no
cmd.auto_answer = answer_yes
# name: Doskey completions
# type: color
color.doskey = yellow
# name: Show a suggestion in a muted color
# type: boolean
autosuggest.inline