Only treat the first tab as the alignment point

このコミットが含まれているのは:
C. McEnroe 2020-02-07 20:29:32 -05:00
コミット 5881a96638

2
ui.c
ファイルの表示

@ -368,7 +368,7 @@ static void wordWrap(WINDOW *win, const char *str) {
int align = 0;
struct Style style = Reset;
while (*str) {
if (*str == '\t') {
if (*str == '\t' && !align) {
waddch(win, ' ');
getyx(win, y, align);
str++;