File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,13 @@ public class CompletionItem
7272 [ JsonProperty ( NullValueHandling = NullValueHandling . Ignore ) ]
7373 public TextEditContainer AdditionalTextEdits { get ; set ; }
7474 /// <summary>
75+ /// An optional set of characters that when pressed while this completion is active will accept it first and
76+ /// then type that character. *Note* that all commit characters should have `length=1` and that superfluous
77+ /// characters will be ignored.
78+ /// </summary>
79+ [ JsonProperty ( NullValueHandling = NullValueHandling . Ignore ) ]
80+ public Container < string > CommitCharacters { get ; set ; }
81+ /// <summary>
7582 /// An optional command that is executed/// after* inserting this completion./// Note* that
7683 /// additional modifications to the current document should be described with the
7784 /// additionalTextEdits-property.
@@ -85,4 +92,4 @@ public class CompletionItem
8592 [ JsonProperty ( NullValueHandling = NullValueHandling . Ignore ) ]
8693 public object Data { get ; set ; }
8794 }
88- }
95+ }
You can’t perform that action at this time.
0 commit comments