diff options
author | bptato <nincsnevem662@gmail.com> | 2022-07-23 16:54:02 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2022-07-23 17:39:06 +0200 |
commit | e7b53775a3f52cb5d8da865213c5dc38b954e33c (patch) | |
tree | 200741f8ed965f407c1a6af8823705db133bf3d4 /src/io/cell.nim | |
parent | c7f25b2fe470849e028f9502d3da0851f149f065 (diff) | |
download | chawan-e7b53775a3f52cb5d8da865213c5dc38b954e33c.tar.gz |
Improved incremental search: support unicode
Diffstat (limited to 'src/io/cell.nim')
-rw-r--r-- | src/io/cell.nim | 6 |
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] |