shithub
tenseleyflow
/
ndotfiles
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
ndotfiles
Public
Watch
0
Fork
0
Star
0
ndotfiles
/
fish
/
functions
/
cdf.fish
Fish · 136 bytes
Raw
Blame
History
1
## jump to dir
2
#
3
function
cdf
4
set
-l
dir
(
fd
--type
d
--hidden
--follow
--exclude
.git
|
fzf
)
5
test
-n
"
$dir
"
;
and
cd
"
$dir
"
6
end