From 77da21f1e7747cdfeb581aa03a5192287b03a041 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 8 May 2025 13:13:58 -0300 Subject: [PATCH] feat: add cursor blinking --- lua/CC Tweaked/tutel/tutel-host.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index 6111e3d..32f5cdd 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -368,12 +368,13 @@ function drawCommandBar(w, y) term.write("$ ") - local startingIndex = commandBuffer:len() - w + 3 + local startingIndex = commandBuffer:len() - w + 4 if startingIndex < 0 then startingIndex = 0 end term.write(commandBuffer:sub(startingIndex)) + term.setCursorBlink(true) end --[[