VS .NET 2003 auto indent in C++ is slowly driving me up the wall. i have just switched it from "Smart" to "Block", since Smart produces indenting i think is deeply unhelpful. any chance of VAX allowing me to indent to my preferred style?
with indenting set to smart i just typed in:
for(int i = 0
i < 20;
i++) {
// some code
}
i often need to wrap for lines when using longer logic blocks. the layout i want is:
for(int i = 0
i < 20;
i++) {
// some code
}
i find that using two tabs when i have to wrap a for, if or while line makes it much easier to distinguish the wrapped line from the code inside the for block without over indenting the code inside the curly brackets.
i think i have been spoilt by several years of editing in VIM