We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c4c53 commit 230a4a4Copy full SHA for 230a4a4
src/Language/LSP/CodeAction/Utils.idr
@@ -94,7 +94,8 @@ printClause l i (WithClause _ lhsraw rig wvraw prf flags csraw) = do
94
pure (relit l ((pack (replicate i ' ')
95
++ show lhs
96
++ " with \{showCount rig}(" ++ show wval ++ ")"
97
- ++ maybe "" (\ nm => " proof " ++ show nm) prf
+ -- TODO: remove `the` after fix idris-lang/Idris2#3418
98
+ ++ maybe "" (the (_ -> _) $ \(rg, nm) => " proof " ++ showCount rg ++ show nm) prf
99
++ "\n"))
100
++ showSep "\n" cs)
101
printClause l i (ImpossibleClause _ lhsraw) = do
0 commit comments