Procházet zdrojové kódy

Revert "Set Escape delay to 0"

An ESCDELAY of 0 can break long escape sequences, such as the arrow keys,
on slower terminals.

This reverts commit 2599564e64.
master
ucs před 4 roky
rodič
revize
52d3d514ce
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Zobrazit soubor

@@ -1714,7 +1714,7 @@ static bool initcurses(void *oldmask)
}

settimeout(); /* One second */
set_escdelay(0);
set_escdelay(25);
return TRUE;
}



Načítá se…
Zrušit
Uložit