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.
2 parents 7c8dee5 + 56a7371 commit 4da13cbCopy full SHA for 4da13cb
vscode-dotty/src/worksheet.ts
@@ -156,7 +156,7 @@ class Worksheet implements Disposable {
156
hoverMessage: new vscode.MarkdownString().appendCodeblock(runResult)
157
}
158
const decorationMargin = this.margin - line.text.length
159
- const decorationText = resultLines[0] + (resultLines.length > 1 ? `<${resultLines.length - 1} lines hidden>` : "")
+ const decorationText = resultLines[0] + (resultLines.length > 1 ? `<${resultLines.length - 1} lines hidden, hover to see full output>` : "")
160
const decorationType = this.createDecoration(decorationMargin, decorationText)
161
const decoration = new Decoration(decorationType, decorationOptions)
162
this.decorations.push(decoration)
0 commit comments