console: Use escape sequence instead of reset_term()
diff --git a/stage23/console.c b/stage23/console.c
index f810d196..46fb14ad 100644
--- a/stage23/console.c
+++ b/stage23/console.c
@@ -35,7 +35,7 @@ void console(void) {
} else if (strcmp(prompt, "exit") == 0) {
break;
} else if (strcmp(prompt, "clear") == 0) {
- reset_term();
+ print("\e[2J\e[H");
} else if (strcmp(prompt, "editor") == 0) {
char *new_entry = config_entry_editor("New Entry", "");
if (new_entry != NULL) {
