mirror of
https://github.com/nushell/nushell.git
synced 2025-07-08 18:37:07 +02:00
# Description Added `debug -v` in case the default parameter is a string so that it will be not be printed literally: - Before ```nu --char: <string> (default: ) ``` ```nu --char: <string> (default: ) ``` ```nu --char: <string> (default: abc) ``` - After ```nu --char: <string> (default: " ") ``` ```nu --char: <string> (default: "\n") ``` ```nu --char: <string> (default: "abc") ``` Other types like `int` remain unaffected. # User-Facing Changes # Tests + Formatting # After Submitting