Skip to content

Commit 7e3047f

Browse files
committed
fix(sesh): rename tr alias to troot
Renames the 'tr' alias to 'troot' to prevent collision with the standard POSIX 'tr' (translate) utility. The previous alias was expanded in interactive subshells and Nix build environments, breaking shell startup script evaluation when 'sesh' was absent from the PATH.
1 parent d0ecbfd commit 7e3047f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/home/programs/terminal/tools/sesh/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ in
2121
shellAliases = {
2222
sl = "sesh list";
2323
tl = "sesh last";
24-
tr = ''sesh connect --root "$(pwd)"'';
24+
troot = ''sesh connect --root "$(pwd)"'';
2525
ts = ''sesh connect "$(sesh list | fzf)"'';
2626
};
2727
};

0 commit comments

Comments
 (0)