line separator between numbers and rows

This commit is contained in:
Alessandro Mauri 2019-11-16 11:49:33 +01:00
parent 5ec673a9f7
commit 31afd8b2bc

1
ste.c
View File

@ -296,6 +296,7 @@ void drawLines (void)
/* Draw the line number */ /* Draw the line number */
attron(COLOR_PAIR(1)); attron(COLOR_PAIR(1));
mvprintw(i, 0, "%d", ln + 1); mvprintw(i, 0, "%d", ln + 1);
mvaddch(i, t.pad - 1, ACS_VLINE);
attroff(COLOR_PAIR(1)); attroff(COLOR_PAIR(1));
lnMove(i, 0); lnMove(i, 0);