This website requires JavaScript.
Explore
Help
Register
Sign In
github-mirror
/
fish-shell
Watch
2
Star
0
Fork
0
You've already forked fish-shell
mirror of
https://github.com/fish-shell/fish-shell.git
synced
2024-11-24 01:31:36 +08:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
50f6fa048e
fish-shell
/
tests
/
cd.err
10 lines
144 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Don't resolve symlinks with cd This switches fish to a "virtual" PWD, where it no longer uses getcwd to discover its PWD but instead synthesizes it based on normalizing cd against the $PWD variable. Both pwd and $PWD contain the virtual path. pwd is taught about -P to return the physical path, and -L the logical path (which is the default). Fixes #3350
2018-09-17 09:03:13 +08:00
####################
# cd symlink non-resolution
Teach cd completions about logical paths Prior to this fix, cding into a symlink and then completing .. would complete from the physical directory instead of the logical directory, which could not actually be cd'd to. Teach cd completiond to use the logical directory.
2018-11-04 04:30:55 +08:00
####################
# cd symlink completion
Correctly inherit a virtual PWD PWD is not set in fish vars because it is read only. Use getenv() to fetch it, allowing fish to inherit a virtual PWD. Fixes #5525
2019-01-23 05:07:55 +08:00
####################
# Virtual PWD inheritance
Reference in New Issue
Copy Permalink