12 references to Plaintext
Microsoft.CodeAnalysis.LanguageServer.Protocol (8)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
303
var format = LSP.InsertTextFormat.
Plaintext
;
Protocol\CompletionItem.cs (3)
175
/// The format of the insert text. If omitted, defaults to <see cref="InsertTextFormat.
Plaintext
"/>
188
[DefaultValue(InsertTextFormat.
Plaintext
)]
193
} = InsertTextFormat.
Plaintext
;
Protocol\Internal\Efficiency\OptimizedVSCompletionListJsonConverter.cs (1)
198
if (completionItem.InsertTextFormat is not 0 and not InsertTextFormat.
Plaintext
)
Protocol\Internal\VSInternalDocumentOnAutoInsertResponseItem.cs (2)
21
[DefaultValue(InsertTextFormat.
Plaintext
)]
28
} = InsertTextFormat.
Plaintext
;
Protocol\Internal\VSInternalInlineCompletionItem.cs (1)
44
public InsertTextFormat? TextFormat { get; set; } = InsertTextFormat.
Plaintext
;
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
OnAutoInsert\RawStringOnAutoInsertTests.cs (1)
234
Assert.Equal(InsertTextFormat.
Plaintext
, result.TextEditFormat);
Microsoft.CodeAnalysis.Razor.Workspaces (2)
AutoInsert\AutoClosingTagOnAutoInsertProvider.cs (1)
76
var format = InsertTextFormat.
Plaintext
;
Completion\RazorCompletionListProvider.cs (1)
165
var insertTextFormat = razorCompletionItem.IsSnippet ? InsertTextFormat.Snippet : InsertTextFormat.
Plaintext
;
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (1)
Completion\RazorCompletionListProviderTest.cs (1)
252
Assert.Equal(InsertTextFormat.
Plaintext
, converted.InsertTextFormat);