dotfiles/.config/fish/functions/tasko.fish

5 lines
144 B
Fish
Raw Normal View History

function tasko -a id -d 'Open the link of a taskwarrior task by id'
2020-08-15 23:20:08 +00:00
set link (task _get $id.link)
if test -n $link; open $link; end
end