Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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' :

  1. to quickly comment/uncomment a line (like ctrl d is for removing a line)
  2. 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"
  ...
/ -->

share|improve this question
for single line comment you can use ctrl + /. – Harry Joy Apr 4 '11 at 5:06

7 Answers

up vote 51 down vote accepted

For single line comment you can use Ctrl + / and for multiple line comment you can use Ctrl + Shift + / after selecting the lines you want to comment in java editor.

share|improve this answer
cool ! works great for both java and xhtml file. it even uses the /* */ for multiline java codes – Albert Kam Apr 4 '11 at 6:11
1  
also works for ruby! – Sadiksha Gautam May 13 '12 at 10:43
CTRL-7

does comment/uncomment in the Java Editor.

share|improve this answer
Thanks, this works for java editor, but not for xhtml file – Albert Kam Apr 4 '11 at 6:09

Use

Ctrl + SHIFT + L which will open a list of all major shortcuts for eclipse.

  1. ForSingle line comment Ctrl + / (Forwards Slash) and

  2. Single line uncomment Ctrl + \ (Backslash)

  3. For Multiline comment Ctrl + Shift + / (Forwards Slash) and

  4. Multiline uncomment Ctrl + Shift + \ (Backslash)

share|improve this answer
2  
Found it ! It's ctrl shift c in my eclipse, and toggle comment/uncomment works for both java code and xhtml file. But the comment on java code use // even for multiple line, and not /* */ .. but i think it's ok :-) – Albert Kam Apr 4 '11 at 6:07
  1. Single line comment Ctrl + /
  2. Single line uncomment Ctrl + /

  1. Multiline comment Ctrl + Shift + /
  2. Multiline uncomment Ctrl + Shift + \ (note the backslash)
share|improve this answer

An easier way is to press Ctrl + Shift + C, just like in Code::Blocks

share|improve this answer
Thank you. In my keyboard I have to press Alt Gr to access / and the common shortcuts don't work (ctrl + / and ctrl + shift + /). This shortcut is what I needed. – zezim Jan 30 at 11:42

Select the code you want to comment, then use control+/ to comment and control+\ to uncomment. It may not work for all types of source files, but it works great for Java code.

share|improve this answer

For a Mac it is the following combination: mac-key + /

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.