Skip to content

Commit e453ce8

Browse files
committed
tmuxp ls: Alphabetize
1 parent 10e5561 commit e453ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tmuxp/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,5 +931,5 @@ def command_convert(config):
931931
def command_ls():
932932
tmuxp_dir = Path.home() / '.tmuxp'
933933
if tmuxp_dir.exists() and tmuxp_dir.is_dir():
934-
for f in tmuxp_dir.iterdir():
934+
for f in sorted(tmuxp_dir.iterdir()):
935935
print(f.stem)

0 commit comments

Comments
 (0)