File tree 2 files changed +48
-3
lines changed
2 files changed +48
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog for vscode-haskell
2
2
3
+ ## 2.6.0
4
+
5
+ - Add option to enable/disable ` .cabal ` file support
6
+ ([ #1223 ] ( https://github.com/haskell/vscode-haskell/pull/1223 ) ) by @fendor
7
+ - Upgrade project to use latest eslint version
8
+ ([ #1150 ] ( https://github.com/haskell/vscode-haskell/pull/1150 ) ) by @fendor
9
+ - Fix windows CI
10
+ ([ #1149 ] ( https://github.com/haskell/vscode-haskell/pull/1149 ) ) by @fendor
11
+ - Manually install ghcup into image
12
+ ([ #1119 ] ( https://github.com/haskell/vscode-haskell/pull/1119 ) ) by @fendor
13
+ - bump vscode-languageclient version to 9.0.1
14
+ ([ #1108 ] ( https://github.com/haskell/vscode-haskell/pull/1108 ) ) by @jetjinser
15
+ - Add cabalFormattingProvider to package.json
16
+ ([ #1100 ] ( https://github.com/haskell/vscode-haskell/pull/1100 ) ) by @fendor
17
+
3
18
## 2.5.3
4
19
5
20
- Split out packaging action
Original file line number Diff line number Diff line change 2
2
"name" : " haskell" ,
3
3
"displayName" : " Haskell" ,
4
4
"description" : " Haskell language support powered by the Haskell Language Server" ,
5
- "version" : " 2.5.3 " ,
5
+ "version" : " 2.6.0 " ,
6
6
"license" : " MIT" ,
7
7
"publisher" : " haskell" ,
8
8
"engines" : {
292
292
"scope" : " resource" ,
293
293
"type" : " boolean"
294
294
},
295
+ "haskell.plugin.cabal.hoverOn" : {
296
+ "default" : true ,
297
+ "description" : " Enables cabal hover" ,
298
+ "scope" : " resource" ,
299
+ "type" : " boolean"
300
+ },
301
+ "haskell.plugin.cabal.symbolsOn" : {
302
+ "default" : true ,
303
+ "description" : " Enables cabal symbols" ,
304
+ "scope" : " resource" ,
305
+ "type" : " boolean"
306
+ },
307
+ "haskell.plugin.cabalHaskellIntegration.globalOn" : {
308
+ "default" : true ,
309
+ "description" : " Enables cabalHaskellIntegration plugin" ,
310
+ "scope" : " resource" ,
311
+ "type" : " boolean"
312
+ },
295
313
"haskell.plugin.callHierarchy.globalOn" : {
296
314
"default" : true ,
297
315
"description" : " Enables callHierarchy plugin" ,
334
352
"scope" : " resource" ,
335
353
"type" : " boolean"
336
354
},
337
- "haskell.plugin.explicit-fields.globalOn" : {
355
+ "haskell.plugin.explicit-fields.codeActionsOn" : {
356
+ "default" : true ,
357
+ "description" : " Enables explicit-fields code actions" ,
358
+ "scope" : " resource" ,
359
+ "type" : " boolean"
360
+ },
361
+ "haskell.plugin.explicit-fields.inlayHintsOn" : {
338
362
"default" : true ,
339
- "description" : " Enables explicit-fields plugin " ,
363
+ "description" : " Enables explicit-fields inlay hints " ,
340
364
"scope" : " resource" ,
341
365
"type" : " boolean"
342
366
},
470
494
"scope" : " resource" ,
471
495
"type" : " boolean"
472
496
},
497
+ "haskell.plugin.importLens.inlayHintsOn" : {
498
+ "default" : true ,
499
+ "description" : " Enables importLens inlay hints" ,
500
+ "scope" : " resource" ,
501
+ "type" : " boolean"
502
+ },
473
503
"haskell.plugin.moduleName.globalOn" : {
474
504
"default" : true ,
475
505
"description" : " Enables moduleName plugin" ,
You can’t perform that action at this time.
0 commit comments