rp

simple email tools
git clone https://git.parazyd.org/rp
Log | Files | Refs | README | LICENSE

_rppeek (170B)


      1 #compdef _rppeek rppeek
      2 
      3 function _rppeek {
      4 	sed 's/\t/./g' $HOME/mail/subscriptions | tail -n+3 |
      5 		while IFS=$'\t\n' read -r i; do
      6 			compadd $i
      7 		done
      8 }
      9 
     10 _rppeek "$@"