Browse Source

[Formatting] Set wrap options to do not change.

newNRvisualizers
Mike Krüger 14 years ago
parent
commit
2786d0c49f
  1. 12
      ICSharpCode.NRefactory.CSharp/Formatter/FormattingOptionsFactory.cs

12
ICSharpCode.NRefactory.CSharp/Formatter/FormattingOptionsFactory.cs

@ -175,12 +175,12 @@ namespace ICSharpCode.NRefactory.CSharp @@ -175,12 +175,12 @@ namespace ICSharpCode.NRefactory.CSharp
BlankLinesBetweenMembers = 1,
KeepCommentsAtFirstColumn = true,
ChainedMethodCallWrapping = Wrapping.WrapIfTooLong,
MethodCallArgumentWrapping = Wrapping.WrapIfTooLong,
ChainedMethodCallWrapping = Wrapping.DoNotChange,
MethodCallArgumentWrapping = Wrapping.DoNotChange,
NewLineAferMethodCallOpenParentheses = true,
MethodCallClosingParenthesesOnNewLine = true,
IndexerArgumentWrapping = Wrapping.WrapIfTooLong,
IndexerArgumentWrapping = Wrapping.DoNotChange,
NewLineAferIndexerOpenBracket = false,
IndexerClosingBracketOnNewLine = false,
@ -344,12 +344,12 @@ namespace ICSharpCode.NRefactory.CSharp @@ -344,12 +344,12 @@ namespace ICSharpCode.NRefactory.CSharp
BlankLinesBetweenMembers = 1,
KeepCommentsAtFirstColumn = true,
ChainedMethodCallWrapping = Wrapping.WrapIfTooLong,
MethodCallArgumentWrapping = Wrapping.WrapIfTooLong,
ChainedMethodCallWrapping = Wrapping.DoNotChange,
MethodCallArgumentWrapping = Wrapping.DoNotChange,
NewLineAferMethodCallOpenParentheses = true,
MethodCallClosingParenthesesOnNewLine = true,
IndexerArgumentWrapping = Wrapping.WrapIfTooLong,
IndexerArgumentWrapping = Wrapping.DoNotChange,
NewLineAferIndexerOpenBracket = false,
IndexerClosingBracketOnNewLine = false,

Loading…
Cancel
Save