summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-10-14 20:42:37 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-10-14 20:42:37 +0200
commitfdf1f3eb574eba71adb2dbdc8fb7df3f61a8c4ba (patch)
treece415d1f2f8129b39e5928f7893691496f739d0b
parent56f6611eadf4e2165ba29742dfd5ac6a76d60149 (diff)
menuconfig: Mention some ncurses ESCDELAY investigation
-rwxr-xr-xmenuconfig.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/menuconfig.py b/menuconfig.py
index e4bff2c..7815bfe 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -669,6 +669,10 @@ def menuconfig(kconf):
# report if you run into issues. Some suitable small default value could be
# used here instead in that case. Maybe it's silly to not put in the
# smallest imperceptible delay here already, though I don't like guessing.
+ #
+ # (From a quick glance at the ncurses source code, ESCDELAY might only be
+ # relevant for mouse events there, so maybe escapes are assumed to arrive
+ # in one piece already...)
os.environ.setdefault("ESCDELAY", "0")
# Enter curses mode. _menuconfig() returns a string to print on exit, after