Open
Description
In c/c++, lots of block comments appear in following style:
/* *
* Definition for singly-linked list.
* int function(int x){
* ...
* }
*/
When we want to cancel this /* block comment */
, we use Shift+Alt+A
. Usually, the expacted result is:
Definition for singly-linked list.
int function(int x){
...
}
or, at least (one *
is ignored):
*
Definition for singly-linked list.
int function(int x){
...
}
but, in fact, what we get is:
*
* Definition for singly-linked list.
* int function(int x){
* ...
* }
So, I think this feature needs to be enhanced. ❤️
Metadata
Metadata
Assignees
Labels
No labels