Tightens keyword formatting (ok/FAIL/hint/etc.) from two spaces to one. Makes config key suggestions more generous: normalises spaces to underscores, matches against leaf segments, and uses substring matching. Updates all golden files.
18 lines
456 B
XML
18 lines
456 B
XML
$ pda config get display_ascii_art
|
|
true
|
|
|
|
$ pda config get store.default_store_name
|
|
default
|
|
|
|
$ pda config get git.auto_commit
|
|
false
|
|
|
|
# Unknown key with suggestion (typo)
|
|
$ pda config get git.auto_comit --> FAIL
|
|
FAIL unknown config key 'git.auto_comit'
|
|
hint did you mean 'git.auto_commit'?
|
|
|
|
# Unknown key with suggestion (leaf match, no prefix)
|
|
$ pda config get auto_commit --> FAIL
|
|
FAIL unknown config key 'auto_commit'
|
|
hint did you mean 'git.auto_commit'?
|