From 629e6115d67ad4b1c96609652e6ea781c552131c Mon Sep 17 00:00:00 2001 From: chris Date: Wed, 12 Nov 2025 09:28:25 +0000 Subject: [PATCH] Update .config/shell/aliasrc --- .config/shell/aliasrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 996c85d..4606d67 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -97,9 +97,9 @@ alias \ alias \ sail='[ -f sail ] && sh sail || sh vendor/bin/sail' \ yi="yarn install" \ - yr="yarn" \ + y="yarn" \ ci="composer install" \ - cm="composer" \ + c="composer" \ tk="go-task" \ mux="tmuxinator" \ mex="tmuxinator stop-all" \ @@ -174,7 +174,7 @@ function git_main_branch() { } # Yazi shortcut that allows setting the current working directory on exit -function y() { +function yz() { local tmp="$(mktemp -t "yazi-cwd.XXXXXX")" cwd yazi "$@" --cwd-file="$tmp" IFS= read -r -d '' cwd < "$tmp"