dotfiles/.config/fish/functions/ta.fish

7 lines
188 B
Fish

function ta --wraps='tmux attach -t' --description 'alias ta=tmux attach -t'
if type -f tmux &>/dev/null
tmux attach -t $argv
else
missing_package tmux
end
end