Skip to content

Commit b490488

Browse files
Don't issue message on actual config
In e356b99 ('Set up language server configuration automatically') a global LSP configuration has been introduced. It issued a message when the configuration has been actual and there was nothing to do. It turned to be quite nasty since it appears quite often. Let's remove it.
1 parent 28384ef commit b490488

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/extension.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ async function initGlobalEmmyrc() {
3232
const existingEmmyrc = JSON.parse(f);
3333
const upToDate = _.isMatch(existingEmmyrc, emmyrc);
3434
if (upToDate) {
35-
vscode.window.showInformationMessage(`${globalEmmyrcPath} is up to date`);
3635
return;
3736
}
3837

0 commit comments

Comments
 (0)