[cli PoC] emit a newline following input

This commit is contained in:
nick black 2021-11-24 02:29:06 -05:00 committed by nick black
parent 279b3f4cfe
commit 8810ec9bb7

View File

@ -17,6 +17,8 @@ int main(void){
do{ do{
notcurses_get_blocking(nc, &ni); notcurses_get_blocking(nc, &ni);
}while(ni.evtype == NCTYPE_RELEASE); }while(ni.evtype == NCTYPE_RELEASE);
ncplane_putchar(stdn, '\n');
notcurses_render(nc);
notcurses_stop(nc); notcurses_stop(nc);
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }