about summary refs log tree commit diff stats
path: root/buffer.nim
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-01-31 23:03:58 +0100
committerbptato <nincsnevem662@gmail.com>2021-01-31 23:03:58 +0100
commit5dfffae926009defec5cc3ab170c645967c68f33 (patch)
treedf8154a8af182b5e13e6e9b1a1a9b70a3129915c /buffer.nim
parente3a2ad473e2239bef3726e3ad6657f5f41c9462c (diff)
downloadchawan-5dfffae926009defec5cc3ab170c645967c68f33.tar.gz
meh
Diffstat (limited to 'buffer.nim')
-rw-r--r--buffer.nim3
1 files changed, 0 insertions, 3 deletions
diff --git a/buffer.nim b/buffer.nim
index 1c244baa..e6be7975 100644
--- a/buffer.nim
+++ b/buffer.nim
@@ -257,7 +257,6 @@ proc cursorNextWord*(buffer: Buffer): bool =
   var r: Rune
   var x = buffer.cursorx
   var y = buffer.cursory
-  eprint 1
   if llen >= 0:
     fastRuneAt(buffer.rawtext[y], x, r, false)
 
@@ -265,14 +264,12 @@ proc cursorNextWord*(buffer: Buffer): bool =
       if x >= llen:
         break
       inc x
-      eprint 2
       fastRuneAt(buffer.rawtext[y], x, r, false)
 
     while r == Rune(' '):
       if x >= llen:
         break
       inc x
-      eprint 3
       fastRuneAt(buffer.rawtext[y], x, r, false)
 
   if x >= llen: