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

"match not found" on symlinks with nushell #1024

Open
LFS6502 opened this issue Mar 23, 2025 · 2 comments · May be fixed by #1032
Open

"match not found" on symlinks with nushell #1024

LFS6502 opened this issue Mar 23, 2025 · 2 comments · May be fixed by #1032

Comments

@LFS6502
Copy link

LFS6502 commented Mar 23, 2025

Fresh EndeavourOS install using nushell on alacritty.

> 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

The last command should not be erroring.

My configuration:
https://github.com/LFS6502/eos-dotfiles/tree/5c105caf6b5ada285004e2def62ddb76f6a02638/.config/nushell

@LFS6502
Copy link
Author

LFS6502 commented Mar 23, 2025

I tested the same scenario under zsh, it works fine.

@LFS6502
Copy link
Author

LFS6502 commented Apr 2, 2025

I figured something out.

zoxide add foosym makes it work. It seems like this is happening:

zoxide looks for foosym in the current directory and does not find it. However, it will gladly find it only if it is already in the database. This issue with symlinks only happens on nushell as far as I can tell.

> 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 │
╰───┴──────┴──────┴──────┴────────────────╯

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