bbdb-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: how to use bbdb-snarf to capture addresses from point


From: Bob Newell
Subject: Re: how to use bbdb-snarf to capture addresses from point
Date: Sun, 26 Jan 2020 18:46:52 -1000

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]