feat(fish): add a function to change directory to the output of workon

This commit is contained in:
Bruno Carlin 2025-02-11 15:23:05 +01:00
parent 8d10ee325f
commit abf981cc85

View file

@ -0,0 +1,6 @@
function w
set -l out (workon $argv)
if test "$status" -eq 0
cd $out
end
end