Complete notmuch address --deduplicate=(no|mailbox|address).
COMPREPLY=( $( compgen -W "true false flag all" -- "${cur}" ) )
return
;;
+ --deduplicate)
+ COMPREPLY=( $( compgen -W "no mailbox address" -- "${cur}" ) )
+ return
+ ;;
esac
! $split &&
case "${cur}" in
-*)
- local options="--format= --output= --sort= --exclude="
+ local options="--format= --output= --sort= --exclude= --deduplicate="
compopt -o nospace
COMPREPLY=( $(compgen -W "$options" -- ${cur}) )
;;