Skip to content

Commit 1a52382

Browse files
committed
Make output chanel name more human-friendly
According to the documentation, the channel name is: "Human-readable string which will be used to represent the channel in the UI". So it shouldn't break anything. Signed-off-by: Peter Neupauer <peter@neupauer.sk>
1 parent 9a3b3d6 commit 1a52382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tailwindcss-intellisense/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function getUserLanguages(folder?: WorkspaceFolder): Record<string, string> {
7979

8080
export function activate(context: ExtensionContext) {
8181
let module = context.asAbsolutePath(path.join('dist', 'server', 'index.js'))
82-
let outputChannel: OutputChannel = Window.createOutputChannel(CLIENT_ID)
82+
let outputChannel: OutputChannel = Window.createOutputChannel(CLIENT_NAME)
8383

8484
// TODO: check if the actual language MAPPING changed
8585
// not just the language IDs

0 commit comments

Comments
 (0)