in reply to I wanna customize qw()

I don't think there is such an operator, no. (Could be wrong, though.) But according to perlop, qw is "exactly equivalent to
split(' ', q/STRING/);
". So couldn't you just use split? Say you wanted to split on commas instead of whitespace:
my @words = split /,/, q/foo,bar,baz/;