Skip to content

Commit

Permalink
langserver: remove bad message labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatao Li committed Mar 19, 2020
1 parent 9977cc3 commit ab1d51e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions langserver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class LanguageServerProvider {
fs.mkdirSync(this.extensionStoragePath)
}

item.text = `$(cloud-download) Looking for ${this.languageServerName} updates`
item.text = `Looking for ${this.languageServerName} updates`
item.show()

let platfile = this.languageServerPackage.platformPath
Expand All @@ -134,7 +134,7 @@ export class LanguageServerProvider {

fs.mkdirSync(this.languageServerDirectory)

item.text = `$(desktop-download) Downloading ${this.languageServerName}`
item.text = `Downloading ${this.languageServerName}`
item.show()
workspace.showMessage(`Downloading ${this.languageServerName}`, 'more')

Expand All @@ -144,7 +144,7 @@ export class LanguageServerProvider {
stream.on('finish', resolve)
})

item.text = `$(archive) Extracting ${this.languageServerName}`
item.text = `Extracting ${this.languageServerName}`
item.show()
workspace.showMessage(`Extracting ${this.languageServerName}`, 'more')

Expand Down

0 comments on commit ab1d51e

Please sign in to comment.