9 references to SmartIndent
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
Formatting\CSharpFormattingInteractionService.cs (1)
47var isSmartIndent = _editorOptionsService.GlobalOptions.GetOption(IndentationOptionsStorage.SmartIndent, LanguageNames.CSharp) == FormattingOptions2.IndentStyle.Smart;
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
Formatting\FormattingEngineTests.cs (2)
41{ IndentationOptionsStorage.SmartIndent, FormattingOptions2.IndentStyle.Smart }, 1073{ IndentationOptionsStorage.SmartIndent, FormattingOptions2.IndentStyle.None }
SplitStringLiteral\SplitStringLiteralCommandHandlerTests.cs (1)
79workspace.GlobalOptions.SetGlobalOption(IndentationOptionsStorage.SmartIndent, document.Project.Language, indentStyle);
Microsoft.CodeAnalysis.EditorFeatures (1)
Options\TextBufferOptionProviders.cs (1)
68IndentStyle = optionsProvider.GlobalOptions.GetOption(IndentationOptionsStorage.SmartIndent, languageServices.Language)
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Formatting\CoreFormatterTestsBase.cs (1)
88workspace.GlobalOptions.SetGlobalOption(IndentationOptionsStorage.SmartIndent, document.Project.Language, indentStyle);
Microsoft.CodeAnalysis.ExternalAccess.FSharp (2)
Internal\Editor\FSharpEditorFormattingService.cs (1)
68var indentStyle = _globalOptions.GetOption(IndentationOptionsStorage.SmartIndent, LanguageNames.FSharp);
Internal\Editor\FSharpSmartIndentProvider.cs (1)
88var indentStyle = _provider._globalOptions.GetOption(IndentationOptionsStorage.SmartIndent, document.Project.Language);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Options\IndentationOptionsStorage.cs (1)
21IndentStyle = globalOptions.GetOption(SmartIndent, document.Project.Language)