Skip to content

Commit d9bdf3b

Browse files
authored
Merge pull request #635 from ty-d/RenameOutputChannelLanguage
Rename the Output Channel Language
2 parents e4e34d9 + 8233749 commit d9bdf3b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@
389389
]
390390
},
391391
{
392-
"id": "objectscript-output",
392+
"id": "vscode-objectscript-output",
393393
"mimetypes": [
394394
"text/x-code-output"
395395
]

src/extension.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,10 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
863863
documentSelector("objectscript-class"),
864864
new ObjectScriptClassCodeLensProvider()
865865
),
866-
vscode.languages.registerDocumentLinkProvider({ language: "objectscript-output" }, new DocumentLinkProvider()),
866+
vscode.languages.registerDocumentLinkProvider(
867+
{ language: "vscode-objectscript-output" },
868+
new DocumentLinkProvider()
869+
),
867870

868871
/* Anything we use from the VS Code proposed API */
869872
...proposed

0 commit comments

Comments
 (0)