From 7261678cb9ac4e8125ac55bad9e5994113bc52a4 Mon Sep 17 00:00:00 2001 From: jess Date: Sat, 4 Apr 2026 22:10:25 -0700 Subject: [PATCH] show arrow prefix on eval results in gutter --- src/EditorView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EditorView.swift b/src/EditorView.swift index 0c6bc0d..07cdec2 100644 --- a/src/EditorView.swift +++ b/src/EditorView.swift @@ -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,