18 lines
454 B
XML
18 lines
454 B
XML
$ pda config get display_ascii_art
|
|
true
|
|
|
|
$ pda config get store.default_store_name
|
|
store
|
|
|
|
$ 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'?
|