Open
Description
Hi,
My apologies for opening an issue for a simple question.
- When commenting visual block using NERDComMinimalComment the result will look like below (Which is perfect)
/*{
someblockofcode();
}
// Line comment
{
otherblockofcode();
}*/
- When un-commenting the same visual block the result will look like
{
someblockofcode();
}
Line comment
{
otherblockofcode();
}
The Line comment is as well un-commented.
So my question is is there anyway to invert NERDComMinimalComment on visual mode. A command which will only remove the multiline comment string /* and */.
If there is a none, I will be glad to place a PR for this.
Cheers,
Mo