Skip to content

Commit

Permalink
feat: Check for new gopls version and install updates by default
Browse files Browse the repository at this point in the history
  • Loading branch information
josa42 committed Jan 6, 2022
1 parent 2e8a449 commit 1096e07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ installed.

| Key | Description | Default |
|------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
| **`go.checkForUpdates`** | **EXPERIMENTAL** Check for gopls updates on start. | disabled |
| **`go.checkForUpdates`** | Check for gopls updates on start. | install |
| **`go.disable`** | Disable gopls features | {} |
| ‣ `completion` | Disable completion feature (Change requires `:CocRestart`) | false |
| ‣ `diagnostics` | Disable handle diagnostics (Change requires `:CocRestart`) | false |
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -625,9 +625,9 @@
}
},
"go.checkForUpdates": {
"description": "[EXPERIMENTAL] Check for gopls updates on start.",
"description": "Check for gopls updates on start.",
"type": "string",
"default": "disabled",
"default": "install",
"enum": [
"disabled",
"inform",
Expand Down

0 comments on commit 1096e07

Please sign in to comment.