@ -7,3 +7,4 @@ change cursor pos - w q
add - space
pause - p
@ -35,6 +35,7 @@ int main(void) {
die("malloc returned NULL");
initscr();
noecho();
timeout(0);
curs_set(0);
@ -88,6 +89,13 @@ int main(void) {
cursor--;
break;
case 'p':
timeout(-1);
getch();
clear();
case 'q':
die("Succesfull exit");
The note is not visible to the blocked user.