You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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 │
╰───┴──────┴──────┴──────┴────────────────╯
Fresh EndeavourOS install using
nushell
onalacritty
.The last command should not be erroring.
My configuration:
https://github.com/LFS6502/eos-dotfiles/tree/5c105caf6b5ada285004e2def62ddb76f6a02638/.config/nushell
The text was updated successfully, but these errors were encountered: