# # taskwarrior shell integration # # Copyright © 2018 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # # Source repository: http://git.madduck.net/v/etc/zsh.git # if whence task >/dev/null; then function t() { task "$@"; } alias t\?='alias -rm t[-+a-z]' alias ta='t add' alias tc='t call' alias th='t attach' alias tn='t next' alias tl='t all' alias ty='t sync' alias td='t done' alias te='t edit' alias tu='t undo' alias tm='t modify' alias ts='t start' alias t+='t annotate' run_at_most_every 5m \ t 2>/dev/null || : fi # vim:ft=zsh