Merge remote-tracking branch 'coc/master'

This commit is contained in:
sup39 2021-02-19 00:48:47 +08:00
commit 11993a7d5c
2 changed files with 4 additions and 4 deletions

View file

@ -54,13 +54,13 @@ For yarn2 ( >= v2.0.0-rc.36) user want to use local typescript module:
- Run command `yarn dlx @yarnpkg/pnpify --sdk vim`, which will generate
`.vim/coc-settings.json`, with content:
````json
```json
{
"tsserver.tsdk": ".yarn/sdks/typescript/lib",
"eslint.packageManager": "yarn",
"eslint.nodePath": ".yarn/sdks"
} ```
````
}
```
## Features

View file

@ -27,7 +27,7 @@ export default class VersionStatus {
public set loading(isLoading: boolean) {
if (isLoading) {
this._versionBarEntry.text = `Initialing tsserver ${this._versionString}`
this._versionBarEntry.text = `Initializing tsserver ${this._versionString}`
} else {
this._versionBarEntry.text = `TSC ${this._versionString}`
}