From 23b64f38d924cd69887520c5613695b0de37f15f Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Tue, 6 May 2008 20:35:34 +0100 Subject: [PATCH] Allow mutt completion to include local usernames. --- bash_completion | 2 ++ debian/changelog | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bash_completion b/bash_completion index 5f465e78..1b6bd59e 100644 --- a/bash_completion +++ b/bash_completion @@ -4820,6 +4820,8 @@ _muttaddr() { _muttaliases _muttquery + cur=${COMP_WORDS[COMP_CWORD]} + COMPREPLY=( ${COMPREPLY[@]} $( compgen -u -- "$cur" ) ) return 0 } diff --git a/debian/changelog b/debian/changelog index fb0274fd..69b88953 100644 --- a/debian/changelog +++ b/debian/changelog @@ -22,6 +22,8 @@ bash-completion (20080501-1) UNRELEASED; urgency=low (Closes: #474517) * Allow tsocks completion. (Closes: #409423) + * Update mutt completion to handle local usernames. + (Closes: #416655) -- David Paleino Thu, 01 May 2008 23:11:27 +0200