mirror of
https://github.com/nushell/nushell.git
synced 2025-08-15 17:33:12 +02:00
display boolean config options as true/false instead of Yes/No (#3043)
This commit is contained in:
@ -22,7 +22,7 @@ Usage:
|
||||
─────────┬─────────────────
|
||||
arg │ python
|
||||
path │ /usr/bin/python
|
||||
builtin │ No
|
||||
builtin │ false
|
||||
─────────┴─────────────────
|
||||
```
|
||||
|
||||
@ -31,7 +31,7 @@ Usage:
|
||||
─────────┬────────────────────────────
|
||||
arg │ cargo
|
||||
path │ /home/bob/.cargo/bin/cargo
|
||||
builtin │ No
|
||||
builtin │ false
|
||||
─────────┴────────────────────────────
|
||||
```
|
||||
|
||||
@ -42,7 +42,7 @@ Usage:
|
||||
─────────┬──────────────────────────
|
||||
arg │ ls
|
||||
path │ nushell built-in command
|
||||
builtin │ Yes
|
||||
builtin │ true
|
||||
─────────┴──────────────────────────
|
||||
```
|
||||
|
||||
@ -51,7 +51,7 @@ Usage:
|
||||
─────────┬──────────────────────────
|
||||
arg │ which
|
||||
path │ nushell built-in command
|
||||
builtin │ Yes
|
||||
builtin │ true
|
||||
─────────┴──────────────────────────
|
||||
```
|
||||
|
||||
@ -62,8 +62,8 @@ Passing the `all` flag identifies all instances of a command or binary
|
||||
───┬─────┬──────────────────────────┬─────────
|
||||
# │ arg │ path │ builtin
|
||||
───┼─────┼──────────────────────────┼─────────
|
||||
0 │ ls │ nushell built-in command │ Yes
|
||||
1 │ ls │ /bin/ls │ No
|
||||
0 │ ls │ nushell built-in command │ true
|
||||
1 │ ls │ /bin/ls │ false
|
||||
───┴─────┴──────────────────────────┴─────────
|
||||
```
|
||||
|
||||
@ -76,7 +76,7 @@ Passing the `all` flag identifies all instances of a command or binary
|
||||
─────────┬────────────────────────────────
|
||||
arg │ ./foo
|
||||
path │ /Users/josephlyons/Desktop/foo
|
||||
builtin │ No
|
||||
builtin │ false
|
||||
─────────┴────────────────────────────────
|
||||
```
|
||||
|
||||
@ -88,7 +88,7 @@ Passing the `all` flag identifies all instances of a command or binary
|
||||
───┬─────┬───────────────┬─────────
|
||||
# │ arg │ path │ builtin
|
||||
───┼─────┼───────────────┼─────────
|
||||
0 │ e │ Nushell alias │ No
|
||||
0 │ e │ Nushell alias │ false
|
||||
───┴─────┴───────────────┴─────────
|
||||
```
|
||||
|
||||
@ -100,6 +100,6 @@ and custom commands
|
||||
───┬──────────────┬────────────────────────┬─────────
|
||||
# │ arg │ path │ builtin
|
||||
───┼──────────────┼────────────────────────┼─────────
|
||||
0 │ my_cool_echo │ Nushell custom command │ No
|
||||
0 │ my_cool_echo │ Nushell custom command │ false
|
||||
───┴──────────────┴────────────────────────┴─────────
|
||||
```
|
||||
|
Reference in New Issue
Block a user