mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Prevent STDERR leak from abook detection in mutt completion
Fixes #1737
This commit is contained in:
parent
a7727765dc
commit
0ffa434926
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
if which abook >/dev/null
|
if which abook >/dev/null ^/dev/null
|
||||||
complete -c mutt -f -a '(__fish_print_abook_emails)'
|
complete -c mutt -f -a '(__fish_print_abook_emails)'
|
||||||
complete -c mutt -s c -x -d 'Specify a carbon-copy (CC) recipient' -a '(__fish_print_abook_emails)'
|
complete -c mutt -s c -x -d 'Specify a carbon-copy (CC) recipient' -a '(__fish_print_abook_emails)'
|
||||||
complete -c mutt -s b -x -d 'Specify a blind-carbon-copy (BCC) recipient' -a '(__fish_print_abook_emails)'
|
complete -c mutt -s b -x -d 'Specify a blind-carbon-copy (BCC) recipient' -a '(__fish_print_abook_emails)'
|
||||||
|
|
Loading…
Reference in a new issue