From a866108af2c6c008e37a32c61cee931efa5e4f9a Mon Sep 17 00:00:00 2001
From: =?utf8?q?Aur=C3=A9lien=20Aptel?= <aurelien.aptel@gmail.com>
Date: Fri, 15 May 2009 00:39:51 +0200
Subject: [PATCH] tab moves the cursor instead of inserting spaces.

---
 st.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/st.c b/st.c
index 79fb161..c24bb1d 100644
--- a/st.c
+++ b/st.c
@@ -566,7 +566,7 @@ tputtab(void) {
         space--;
     
     for(; space > 0; space--)
-        tputc(' ');
+        tcursor(CSright);
 }
 
 void
-- 
2.20.1