vscode-remove-comments icon indicating copy to clipboard operation
vscode-remove-comments copied to clipboard

Removes the string which has Comment Delimiter

Open akpmohan07 opened this issue 3 years ago • 1 comments

Language: C On using Remove all Comments Source: #include<stdio.h> int main(){ char s1[] = "qwf"; char s2[] = "/*bef*/"; char s3[] = "//ef"; /*bef*/ //ef } Output: #include<stdio.h> int main(){ char s1[] = "qwf"; char s2[] = "/*bef*/"; char s3[] = " }

The value assigned to s3 should not be removed.

akpmohan07 avatar Nov 13 '20 09:11 akpmohan07