Skip to content

Commit

Permalink
fix(editor): use human-readable output channel names (#6629)
Browse files Browse the repository at this point in the history
Changes the names of output channels our editor uses to make them friendlier.
  • Loading branch information
DonIsaac committed Oct 16, 2024
1 parent d9159a2 commit cf92730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editors/vscode/client/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import { join } from 'node:path';

const languageClientId = 'oxc-vscode';
const languageClientName = 'oxc';
const outputChannelName = 'oxc_language_server';
const traceOutputChannelName = 'oxc_language_server.trace';
const outputChannelName = 'Oxc';
const traceOutputChannelName = 'Oxc (Trace)';
const commandPrefix = 'oxc';

const enum OxcCommands {
Expand Down

0 comments on commit cf92730

Please sign in to comment.