1 write to OtherOptions
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Protocol\Converters\FormattingOptionsConverter.cs (1)
63OtherOptions = otherOptions
4 references to OtherOptions
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Protocol\Converters\FormattingOptionsConverter.cs (2)
136if (value.OtherOptions is not null) 138foreach (var item in value.OtherOptions)
Microsoft.VisualStudio.LanguageServices.Xaml (2)
Implementation\LanguageServer\Handler\Formatting\AbstractFormatDocumentHandlerBase.cs (1)
46OtherOptions = formattingOptions.OtherOptions?.AsUntyped()
Implementation\LanguageServer\Handler\Formatting\FormatDocumentOnTypeHandler.cs (1)
47var options = new XamlFormattingOptions { InsertSpaces = request.Options.InsertSpaces, TabSize = request.Options.TabSize, OtherOptions = request.Options.OtherOptions?.AsUntyped() };