-
HLS in coc (nvim) is helping me through my first big haskell project very nicely, but I accidentally suppressed a certain kind of error (I think its only for the file i was in). How would I be able to revert/edit my file/project specific settings? EDIT: the suppression was done through a coc-codeaction |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi! Afaik you cant disable a specific error in a hls specific configuration you might do it adding some language extension or other pragma in the file if the error was from ghc. is the error shown if you build the project out of hls (with |
Beta Was this translation helpful? Give feedback.
-
I've just see
@maralorn @googleson78 i think you are coc(n?vim) users, is it possible that some errors emitted by ghc and hls could be filtered out by the editor configuration? do you know how could be it reversed if that is the case? |
Beta Was this translation helpful? Give feedback.
Hi! Afaik you cant disable a specific error in a hls specific configuration you might do it adding some language extension or other pragma in the file if the error was from ghc. is the error shown if you build the project out of hls (with
cabal build
orstack build
)?