2 writes to FormatOnCloseBrace
Microsoft.CodeAnalysis.ExternalAccess.Razor (1)
RazorAutoFormattingOptions.cs (1)
26FormatOnCloseBrace = formatOnCloseBrace,
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Options\AutoFormattingOptionsStorage.cs (1)
17FormatOnCloseBrace = globalOptions.GetOption(FormatOnCloseBrace, language)
4 references to FormatOnCloseBrace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
Formatting\CSharpFormattingInteractionService.cs (1)
69if (ch == '}' && !options.FormatOnCloseBrace)
Microsoft.CodeAnalysis.CSharp.Features (1)
BraceCompletion\AbstractCurlyBraceOrBracketCompletionService.cs (1)
42if (!options.AutoFormattingOptions.FormatOnCloseBrace)
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Formatting\CSharpSyntaxFormattingService.cs (1)
158return !options.FormatOnCloseBrace || !options.FormatOnTyping;
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Options\AutoFormattingOptionsStorage.cs (1)
30"csharp_format_on_close_brace", AutoFormattingOptions.Default.FormatOnCloseBrace);