diff options
-rw-r--r-- | ranger/config/commands.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index b283a71b..0edb7586 100644 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -667,6 +667,9 @@ class mkdir(Command): else: self.fm.notify("file/directory exists!", bad=True) + def tab(self): + return self._tab_directory_content() + class touch(Command): """ @@ -684,6 +687,9 @@ class touch(Command): else: self.fm.notify("file/directory exists!", bad=True) + def tab(self): + return self._tab_directory_content() + class edit(Command): """ |