Why Eight-Character Indent? Follow
I can't figure out why I'm getting indentation like
this:
dataContractModel = DataContractModel.LoadDataContractModel(
Store, service.DataContractModelPath, out result);
Note the eight spaces before "Store".
All sorts of things are indenting by eight spaces,
including anonymous types and object initializers. It's driving me crazy, as the
eight characters can add up quickly. Everything else is indenting four
characters at a time, like I intended.
Any help or suggestions are welcome.
--
John
Please sign in to leave a comment.
I believe the option you need to change is "Continuous line indent
multiplier" under Languages -> C# -> Formatting Style -> Other ->
Indentation. If I recall, the default value is '2', and you want '1'.
Mike
That was it, Mike, thanks!
--
John
"Mike Strobel" <mstrobel@cdcsoftware.com> wrote in message
news:g79rh3$gfc$1@is.intellij.net...
>