https://github.com/tumashu/bbdb-handy.git
git clone 'git://github.com/tumashu/bbdb-handy.git'
Author: Feng Shu mailto:tumashu@163.com
Version: 0.0.1
bbdb-handy is a BBDB tool, when in headers (TO: and CC:) of message-mode buffer, Type TAB key will will pop up a BBDB window as email-address chooser.
https://github.com/tumashu/bbdb-handy
(require 'bbdb-handy)
Add the below line to your emacs config file.
(bbdb-handy-enable)
The function bbdb-handy-enable
only rebind some key in bbdb-mode-map
and message-mode-map
, user can do this job by hand, for example:
;; bbdb-mode
(define-key bbdb-mode-map "g" 'bbdb-handy-display-all-records)
(define-key bbdb-mode-map "q" 'bbdb-handy-quit-window)
(define-key bbdb-mode-map "p" 'bbdb-handy-bbdb-push-mail)
(define-key bbdb-mode-map "\C-s" 'bbdb-handy-search-records)
(define-key bbdb-mode-map "b" 'bbdb-handy-search-records)
(define-key bbdb-mode-map "\C-c\C-c" 'bbdb-handy-push-mail)
(define-key bbdb-mode-map (kbd "RET") 'bbdb-handy-push-mail-and-quit-window)
;; Message-mode
(define-key message-mode-map "\t" 'bbdb-handy-message-tab)
—
Converted from bbdb-handy.el
by el2markdown.