Skip to content

Commit 35188d8

Browse files
committed
Use the conventional language name
This matches how other language servers appear in the output window, e.g. 'TypeScript' or 'Ruby'
1 parent 0d67adc commit 35188d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ function activateHieNoCheck(context: ExtensionContext, uri: Uri, folder?: Worksp
180180
};
181181

182182
// Set a unique name per workspace folder (useful for multi-root workspaces).
183-
const langName = 'Haskell HIE' + (folder ? ` ( ${folder.name} )` : '');
183+
const langName = 'Haskell' + (folder ? ` ( ${folder.name} )` : '');
184184
const outputChannel: OutputChannel = window.createOutputChannel(langName);
185185
outputChannel.appendLine('[client] run command = "' + serverPath + ' ' + runArgs.join(' ') + '"');
186186
outputChannel.appendLine('[client] debug command = "' + serverPath + ' ' + debugArgs.join(' ') + '"');

0 commit comments

Comments
 (0)