fisher update

This commit is contained in:
Ivan Golikov 2026-05-23 09:04:16 +02:00
parent 5fe7bcd114
commit 0ed893ecd0
15 changed files with 77 additions and 61 deletions

View file

@ -1,7 +1,10 @@
function _tide_parent_dirs --on-variable PWD
set -g _tide_parent_dirs (string escape (
for dir in (string split / -- $PWD)
set -la parts $dir
string join / -- $parts
end))
set -g _tide_parent_dirs (
string escape (
for dir in (string split / -- $PWD)
set -fa parts $dir
string join / -- $parts
end
)
)
end