diff options
author | hut <hut@lavabit.com> | 2010-03-11 22:45:24 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-03-12 00:46:47 +0100 |
commit | 5c692d0f2ef9d5e5ae5bbfa56282e852753c74b7 (patch) | |
tree | 63ce26bbceaea8f35a82d1869804b7d932483254 | |
parent | e8c3b58065d90cf28f97941768f9787239b19d04 (diff) | |
download | ranger-5c692d0f2ef9d5e5ae5bbfa56282e852753c74b7.tar.gz |
ranger.commands: added e=edit alias to make :e unambiguous.
It previously collided with :eval
-rw-r--r-- | ranger/commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ranger/commands.py b/ranger/commands.py index 6438d20b..834e358b 100644 --- a/ranger/commands.py +++ b/ranger/commands.py @@ -470,3 +470,5 @@ def get_command(name, abbrev=True): def command_generator(start): return (cmd + ' ' for cmd in by_name if cmd.startswith(start)) +alias(e=edit) # to make :e unambiguous. + |