dotfiles/.config/fish/functions/_tide_parent_dirs.fish

11 lines
262 B
Fish
Raw Normal View History

2024-12-15 22:07:18 +01:00
function _tide_parent_dirs --on-variable PWD
2026-05-23 09:04:16 +02:00
set -g _tide_parent_dirs (
string escape -- (
2026-05-23 09:04:16 +02:00
for dir in (string split / -- $PWD)
set -fa parts $dir
string join / -- $parts
end
)
)
2024-12-15 22:07:18 +01:00
end