23 lines
440 B
Plaintext
Raw Normal View History

# PINE address-book completion
2009-10-11 22:16:35 +03:00
have pine || have alpine &&
_pineaddr()
{
2009-10-04 19:42:50 +02:00
local cur
2009-10-04 19:42:50 +02:00
COMPREPLY=()
_get_comp_words_by_ref cur
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W '$( awk "{print \$1}" ~/.addressbook \
2>/dev/null)' -- "$cur" ) )
} &&
complete -F _pineaddr -o default pine alpine
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh