double bracket tests now do regex on '==' between two strings

fixed line wrapping causing weird cursor issues
This commit is contained in:
2026-02-27 21:25:01 -05:00
parent 0c40f17b60
commit f0a000343b
3 changed files with 11 additions and 5 deletions

View File

@@ -835,12 +835,12 @@ impl Layout {
pos.col += c_width;
if pos.col > term_width {
pos.row += 1;
pos.col = left_margin + c_width;
pos.col = c_width;
}
}
if pos.col >= term_width {
pos.row += 1;
pos.col = left_margin;
pos.col = 0;
}
pos