提交 987c3dcc 编写于 作者: M Matt Bierner

Support TS string completion item kind

上级 c5a38741
......@@ -136,6 +136,8 @@ class MyCompletionItem extends vscode.CompletionItem {
return vscode.CompletionItemKind.File;
case PConst.Kind.directory:
return vscode.CompletionItemKind.Folder;
case PConst.Kind.string:
return vscode.CompletionItemKind.Constant;
}
return vscode.CompletionItemKind.Property;
}
......
......@@ -31,6 +31,7 @@ export class Kind {
public static readonly type = 'type';
public static readonly variable = 'var';
public static readonly warning = 'warning';
public static readonly string = 'string';
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册