One of my favorite features of zsh is autocomplete, especially when I'm completing a filename on a networked machine. But how to you include wildcards (like *) and have it autocomplete from the remote machine?
For instance, say I have file1, file2, and file3 residing on a server; I want to copy all those files to my local machine, so I enter
scp server:~/fi<tab>
zsh then correctly autocompletes to
scp server:~/file
but then when I try to wildcard
scp server:~/file*<tab>
all it does it beep at me (it works correctly if the file paths are local). Is there a set of zsh options that makes this work?
