summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2025-11-14 16:25:14 -0500
committerBen Sima <ben@bsima.me>2025-11-14 16:25:14 -0500
commitbf608be61e97bab08e3f26f249762e63630549b4 (patch)
tree55b67443d6d127c31431ef3b00406933aa3d42c8
parent08da90e893c14760cbfe41baaafa3683769f7110 (diff)
Remove blank lines after build completes
- Replace cursor down movement with single newline at end - Cursor now stays at bottom of status lines - No extra blank space between build output and next prompt
-rw-r--r--Omni/Log/Concurrent.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Log/Concurrent.hs b/Omni/Log/Concurrent.hs
index 86a3853..b064190 100644
--- a/Omni/Log/Concurrent.hs
+++ b/Omni/Log/Concurrent.hs
@@ -68,7 +68,7 @@ withLineManager nss action = do
result <- action mgr
- ANSI.hCursorDown IO.stderr numLines
+ IO.hPutStrLn IO.stderr ""
writeIORef currentLineManager Nothing
writeIORef namespaceLines Map.empty
pure result