Skip to content

Commit

Permalink
Fix capitalization and use LOG_CHANNEL for output
Browse files Browse the repository at this point in the history
  • Loading branch information
timkooi-jobber committed Dec 17, 2024
1 parent 73b18f3 commit 5ff324f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
},
{
"command": "rubyLsp.showOutput",
"title": "Show Output Channel",
"title": "Show output channel",
"category": "Ruby LSP"
}
],
Expand Down
3 changes: 1 addition & 2 deletions vscode/src/rubyLsp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -598,8 +598,7 @@ export class RubyLsp {
),
);
vscode.commands.registerCommand(Command.ShowOutput, async () => {
const workspace = await this.showWorkspacePick();
workspace?.lspClient?.outputChannel.show();
LOG_CHANNEL.show();
});
}

Expand Down

0 comments on commit 5ff324f

Please sign in to comment.