Upgrade Tide

This commit is contained in:
2025-08-08 13:09:49 +02:00
parent a62f7626d2
commit 7dad183fbf
15 changed files with 63 additions and 43 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