summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-03-31 05:59:52 +0200
committerhut <hut@lavabit.com>2010-03-31 05:59:52 +0200
commit6d3a0155ba8310cb96c3ad023e7a62d7bd683129 (patch)
treefcb1505bc76555e81e0d4e8c7fd168047379ff34
parent66d74284d641a37bf0bab98356e2cff7eb2b10ff (diff)
downloadranger-6d3a0155ba8310cb96c3ad023e7a62d7bd683129.tar.gz
defaults.keys: unbind Q in console so we can type it!
-rw-r--r--ranger/defaults/keys.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/defaults/keys.py b/ranger/defaults/keys.py
index 21671a4d..c9afbc00 100644
--- a/ranger/defaults/keys.py
+++ b/ranger/defaults/keys.py
@@ -227,6 +227,7 @@ def initialize_console_commands(map):
 
 	# ------------------------------------------------ system functions
 	_system_functions(map)
+	map.unbind('Q')  # we don't want to quit with Q in the console...
 
 	map(KEY_F1, lambda arg: arg.fm.display_command_help(arg.wdg))
 	map(ctrl('c'), ESC, wdg.close())