Uncomment java code in eclipse shortcut -


i comment java code multiple lines using shortcut ctrl + shift + /. :

 /*  * system.out.println("shree"); test123 t = new test123();  *   * int result = t.mult(5, 5); system.out.println(result);  */ 

but when try uncomment it, looking this. uncomment used ctrl + shift + \

 * system.out.println("shree"); test123 t = new test123();  *   * int result = t.mult(5, 5); system.out.println(result); 

my question is, when used shortcut uncomment java code multiple line initial /* , end */ go * (asterix sign) before every line not go. have remove manually , time consuming.

so there shortcut give me solution , save time.

instead of commenting /* commented code */, use ctrl + shift + c comments/uncomments each of selected lines separately using //

i'm on eclipse mars, used work way in luna well.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -