Skip to content

Commit

Permalink
mu4e.texi: add note about bbdb address completion
Browse files Browse the repository at this point in the history
Fixes #2691
  • Loading branch information
djcb committed Apr 14, 2024
1 parent 29ce969 commit 48822a3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions mu4e/mu4e.texi
Original file line number Diff line number Diff line change
Expand Up @@ -3612,6 +3612,21 @@ such as @file{~/.emacs.d/init.el}) the following @emph{after} the
(setq mu4e-view-show-addresses t)
@end lisp

For recent emacs (29 and later), address-completion may need some extra setup:
@lisp
(add-hook 'message-mode-hook
(lambda ()
(add-to-list 'completion-at-point-functions
#'eudc-capf-complete)))
@end lisp
or, if that does not work:
@lisp
(add-hook 'message-mode-hook
(lambda ()
(add-to-list 'completion-at-point-functions
#'message-expand-name)))
@end lisp

@noindent
After this, you should be able to:
@itemize
Expand All @@ -3621,6 +3636,7 @@ After this, you should be able to:
@end itemize



@node Sauron
@section Sauron

Expand Down

0 comments on commit 48822a3

Please sign in to comment.