Skip to content

Commit

Permalink
Publish extention
Browse files Browse the repository at this point in the history
  • Loading branch information
Glyphack committed Sep 23, 2023
1 parent f4686a0 commit 389765d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions client/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "enderpy-language-client",
"description": "Enderpy for Visual Studio Code",
"name": "enderpy-python-lsp",
"author": "Shaygan Hooshyari",
"publisher": "shayganhooshyari",
"description": "Enderpy Python LSP for Visual Studio Code",
"repository": "https://github.com/glyphack/enderpy",
"license": "MIT",
"version": "0.0.1",
"engines": {
"vscode": "^1.65.0"
"vscode": "^1.82.0"
},
"dependencies": {},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion client/vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let client: LanguageClient;

export async function activate(_context: ExtensionContext) {
const traceOutputChannel = window.createOutputChannel("Enderpy Language Server trace");
const command = process.env.SERVER_PATH || "enderpy-lsp";
const command = process.env.SERVER_PATH || "enderpy_lsp";
const run: Executable = {
command,
options: {
Expand Down

0 comments on commit 389765d

Please sign in to comment.