diff --git a/cd/__init__.py b/cd/__init__.py index e045397..cb95ebf 100644 --- a/cd/__init__.py +++ b/cd/__init__.py @@ -21,7 +21,7 @@ def cd_browse_workspace(): absolute_path = os.path.join(directory, file) relative_path = os.path.relpath(absolute_path, start=project.root) paths.append(relative_path) - for path in paths: + for path in sorted(paths): print(path)