about summary refs log tree commit diff stats
path: root/src/io/cell.nim
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2022-07-23 16:54:02 +0200
committerbptato <nincsnevem662@gmail.com>2022-07-23 17:39:06 +0200
commite7b53775a3f52cb5d8da865213c5dc38b954e33c (patch)
tree200741f8ed965f407c1a6af8823705db133bf3d4 /src/io/cell.nim
parentc7f25b2fe470849e028f9502d3da0851f149f065 (diff)
downloadchawan-e7b53775a3f52cb5d8da865213c5dc38b954e33c.tar.gz
Improved incremental search: support unicode
Diffstat (limited to 'src/io/cell.nim')
-rw-r--r--src/io/cell.nim6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/io/cell.nim b/src/io/cell.nim
index abcb8f92..4d808dda 100644
--- a/src/io/cell.nim
+++ b/src/io/cell.nim
@@ -35,6 +35,12 @@ type
   FlexibleLine* = object
     str*: string
     formats*: seq[FormatCell]
+    marks*: seq[Mark]
+
+  Mark* = ref object
+    x*: int
+    width*: int
+    format*: Format
 
   FlexibleGrid* = seq[FlexibleLine]