Files
dotfiles/home/fish/functions/fwt.fish
2024-07-31 13:11:51 +02:00

4 lines
116 B
Fish

function fwt --description "Jump to Git worktree directory"
cd (git worktree list | awk '{print $1}' | fzf)
end