As of latest update (Kubuntu 24.10, 6.11.0-9-generic), autocomplete no longer works properly with rsync (3.3.0) for file/directory names with spaces
Example:
touch file\ 1.txt
If I do rsync -avz fi
and hit return it autocompletes as normal to
rsync -avz file\ 1.txt <destination directory>
But, if I try rsync -avz file\ and it return, it doesn't autocomplete
I see there's an issue with rsync versions (> 3.2.4) and (older) versions of bash-completion
(https://github.com/scop/bash-completion/pull/910)
This happens on my own machine, not just over ssh
Any ideas how to fix it?
Example:
touch file\ 1.txt
If I do rsync -avz fi
and hit return it autocompletes as normal to
rsync -avz file\ 1.txt <destination directory>
But, if I try rsync -avz file\ and it return, it doesn't autocomplete
I see there's an issue with rsync versions (> 3.2.4) and (older) versions of bash-completion
(https://github.com/scop/bash-completion/pull/910)
This happens on my own machine, not just over ssh
Any ideas how to fix it?
Comment