summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@hut.pm>2017-09-26 20:43:13 +0200
committerhut <hut@hut.pm>2017-09-26 20:43:13 +0200
commit5e0bfd03f40879cf051abf2a025cf15594f90d8f (patch)
treebbff127d5957b4751d7e4ce16bf4e06e8defc38b
parent467bb6086aef24214f9478005213fdd5f7a0de9e (diff)
downloadranger-5e0bfd03f40879cf051abf2a025cf15594f90d8f.tar.gz
config.commands: fix order of answers for <F1>. Fixes #935
-rwxr-xr-xranger/config/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index be0bbe3e..77d73bb8 100755
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -1159,7 +1159,7 @@ class help_(Command):
         self.fm.ui.console.ask(
             "View [m]an page, [k]ey bindings, [c]ommands or [s]ettings? (press q to abort)",
             callback,
-            list("mkcsq") + [chr(27)]
+            list("mqkcs")
         )