Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog for vscode-haskell

## 2.6.1

- Prefer the `set` version for `cabal` and `stack` if there is any
([#1275](https://github.com/haskell/vscode-haskell/pull/1275)) by @fendor
- Make js debugger work
([#1258](https://github.com/haskell/vscode-haskell/pull/1258)) by @dyniec
- Prepare release 2.6.0
([#1103](https://github.com/haskell/vscode-haskell/pull/1103)) by @fendor

## 2.6.0

- Add option to enable/disable `.cabal` file support
Expand Down
20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "haskell",
"displayName": "Haskell",
"description": "Haskell language support powered by the Haskell Language Server",
"version": "2.6.0",
"version": "2.6.1",
"license": "MIT",
"publisher": "haskell",
"engines": {
Expand Down Expand Up @@ -334,6 +334,18 @@
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.eval.codeActionsOn": {
"default": true,
"description": "Enables eval code actions",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.eval.codeLensOn": {
"default": true,
"description": "Enables eval code lenses",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.eval.config.diff": {
"default": true,
"markdownDescription": "Enable the diff output (WAS/NOW) of eval lenses",
Expand All @@ -346,12 +358,6 @@
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.eval.globalOn": {
"default": true,
"description": "Enables eval plugin",
"scope": "resource",
"type": "boolean"
},
"haskell.plugin.explicit-fields.codeActionsOn": {
"default": true,
"description": "Enables explicit-fields code actions",
Expand Down
Loading