elvish/pkg/eval/builtin_fn_fs.d.elv

26 lines
616 B
Plaintext
Raw Normal View History

# Changes directory.
#
# This affects the entire process, including parallel tasks that are started
# implicitly (such as prompt functions) or explicitly (such as one started by
# [`peach`]()).
#
# Note that Elvish's `cd` does not support `cd -`.
#
# See also [`$pwd`]().
fn cd {|dirname| }
# If `$path` represents a path under the home directory, replace the home
# directory with `~`. Examples:
#
# ```elvish-transcript
# ~> echo $E:HOME
# /Users/foo
# ~> tilde-abbr /Users/foo
# ▶ '~'
# ~> tilde-abbr /Users/foobar
# ▶ /Users/foobar
# ~> tilde-abbr /Users/foo/a/b
# ▶ '~/a/b'
# ```
fn tilde-abbr {|path| }