Skip to content

c/c++ alternative delims #425

@cridemichel

Description

@cridemichel

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions