Files
archived-solorice/config/fish/functions/lfcd.fish
2026-02-09 22:52:34 +02:00

10 lines
223 B
Fish

function lfcd
set tmp (mktemp -uq)
lf -last-dir-path="$tmp" $argv
if test -f "$tmp"
set dir (cat "$tmp")
test -d "$dir" && test "$dir" != (pwd) && z "$dir"
end
rm -f $tmp 2>/dev/null
end