vote up 2 vote down star

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 effort. The snapshot is below: alt text

The version of mine is shown as below: alt text My msn is kingkingmax [AT] hotmail.com,can I ask you?

flag
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
hey man, why use Notepad ++? Use eclipse bro, its supoer – Click Upvote Jan 5 '09 at 12:19

4 Answers

vote up 1 vote down

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++

link|flag
vote up 0 vote down

I cannot post pictures correct ,so .....

link|flag
This is not an answer to your question. You are not in a forum, such remark belongs to comments (or to an edit of your question). – PhiLho Jan 5 '09 at 12:08
Bad news to me. I'm a new man.... – Turion Jan 5 '09 at 12:29
vote up 2 vote down

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.

link|flag
vote up 4 vote down

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
  }
}
link|flag
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

Your Answer

Get an OpenID
or

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