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

We always write code like this formal:

void main(){    
  if(){    
    if()   
    }

alt text

but when I use notepad++, the display is:

void main(){    
if(){    
if()    
}

alt text

How to use the notepad++ to auto indent?

Thanks to Jonathan, I have set it, but it does not take any effect. The snapshot is below:

alt text

I am using notepad++ version 5.1.3.

share|improve this question
21  
Hi Turion, welcome to Stack Overflow! I re-saved so your images work; users with <15 rep can't post images because we had some.. er.. issues.. with that. – Jeff Atwood Jan 5 '09 at 6:51

9 Answers

Notepad++ will only auto-insert subsequent indents if you manually indent the first line in a block; otherwise you can re-indent your code after the fact using TextFX > TextFX Edit > Reindent C++ code.

share|improve this answer
1  
If your version is missing the DLL you can get it from the ZIP 5.9.0 version. Some of the later versions did not include this DLL. notepad-plus-plus.org/download/v5.9.0.html – Fostah Mar 9 '12 at 18:31
1  
I actually found this while looking for a way to format javascript code. Turns out, this works for .js files as well! – sacredfaith Apr 19 '12 at 15:57

Download and use the plugin NppAutoIndent in Notepad++.

http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central

share|improve this answer
2  
Thanks, this actually works! – DMan Jul 15 '10 at 0:48
It says there is no matching for html/xml for now. Can you suggest one for xml ? – IronBlossom Sep 25 '12 at 12:10
have you tried notepad# plugin? – cikatomo Feb 27 at 20:22
I'm getting compatibility issues with NppAutoIndent :/ – HugoFS Apr 19 at 15:36

There seems to be an option for auto-format of XML atleast. It can be found at TextFX->TextFX HTML Tidy->Tidy: reindent XML

share|improve this answer

If the TextFX menu does not exist, you need to download & install the plugin. Plugins->Plugin Manager->Show Plugin Manager and then check the plugin TextFX Characters. Click 'install,' restart Notepad++.

In version Notepad++ v6.1.3, I resolve with: Plugin Manager->Show Plugin Manager** and then check the plugin "Indent By Fold"

share|improve this answer
Indent by fold is awesome. The fact that it works in arbitrary formatting (XML, C/++/#, etc.) is great. Only problem with it is the "undo" stack. When used, if you wish to undo to a point before when you indented, you have to undo through every line re-indentation, as it doesn't get added to the stack as a single command. Basically, be careful when working with long files. – Bracketworks Jan 26 at 14:21

Most developers of text editing programs misuse this name (auto-indent). the correct name is "maintain indentation", auto-indent is what you actually want but not implemented i would also like to see this feature in notepad++

share|improve this answer

In the latest version (at least), you can find it through:

  • Settings (menu)
  • Preferences...
  • MISC (tab)
  • lower-left checkbox list
  • "Auto-indent" is the 2nd option in this group

[EDIT] Though, I don't think it's had the best implementation of Auto-indent. So, check to make sure you have version 5.1 -- auto-indent got an overhaul recently, so it auto-corrects your indenting.


Do also note that you're missing the block for the 2nd if:

void main(){
  if(){
    if() { }  # here
  }
}
share|improve this answer
5  
Note that this auto-indent setting in Notepad++ assumes you do the first indent in a block manually; it doesn't auto-format the code for you. – scronide Jan 5 '09 at 7:05
I got your meaning just now,please forgive my poor Eng... My mother language is Chinese... – Turion Jan 5 '09 at 12:49

To Indent a XML file in notepad++, TextFX > TextFX HTML Tidy > Tidy Reindent XML (last option in Menu Bar) Please correct if I am wrong

share|improve this answer

You can use 'Indent by fold' plugin. Install it from the plugin manager. It works fine for me.

share|improve this answer
This is the best. – Nanda Jan 19 at 11:13
it does not unintend the closing brace – cikatomo Feb 27 at 20:14
Indent by fold is great, except that it only indents by fold ;) In situations where you've indented a list initialization, unless the language uses a folding character to delimit the initializer, it'll end up un-indenting. An example is a multi-line array initialization in PHP using array( ... ), where () are non-folding. – Bracketworks Mar 21 at 12:23

You can use the Tab button to insert indent when you're writing your code.

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.