Re: how to use bbdb-snarf to capture addresses from point
Bob Newell <[email protected]> Sun, 26 Jan 2020 18:46:52 -1000
| Newsgroups | gmane.emacs.bbdb.user |
|---|---|
| Message-ID | <CADoYgq_e3RD+mNQHcZ=M_RXrGd+nDXZ+8y5emScL_rKrzT037A@mail.gmail.com> |
bbdb-snarf seems to work anywhere. A good way is this. Put point on the email you want to snarf and evaluate (bbdb-snarf (thing-at-point 'email)) You can make an interactive function out of that and map it to a keystroke setting to make it dead simple. (defun bbdb-snarf-email () (interactive) (bbdb-snarf (thing-at-point 'email))) (global-set-key "\C-c \C-r") for instance (be sure you use keystroke setting that's available.) Aloha, Bob Newell Honolulu