mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
182d7ce732
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.
19 lines
189 B
Text
19 lines
189 B
Text
|
|
####################
|
|
# cd symlink non-resolution
|
|
|
|
####################
|
|
# cd symlink completion
|
|
ls:
|
|
../b1
|
|
../b2
|
|
../b3
|
|
../d1/
|
|
../d2/
|
|
../d3/
|
|
../glass/
|
|
cd:
|
|
../a1/
|
|
../a2/
|
|
../a3/
|
|
../rabbithole/
|