I have some comments in this format:
/**
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
How to uncomment it?
I have tried shift + ctrl + /, it leads to:
*
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }