i thought this would be easy to achieve, but so far i'vent 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 a line)
- being able to block 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
/*private String name;
private int age;*/
single line xhtml code, from :
<h:inputText ... />
into
<!-- h:inputText ... / -->
multiple line xhtml code, from :
<h:inputTextarea
rows="xx"
cols="yy"
...
/>
into
<!-- h:inputTextarea
rows="xx"
cols="yy"
...
/ -->


ctrl + /. – Harry Joy Apr 4 '11 at 5:06