show arrow prefix on eval results in gutter

This commit is contained in:
jess 2026-04-04 22:10:25 -07:00
parent 23fa977ce1
commit 7261678cb9
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ class LineNumberRulerView: NSRulerView {
lineRect.origin.y += tv.textContainerInset.height - visibleRect.origin.y
if let result = evalResults[lineNumber - 1] {
let resultStr = NSAttributedString(string: result, attributes: resultAttrs)
let resultStr = NSAttributedString(string: "\(result)", attributes: resultAttrs)
let resultSize = resultStr.size()
let resultPoint = NSPoint(
x: ruleThickness - resultSize.width - 4,