Skip to content

Commit

Permalink
fix(vscode): correct trace server id
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Dec 11, 2023
1 parent 4c88fab commit 4265544
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
13 changes: 1 addition & 12 deletions extensions/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -384,18 +384,7 @@
}
}
},
"vue-semantic-server.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"vue-syntactic-server.trace.server": {
"vue.trace.server": {
"scope": "window",
"type": "string",
"enum": [
Expand Down
4 changes: 2 additions & 2 deletions extensions/vscode/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ async function doActivate(context: vscode.ExtensionContext, createLc: CreateLang
const outputChannel = vscode.window.createOutputChannel('Vue Language Server');

client = createLc(
'vue-server',
'Vue Server',
'vue',
'Vue',
getDocumentSelector(),
await getInitializationOptions(context),
6009,
Expand Down

0 comments on commit 4265544

Please sign in to comment.