where that if I want to comment out the t2, because it's not used in the function definition. With visual selection of text t2 without the trailing comma "," and comment with gc, what I saw is
void func(
T1 t1,
T2 //t2,
T3 t3);
But expected behavior is:
void func(
T1 t1,
T2 /* t2 */,
T3 t3);
Is there a good way to achieve the expected result? Thanks!
Hello,
An example that I have
where that if I want to comment out the
t2
, because it's not used in the function definition. With visual selection of textt2
without the trailing comma "," and comment withgc
, what I saw isBut expected behavior is:
Is there a good way to achieve the expected result? Thanks!