You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
01 #include <stdio.h>
02
03 int main() {
04 This is a line comment
05 printf("Hello, World!\n"); // Printing Hello World
06 /*
07 This is a block comment.
08 It spans multiple lines.
09 */
10 return 0;
11 }
I have mapped toggle to <leader>x, I want to toggle all the block comment when I hit this keymap on line 07 (or 08). But currently is not working. The result of this command right now is the following:
01 #include <stdio.h>
02
03 int main() {
04 This is a line comment
05 printf("Hello, World!\n"); // Printing Hello World
06 /*
07 // This is a block comment.
08 It spans multiple lines.
09 */
10 return 0;
11 }
The text was updated successfully, but these errors were encountered:
Hi! Currently this doesn't work:
I have mapped toggle to
<leader>x
, I want to toggle all the block comment when I hit this keymap on line 07 (or 08). But currently is not working. The result of this command right now is the following:The text was updated successfully, but these errors were encountered: