-
-
Notifications
You must be signed in to change notification settings - Fork 448
Open
Labels
Description
Dear developers,
first of all thank you very much for the very nice and useful plugin!
I have a minor issue to report.
To reproduce the issue, do the following steps:
- select in c/c++ the alternate delims '//' by using <leader>ca
- select several lines in visual mode, e.g.
printf("one\n");
printf("two\n");
printf("three\n");- comment these lines by using <leader>cc
what I get is the following:
/* printf("one\n"); */
// printf("two\n");
/* printf("three\n"); */while I expected the following output:
// printf("one\n");
// printf("two\n");
// printf("three\n");kind regards Cristiano
schneiderfelipe