9 references to SmartIndent
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
Formatting\CSharpFormattingInteractionService.cs (1)
45var isSmartIndent = _editorOptionsService.GlobalOptions.GetOption(IndentationOptionsStorage.SmartIndent, LanguageNames.CSharp) == FormattingOptions2.IndentStyle.Smart;
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
Formatting\FormattingEngineTests.cs (2)
33{ IndentationOptionsStorage.SmartIndent, FormattingOptions2.IndentStyle.Smart }, 975{ IndentationOptionsStorage.SmartIndent, FormattingOptions2.IndentStyle.None }
SplitStringLiteral\SplitStringLiteralCommandHandlerTests.cs (1)
73workspace.GlobalOptions.SetGlobalOption(IndentationOptionsStorage.SmartIndent, document.Project.Language, indentStyle);
Microsoft.CodeAnalysis.EditorFeatures (1)
Options\TextBufferOptionProviders.cs (1)
64IndentStyle = optionsProvider.GlobalOptions.GetOption(IndentationOptionsStorage.SmartIndent, languageServices.Language)
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Formatting\CoreFormatterTestsBase.cs (1)
86workspace.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)
85var 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)