Clear screen on exit - noice - small file browser (mirror / fork from 2f30.org) | |
git clone git://git.codemadness.org/noice | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit ea82ba864377c3085da350a9476a587bb19ec6a9 | |
parent 1a5eb40d84cc39bdc4420ff3e591068bdfbf6669 | |
Author: sin <[email protected]> | |
Date: Sat, 3 Aug 2019 22:34:23 +0100 | |
Clear screen on exit | |
Diffstat: | |
M noice.c | 2 ++ | |
1 file changed, 2 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/noice.c b/noice.c | |
@@ -258,6 +258,8 @@ initcurses(void) | |
void | |
exitcurses(void) | |
{ | |
+ clear(); | |
+ refresh(); | |
endwin(); /* Restore terminal */ | |
} | |