This fixes an issue on Windows when the argument to --walker-root was the root of a disk drive (e.g. C:\). Instead of walking the disk root C:\ it walked the current directory. This occurred because we were transforming the fully qualified path C:\ to the relative path C: which caused the current directory to be walked (docs).
Update fastwalk to v1.0.9.
This fixes an issue on Windows when the argument to
--walker-root
was the root of a disk drive (e.g.C:\
). Instead of walking the disk rootC:\
it walked the current directory. This occurred because we were transforming the fully qualified pathC:\
to the relative pathC:
which caused the current directory to be walked (docs).Fixes: https://github.com/junegunn/fzf/issues/4027