summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-03-31 05:54:19 +0200
committerhut <hut@lavabit.com>2010-03-31 05:54:19 +0200
commit4828d3c2653f1319edcc9094eb6801ac2af3d535 (patch)
treef9fb93454c8ad89bd8b5c12a645972794518415c
parent4fdc58b802cb6e67c3f87c41570e00fdd0432312 (diff)
downloadranger-4828d3c2653f1319edcc9094eb6801ac2af3d535.tar.gz
defaults.keys: added a few shortcuts ("@", "#")
-rw-r--r--ranger/defaults/keys.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ranger/defaults/keys.py b/ranger/defaults/keys.py
index f34c4372..451fcc8d 100644
--- a/ranger/defaults/keys.py
+++ b/ranger/defaults/keys.py
@@ -147,6 +147,8 @@ def initialize_commands(map):
 	map('f', fm.open_console(cmode.COMMAND_QUICK, 'find '))
 	map('tf', fm.open_console(cmode.COMMAND, 'filter '))
 	map('d', hint='d//u// (disk usage) d//d// (cut)')
+	map('@', fm.open_console(cmode.OPEN, '@'))
+	map('#', fm.open_console(cmode.OPEN, 'p!'))
 
 	# --------------------------------------------- jump to directories
 	map('gh', fm.cd('~'))
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172