# # 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 alias t=task alias t\?='alias -rm t 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 tm='t modify' alias ts='t start' run_at_most_every 30s \ task 2>/dev/null || : fi # vim:ft=zsh