We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d7831 commit 95bd6f7Copy full SHA for 95bd6f7
src/Components/Autocomplete.fs
@@ -34,7 +34,7 @@ module Autocomplete =
34
let result = createEmpty<CompletionItem> ()
35
result.kind <- c.GlyphChar |> convertToInt |> unbox
36
result.label <- c.Name
37
- result.insertText <- c.Code
+ result.insertText <- c.ReplacementText
38
result)
39
40
let mapHelptext (sug : CompletionItem) (o : HelptextResult) =
src/Core/DTO.fs
@@ -40,7 +40,7 @@ module DTO =
41
type Completion = {
42
Name : string
43
- Code : string
+ ReplacementText : string
44
Glyph : string
45
GlyphChar: string
46
}
0 commit comments