1
0
Fork 0
mirror of https://github.com/icewind1991/zox synced 2026-06-03 18:34:07 +02:00

fish wrapper

This commit is contained in:
Robin Appelman 2019-11-21 22:53:48 +01:00
commit 85c187f9ef
2 changed files with 7 additions and 2 deletions

View file

@ -127,8 +127,6 @@ fn main() -> Result<(), MainError> {
time: now, time: now,
}) })
} }
dbg!(existing);
} }
} }

7
z.fish Normal file
View file

@ -0,0 +1,7 @@
function addzhist --on-variable PWD
zox --add "$PWD"
end
function z -d "Jump to a recent directory."
cd (zox $argv)
end