diff options
author | hut <hut@lavabit.com> | 2010-04-14 00:17:40 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-14 00:17:40 +0200 |
commit | daa224d86348f0e0fa39d09feef43e34df56d780 (patch) | |
tree | 82b21efa922df4ff4e2b6b9453293486afd7e6b6 | |
parent | 62974cad55cc556009568c869d4abb8270260747 (diff) | |
download | ranger-daa224d86348f0e0fa39d09feef43e34df56d780.tar.gz |
synchronize key combinations with master branch
-rw-r--r-- | ranger/defaults/keys.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/defaults/keys.py b/ranger/defaults/keys.py index b298f9c0..72b13051 100644 --- a/ranger/defaults/keys.py +++ b/ranger/defaults/keys.py @@ -145,7 +145,7 @@ map('p<bg>', fm.hint('press //p// once again to confirm pasting' \ ', or //l// to create symlinks')) # ---------------------------------------------------- run programs -map('s', fm.execute_command(os.environ['SHELL'])) +map('S', fm.execute_command(os.environ['SHELL'])) map('E', fm.edit_file()) map('.term', fm.execute_command('x-terminal-emulator', flags='d')) map('du', fm.execute_command('du --max-depth=1 -h | less')) @@ -257,7 +257,7 @@ def ctrl_c(arg): map(':', ';', fm.open_console(cmode.COMMAND)) map('>', fm.open_console(cmode.COMMAND_QUICK)) -map('!', fm.open_console(cmode.OPEN)) +map('!', 's', fm.open_console(cmode.OPEN)) map('r', fm.open_console(cmode.OPEN_QUICK)) |