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 7e90803 commit 3b8c48aCopy full SHA for 3b8c48a
src/Errata/Internal/Render.hs
@@ -106,7 +106,8 @@ renderSourceLines slines (Block {..}) lspans = unsplit "\n" sourceLines
106
107
-- The resulting source lines.
108
-- Extra prefix for padding.
109
- sourceLines = prefix : makeSourceLines 0 [minLine .. maxLine]
+ sourceLines = mconcat [replicateB padding " ", " ", TB.fromText styleLinePrefix]
110
+ : makeSourceLines 0 [minLine .. maxLine]
111
112
-- Whether there will be a multiline span.
113
hasConnMulti = M.size (M.filter (any pointerConnect) pointersGrouped) > 1
0 commit comments