Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix jumping to symlinks that are not in the database when using nushell #1

Closed
wants to merge 1 commit into from

Conversation

LFS6502
Copy link
Owner

@LFS6502 LFS6502 commented Apr 3, 2025

Fixes ajeetdsouza#1024

Expand path before checking for its type. This solves the issue of ignoring symlinks. Expanding the path is necessary to ensure that it resolves to a directory, as it's possible that the symlink could be a normal file.

Because the path expansion is only done in the guard, the behavior of _ZO_RESOLVE_SYMLINKS remains as intended.

The linked issue shows the problem in detail, but I will duplicate the shell log here:

> zoxide --version
zoxide 0.9.7

> nu --version
0.103.0


> mkdir foo
> touch foo/bar
> ln -s foo foosym
> cd foo
> ls
╭───┬──────┬──────┬──────┬──────────────╮
│ # │ name │ type │ size │   modified   │
├───┼──────┼──────┼──────┼──────────────┤
│ 0 │ bar  │ file │  0 B │ a minute ago │
╰───┴──────┴──────┴──────┴──────────────╯

> cd
> cd foosym
zoxide: no match found

> zoxide add foosym
> cd foosym
> ls
╭───┬──────┬──────┬──────┬────────────────╮
│ # │ name │ type │ size │    modified    │
├───┼──────┼──────┼──────┼────────────────┤
│ 0 │ bar  │ file │  0 B │ 19 seconds ago │
╰───┴──────┴──────┴──────┴────────────────╯

Expand path before checking for its type. This solves the issue of ignoring symlinks.
@LFS6502 LFS6502 closed this Apr 3, 2025
@LFS6502
Copy link
Owner Author

LFS6502 commented Apr 3, 2025

I accidentally opened the PR to my own fork.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

"match not found" on symlinks with nushell
1 participant