File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 321321 }
322322 ],
323323 "engines" : {
324- "vscode" : " ^1.10.1 "
324+ "vscode" : " ^1.12.0 "
325325 },
326326 "activationEvents" : [
327327 " onLanguage:csharp" ,
Original file line number Diff line number Diff line change @@ -90,16 +90,16 @@ _kinds['Class'] = CompletionItemKind.Class;
9090_kinds [ 'Delegate' ] = CompletionItemKind . Class ; // need a better option for this.
9191_kinds [ 'Enum' ] = CompletionItemKind . Enum ;
9292_kinds [ 'Interface' ] = CompletionItemKind . Interface ;
93- _kinds [ 'Struct' ] = CompletionItemKind . Class ; // need a better option for this.
93+ _kinds [ 'Struct' ] = CompletionItemKind . Struct ;
9494
9595// variables
9696_kinds [ 'Local' ] = CompletionItemKind . Variable ;
9797_kinds [ 'Parameter' ] = CompletionItemKind . Variable ;
9898_kinds [ 'RangeVariable' ] = CompletionItemKind . Variable ;
9999
100100// members
101- _kinds [ 'EnumMember' ] = CompletionItemKind . Property ; // need a better option for this.
102- _kinds [ 'Event' ] = CompletionItemKind . Field ; // need a better option for this.
101+ _kinds [ 'EnumMember' ] = CompletionItemKind . EnumMember ;
102+ _kinds [ 'Event' ] = CompletionItemKind . Event ;
103103_kinds [ 'Field' ] = CompletionItemKind . Field ;
104104_kinds [ 'Property' ] = CompletionItemKind . Property ;
105105_kinds [ 'Method' ] = CompletionItemKind . Method ;
You can’t perform that action at this time.
0 commit comments