Skip to content

Commit 03b7072

Browse files
committed
Add completionOn configuration for cabal
1 parent 64b6a68 commit 03b7072

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

docs/Release.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Follow this list for items that must be completed for release of the `vscode-has
66
- Fix vulnerabilities.
77
- [ ] Run `yarn outdated` to find outdated package version, review what needs to be updated.
88
- `yarn upgrade-interactive` and `yarn upgrade-interactive --latest` is helpful here.
9+
- [ ] Run `haskell-language-server vscode-extension-schema` with the latest `haskell-language-server` to check if there have new fields.
910
- [ ] SemVer Compatible Version Bump in `package.json`
1011
- For pre-releases, we follow the version convention at: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#prerelease-extensions. We use `major.EVEN_NUMBER.patch` for release versions and `major.ODD_NUMBER.patch` for pre-release versions. For example: `2.0.*` for release and `2.1.*` for pre-release.
1112
- [ ] Update ChangeLog.md. The output of `./GenChangelogs.hs` usually suffices.

package.json

+6
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,12 @@
227227
"scope": "resource",
228228
"type": "boolean"
229229
},
230+
"haskell.plugin.cabal.completionOn": {
231+
"default": true,
232+
"description": "Enables cabal completions",
233+
"scope": "resource",
234+
"type": "boolean"
235+
},
230236
"haskell.plugin.callHierarchy.globalOn": {
231237
"default": true,
232238
"description": "Enables callHierarchy plugin",

0 commit comments

Comments
 (0)