Hello Pelle,
There is a bug in Comment and Uncomment functionnality.
Paste this piece of code:
int main(int argc, char *argv[])
{
printf("The Begining\n");
for (i = 0; i < 10; i++) {
// Comment
printf("i : %d", i);
}
printf("The End!\n");
return 0;
}
Now select text from "The Begining" to "The End" and Comment the selected text.
You should have:
int main(int argc, char *argv[])
{
// printf("The Begining\n");
// for (i = 0; i < 10; i++) {
// Comment => No comment has been added
// printf("i : %d", i);
// }
// printf("The End!\n");
return 0;
}
Now uncomment the same block.
You should have:
int main(int argc, char *argv[])
{
printf("The Begining\n");
for (i = 0; i < 10; i++) {
Comment => The comment has disappeared
printf("i : %d", i);
}
printf("The End!\n");
return 0;
}
Could you correct this bug.
Thank you and have a nice day.