1 write to _editorOptionsService
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
Formatting\CSharpFormattingInteractionService.cs (1)
37
_editorOptionsService
= editorOptionsService;
5 references to _editorOptionsService
Microsoft.CodeAnalysis.CSharp.EditorFeatures (5)
Formatting\CSharpFormattingInteractionService.cs (5)
47
var isSmartIndent =
_editorOptionsService
.GlobalOptions.GetOption(IndentationOptionsStorage.SmartIndent, LanguageNames.CSharp) == FormattingOptions2.IndentStyle.Smart;
60
var options =
_editorOptionsService
.GlobalOptions.GetAutoFormattingOptions(LanguageNames.CSharp);
95
var options = textBuffer.GetSyntaxFormattingOptions(
_editorOptionsService
, parsedDocument.LanguageServices, explicitFormat: true);
106
var options = textBuffer.GetSyntaxFormattingOptions(
_editorOptionsService
, parsedDocument.LanguageServices, explicitFormat: true);
121
var indentationOptions = textBuffer.GetIndentationOptions(
_editorOptionsService
, parsedDocument.LanguageServices, explicitFormat: false);