alias cvn { { return « $+ $2 $+ $1 $+ » }
E.g if %c = 2
echo Found $cvn(%c,12) entry
should return
Found «2» entry
with the '2' in color

However, it give
Found «» entry

Even if i use echo Found $cvn($eval(%c,2),12) entry,it still produce the same result

What is wrong?