Import madtty, use it to deal with colors from now on as it needs to know what is...
[apps/madmutt.git] / lib-ui / curs_lib.c
index 1051759..437ffbc 100644 (file)
@@ -26,6 +26,7 @@
 #include "mutt.h"
 #include "pager.h"
 #include "charset.h"
+#include "madtty.h"
 
 /* not possible to unget more than one char under some curses libs, and it
  * is impossible to unget function keys in SLang, so roll our own input
@@ -309,16 +310,17 @@ void mutt_show_error (void)
 
 void curses_initialize(void)
 {
-    if (initscr () == NULL) {
-        puts _("Error initializing terminal.");
-        exit (1);
-    }
+    initscr();
+    start_color();
+    madtty_init_colors();
     ci_start_color();
-    keypad(stdscr, true);
-    cbreak();
     noecho();
-    typeahead (-1);               /* simulate smooth scrolling */
+    raw();
+    keypad(stdscr, true);
+    typeahead(-1);
     meta(stdscr, true);
+    curs_set(0);
+    ESCDELAY = 50;
 }
 
 /*