Uncomment multiline code in eclipse

eclipse

Solution

Try using Ctr+Shift+C This should work

Problem

Yes, this could be duplicate of Eclipse comment/uncomment shortcut? But, answers given their are not working for my case. I have formatted java code and When I select and use `ctrl + shift + /` it looks like ``` /* * if (isKilled) { Log.i("TAG", "Killed"); } */ ``` But when I use `ctrl + shift + /` for above selected code, eclipse is not un-commenting my code. I tried `ctrl + shift + \`, `ctrl + shift + /` and `ctrl + \`. Nothing worked. I always manually remove *s even if commented code is very big. How to do this? I also want *s to be removed.

Original source

Related problems