summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xranger/config/commands.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index e7ddb200..7c118143 100755
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -106,10 +106,6 @@ class alias(Command):
             self.fm.notify('Syntax: alias <newcommand> <oldcommand>', bad=True)
             return
 
-        if self.arg(1) == 'alias':
-            self.fm.notify("Can't create alias with name 'alias'", bad=True)
-            return
-
         self.fm.commands.alias(self.arg(1), self.rest(2))