double bracket tests now do regex on '==' between two strings
fixed line wrapping causing weird cursor issues
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user