Skip to content

Commit

Permalink
fix: enable llm-ls on all types of files (#85)
Browse files Browse the repository at this point in the history
* fix: enable `llm-ls` on all files

* feat: bump to `0.1.3`
  • Loading branch information
McPatate authored Oct 10, 2023
1 parent 213d151 commit f40fbeb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "huggingface-vscode",
"displayName": "llm-vscode",
"description": "LLM powered development for VS Code",
"version": "0.1.2",
"version": "0.1.3",
"publisher": "HuggingFace",
"icon": "small_logo.png",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function activate(context: vscode.ExtensionContext) {
};

const clientOptions: LanguageClientOptions = {
documentSelector: [{ scheme: "file" }],
documentSelector: [{ scheme: "*" }],
};
client = new LanguageClient(
'llm',
Expand Down

0 comments on commit f40fbeb

Please sign in to comment.