about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBjörn <wilecoyote2015@users.noreply.github.com>2019-12-28 09:34:33 +0100
committerGitHub <noreply@github.com>2019-12-28 09:34:33 +0100
commitbeea5bc78b8c96eb4de96cd6176393e543e95b29 (patch)
treef402fcfa43de9410a8b13f86e8ff0517d32979a3
parent0c4b97aec363443024a02eba02ee42f0b456d719 (diff)
downloadranger-beea5bc78b8c96eb4de96cd6176393e543e95b29.tar.gz
cd: append sep to multiple results of tab matching
-rwxr-xr-xranger/config/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index 651b2640..ef907cbd 100755
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -275,7 +275,7 @@ class cd(Command):
             return None
         if len(paths) == 1:
             return start + paths[0] + sep
-        return [start + dirname for dirname in paths]
+        return [start + dirname + sep for dirname in paths]
 
 
 class chain(Command):