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

In eclipse you can click Ctrl+I at any line, and it'll automatically indent the line or group of lines according to the indentation scheme you chose in the settings.

I'm really missing this feature in Netbeans. Is there any equivalent feature?

I'm aware of Alt+Shift+F but it's not good enough. I want to indent a group of lines, and not all the file.

share|improve this question
   
Alt+Shift+F now reformats only a selection, not the whole file. – Josef Sábl Dec 9 '11 at 14:49

7 Answers

up vote 30 down vote accepted

Open Tools -> Options -> Keymap, then look for the action called "Re-indent current line or selection" and set whatever shortcut you want.

share|improve this answer
Still doesn't work with JavaFX, but eclipse JavaFX plugin have this defect as well, so I guess I just have to wait for JavaFX to mature. Thanks! – Elazar Leibovich Aug 24 '09 at 20:05

I use NetBeans 7.1. Pressing Alt+Shift+F indents your selection. If nothing's selected, it indents the whole file.

share|improve this answer

Select the lines you want to reformat (indenting), then hit Alt+Shift+F. Only the selected lines will be reformatted.

share|improve this answer

Shift + Alt + F indents the whole file.

share|improve this answer
See my reply to @Milhous – Elazar Leibovich Aug 29 '09 at 19:47

If you want auto-indent just like Emacs does it on TAB, i.e. indent the current line and move the cursor to the first non-whitespace character, do this:

  1. Go to Tools -> Options -> Editor -> Macros
  2. Create a new macro and call it something like "tabindent"
  3. Insert the following macro code:

    reindent-line caret-line-first-column caret-begin-line

  4. Click "Set Shortcut" and press TAB

share|improve this answer

I have netbeans 6.9.1 open right now and ALT+SHIFT+F indents only the lines you have selected.

If no lines are selected then it will indent the whole document you are in.

1 possibly unintended behavior is that if you have selected ONLY 1 line, it must be selected completely, otherwise it does nothing. But you don't have to completely select the last line of a group nor the first.

I expected it to indent only one line by just selecting the first couple of chars but didn't work, yea i know i am lazy as hell...

share|improve this answer
Thanks. Maybe it was fixed since I've written it, maybe I didn't notice and it was always OK. Good to know it's working (almost) as it should now. – Elazar Leibovich Apr 14 '11 at 8:51

Ctrl+Shift+F will do a format of all the code in the page.

share|improve this answer
In the latest Netbeans (6.71) it's Alt+Shift+F and it doesn't work in javaFX mode. Eclipse CDT (for C/C++) has it working. It's still not good enough, as I sometimes want to indent only a few lines, and not all the code (for instance when fixing small portions of big file with bad identation. I don't want to change the indentation of all lines) – Elazar Leibovich Aug 21 '09 at 15:39

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.