7 references to GetIndentationOptions
Microsoft.CodeAnalysis.CSharp.EditorFeatures (4)
Formatting\CSharpFormattingInteractionService.cs (1)
121var indentationOptions = textBuffer.GetIndentationOptions(_editorOptionsService, parsedDocument.LanguageServices, explicitFormat: false);
RawStringLiteral\RawStringLiteralCommandHandler_Return.cs (1)
102var indentationOptions = subjectBuffer.GetIndentationOptions(_editorOptionsService, document.Project.Services, explicitFormat: false);
SplitStringLiteral\SplitStringLiteralCommandHandler.cs (1)
90var indentationOptions = subjectBuffer.GetIndentationOptions(_editorOptionsService, parsedDocument.LanguageServices, explicitFormat: false);
StringCopyPaste\StringCopyPasteCommandHandler.cs (1)
268var indentationOptions = textBuffer.GetIndentationOptions(_editorOptionsService, documentBeforePaste.LanguageServices, explicitFormat: false);
Microsoft.CodeAnalysis.EditorFeatures (3)
AutomaticCompletion\BraceCompletionSessionProvider.BraceCompletionSession.cs (2)
131var indentationOptions = SubjectBuffer.GetIndentationOptions(_editorOptionsService, contextAfterStart.Document.LanguageServices, explicitFormat: false); 289var indentationOptions = SubjectBuffer.GetIndentationOptions(_editorOptionsService, context.Document.LanguageServices, explicitFormat: false);
SmartIndent\SmartIndent.cs (1)
51var indentationOptions = line.Snapshot.TextBuffer.GetIndentationOptions(_editorOptionsService, document.Project.Services, explicitFormat: false);