diff options
author | bptato <nincsnevem662@gmail.com> | 2021-11-23 21:23:44 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2021-11-23 21:23:44 +0100 |
commit | 26651ab45a6300c65a941dfac2cf22e7163cffd6 (patch) | |
tree | bc45811655c794f74ab5aa1d0835b312fff2217b /src/io/cell.nim | |
parent | f4805eb8c39c6c4116a7cbdd5b5121739fb640ba (diff) | |
download | chawan-26651ab45a6300c65a941dfac2cf22e7163cffd6.tar.gz |
Fix some cursor movement bugs
Diffstat (limited to 'src/io/cell.nim')
-rw-r--r-- | src/io/cell.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/io/cell.nim b/src/io/cell.nim index 74b07353..9587e5dd 100644 --- a/src/io/cell.nim +++ b/src/io/cell.nim @@ -32,6 +32,7 @@ type FixedCell* = object of Cell runes*: seq[Rune] + ow*: int FixedGrid* = seq[FixedCell] |