Eclipse comment/uncomment shortcut?
问题 I thought this would be easy to achieve, but so far I haven\'t found solutions for comment/uncomment shortcut on both Java class editor and jsf faceted webapp XHTML file editor : to quickly comment/uncomment a line (like ctrl + d is for removing single line) being able to choose multiple lines and comment/uncomment it For example : single line java code , from : private String name; into //private String name; multiple line java code , from : private String name; private int age; into /