Automatic commit
[selector.git] / selector.cc
index 4d86da2..2dadb5d 100644 (file)
@@ -791,7 +791,7 @@ int main(int argc, char **argv) {
          << " -z      remove the zsh history line prefix" << endl
          << " -i      invert the order of lines" << endl
          << " -e      start in regexp mode" << endl
-         << " -a      case sensitive" << endl
+         << " -a      start in case sensitive mode" << endl
          << " -m      monochrome mode" << endl
          << " -q      make a flash instead of a beep on an edition error" << endl
          << " --      all following arguments are filenames" << endl
@@ -890,8 +890,10 @@ int main(int argc, char **argv) {
   // Here we start to display with curse
 
   initscr();
-
+  cbreak();
   noecho();
+  // nonl();
+  intrflush(stdscr, FALSE);
 
   // So that the arrow keys work
   keypad(stdscr, TRUE);