I have 2 folders that contains folders
/me/foo/:
a/
b/
c/
/me/bar/:
c/
d/
e/
I want to create completion function for command baz
so that
$ baz [tab]
gives completion arguments as follow
a b c d e
notice the duplicate c
written only once and it doesn't include the trailing slash.
I know how to do completion with _files
but that only gives me file from single directory.
How do I do that?