We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 651c6f7 commit b630a4bCopy full SHA for b630a4b
app/Reactor.hs
@@ -758,6 +758,9 @@ diagFor severity rng msg = J.Diagnostic
758
groupByFst :: Ord a => [(a, b)] -> [(a, [b])]
759
groupByFst = map (\xs -> (fst (head xs), map snd xs)) . List.groupBy ((==) `on` fst) . List.sortBy (comparing fst)
760
761
+-- TODO: Handle multiple error files at the same time
762
+-- This might resolve the issue with errors disappearing
763
+
764
mkDiagnostics :: LogAction (LspT LspContext IO) (WithSeverity T.Text)
765
-> GF.Options -> J.Uri -> IndentForest -> Either SomeException (GF.Err CompileEnv)
766
-> LspT LspContext IO ()
0 commit comments