Skip to content

Commit

Permalink
feat: remove builtin func completion (#37)
Browse files Browse the repository at this point in the history
Signed-off-by: he1pa <[email protected]>
  • Loading branch information
He1pa authored Feb 21, 2024
1 parent 165050b commit d3f75ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "kcl",
"displayName": "KCL",
"description": "Language extension for KCL",
"version": "0.1.4",
"version": "0.1.5",
"engines": {
"vscode": "^1.63.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function autoCompletionItems(): vscode.CompletionItem[] {
return [
...snippetCompletions.map(({label, text}) => createSnippetCompletion(label, vscode.CompletionItemKind.Snippet, text, "")),
...KeywordCompletions.map(({label, text}) => createSnippetCompletion(label, vscode.CompletionItemKind.Keyword, text, "")),
...BuiltinFunctionsCompletions.map(({label, text, doc}) => createSnippetCompletion(label, vscode.CompletionItemKind.Function, text, doc)),
// ...BuiltinFunctionsCompletions.map(({label, text, doc}) => createSnippetCompletion(label, vscode.CompletionItemKind.Function, text, doc)),
];
}

Expand Down

0 comments on commit d3f75ac

Please sign in to comment.