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 2b95357 commit 56a7371Copy full SHA for 56a7371
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