mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
note in the tutorial the vars that are auto split
Users continue to be surprised that fish auto splits/joins three env
vars but not other similar vars. Mention this in the tutorial to make it
less likely new users are surprised by this behavior.
Fixes #4009
(cherry picked from commit 6f6d3ce520
)
This commit is contained in:
parent
06ea31d0ab
commit
8ed63d63a4
1 changed files with 2 additions and 0 deletions
|
@ -300,6 +300,8 @@ Other variables, like `$PATH`, really do have multiple values. During variable e
|
|||
<outp>/usr/bin /bin /usr/sbin /sbin /usr/local/bin</outp>
|
||||
\endfish
|
||||
|
||||
Note that there are three environment variables that are automatically split on colons to become lists when fish starts running: `PATH`, `CDPATH`, `MANPATH`. Conversely, they are joined on colons when exported to subcommands. All other environment variables (e.g., `LD_LIBRARY_PATH`) which have similar semantics are treated as simple strings.
|
||||
|
||||
Lists cannot contain other lists: there is no recursion. A variable is a list of strings, full stop.
|
||||
|
||||
Get the length of a list with `count`:
|
||||
|
|
Loading…
Reference in a new issue