Let wrapped lines use the last column

master
C. McEnroe 2020-09-07 17:51:09 -04:00
parent 05f94f1b8b
commit 172d01a668
1 changed files with 3 additions and 3 deletions

View File

@ -138,10 +138,10 @@ static int flow(struct Lines *hard, int cols, const struct Line *soft) {
width += wcwidth(wc); width += wcwidth(wc);
} }
if (tab && width < cols) align = width;
if (iswspace(wc) && !tab) wrap = str;
if (width <= cols) { if (width <= cols) {
if (tab && width < cols) align = width; if (wc == L'-') wrap = &str[n];
if (iswspace(wc) && !tab) wrap = str;
if (*str == '-') wrap = &str[1];
str += n; str += n;
continue; continue;
} }