Closed
Description
- The config was added with Introduce generic config for plugins #691
- As far i am able to test, ghcide plugins seems to ignore their sections
- With this config in
.vscode/settings.json
{
"haskell": {
"plugin" : {
"importLens" : {
"codeLensOn" : false
},
"ghcide-type-lenses" : {
"codeLensOn" : false
}
}
}
}
i see import lenses are removed but no type sigs ones:
- I took plugin descriptors from https://github.com/haskell/haskell-language-server/blob/master/ghcide/src/Development/IDE/Plugin/HLS/GhcIde.hs#L20-L26, not sure if they are the correct way to use in the configuration