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
72
72
[ JsonProperty ( NullValueHandling = NullValueHandling . Ignore ) ]
73
73
public TextEditContainer AdditionalTextEdits { get ; set ; }
74
74
/// <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>
75
82
/// An optional command that is executed/// after* inserting this completion./// Note* that
76
83
/// additional modifications to the current document should be described with the
77
84
/// additionalTextEdits-property.
@@ -85,4 +92,4 @@ public class CompletionItem
85
92
[ JsonProperty ( NullValueHandling = NullValueHandling . Ignore ) ]
86
93
public object Data { get ; set ; }
87
94
}
88
- }
95
+ }
You can’t perform that action at this time.
0 commit comments