mirror of
https://github.com/kristoferssolo/solorice.git
synced 2026-03-18 08:09:40 +00:00
10 lines
223 B
Fish
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
|