5 writes to AutoFormattingOptions
Microsoft.CodeAnalysis.EditorFeatures (1)
Options\TextBufferOptionProviders.cs (1)
66AutoFormattingOptions = optionsProvider.GlobalOptions.GetAutoFormattingOptions(languageServices.Language),
Microsoft.CodeAnalysis.ExternalAccess.Razor (1)
RazorCSharpFormattingInteractionService.cs (1)
53AutoFormattingOptions = autoFormattingOptions.UnderlyingObject,
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Features\Options\IndentationOptionsStorage.cs (1)
20AutoFormattingOptions = globalOptions.GetAutoFormattingOptions(document.Project.Language),
Handler\Formatting\FormatDocumentOnTypeHandler.cs (1)
70AutoFormattingOptions = _globalOptions.GetAutoFormattingOptions(document.Project.Language)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
86AutoFormattingOptions = _globalOptions.GetAutoFormattingOptions(document.Project.Language)
4 references to AutoFormattingOptions
Microsoft.CodeAnalysis.CSharp.Features (1)
BraceCompletion\AbstractCurlyBraceOrBracketCompletionService.cs (1)
42if (!options.AutoFormattingOptions.FormatOnCloseBrace)
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpIndentationService.cs (1)
58if (!options.AutoFormattingOptions.FormatOnReturn)
Formatting\CSharpSyntaxFormattingService.cs (2)
132(token.IsKind(SyntaxKind.CloseBraceToken) && OnlySmartIndentCloseBrace(indentationOptions.AutoFormattingOptions)) || 133(token.IsKind(SyntaxKind.OpenBraceToken) && OnlySmartIndentOpenBrace(indentationOptions.AutoFormattingOptions));