diff --git a/fish/.config/fish/functions/w.fish b/fish/.config/fish/functions/w.fish new file mode 100644 index 0000000..670810b --- /dev/null +++ b/fish/.config/fish/functions/w.fish @@ -0,0 +1,6 @@ +function w + set -l out (workon $argv) + if test "$status" -eq 0 + cd $out + end +end