diff options
author | bptato <nincsnevem662@gmail.com> | 2023-06-09 14:35:54 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-06-09 14:35:54 +0200 |
commit | b39e35e46773258cb103397b2372612308c22ae0 (patch) | |
tree | a0d0db4e9759ba750b565f337f97bfee346cb5d9 /src/data | |
parent | 00d7836d8a3d0101bd282e3acce58d65ed0220fe (diff) | |
download | chawan-b39e35e46773258cb103397b2372612308c22ae0.tar.gz |
Fix 'F' missing from fullwidth chars + display bugs
Diffstat (limited to 'src/data')
-rw-r--r-- | src/data/charwidth.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/charwidth.nim b/src/data/charwidth.nim index daec31ee..c19647f0 100644 --- a/src/data/charwidth.nim +++ b/src/data/charwidth.nim @@ -36,7 +36,7 @@ const ( status &= line[i] inc i case status - of "W": add(firstcol, result[0]) + of "W", "F": add(firstcol, result[0]) of "A": add(firstcol, result[1]) of "H": add(firstcol, result[2]) )() |