I have a function like this:
p() { cd ~/Clients/$1/Projects/$2; }
Then I can type:
p "Client here" "Project here"
and it takes me to:
~/Clients/Client here/Projects/Project here
Nothing special going on here. But how do I implement autocomplete for this function? I managed to get autocompletion work for the first argument (clients):
_p() { _files -W ~/Clients -/; }
compdef _p p
But how do I autocomplete the second argument (projects)? It needs to be autocompleted from the folder based on the client:
~/Clients/$1/Projects
Hope somebody can help! :-)
A clever person (Mikachu) on IRC helped out:
UPDATE: Change $words[CURRENT-1] to ${(Q)words[CURRENT-1]} to make it work with directories containing spaces: