dotfiles/fish/functions/_tide_parent_dirs.fish

8 lines
220 B
Fish
Raw Normal View History

2023-10-08 22:26:07 -05:00
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))
end