Re: bbdb-handy --- BBDB window as email-address chooser when write an email

2015-06-16 Thread Roland Winkler
On Tue Jun 16 2015 Feng Shu wrote:
 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.

Why not use bbdb-complete-mail?

--
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


??????Re: bbdb-handy --- BBDB window as email-address chooser when write anemail

2015-06-16 Thread ????
The reason is that i don't like the behavor of bbdb-complete-mail,  its code is 
very hard to understand and i can not.add feature my need,   

------
??:Roland Winklerwink...@gnu.org
:2015??6??17?? ?? 4:41
??:Feng Shutuma...@qq.com
:bbdb-infobbdb-info@lists.sourceforge.net;Feng Shutuma...@163.com
:Re: bbdb-handy --- BBDB window as email-address chooser when write anemail
On Tue Jun 16 2015 Feng Shu wrote:
 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.
Why not use bbdb-complete-mail?--
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

bbdb-china.el --- BBDB utils, which let Chinese BBDB users feel easy

2015-06-16 Thread Feng Shu

## Introduce ##

bbdb-china includes some utils, which let Chinese BBDB users feel easy.

1. Search contacts by pinyin

## Download ##

https://github.com/tumashu/bbdb-china

## Install ##

1. Config melpa: http://melpa.org/#/getting-started
2. M-x package-install RET bbdb-china RET
3. Add code to your emacs config file:(for example: ~/.emacs):

```lisp
(require 'bbdb-china)
```

-- 


--
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

bbdb-handy --- BBDB window as email-address chooser when write an email

2015-06-16 Thread Feng Shu

## Introduce ##

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.

## Download ##

https://github.com/tumashu/bbdb-handy

## Install ##

1. Config melpa: http://melpa.org/#/getting-started
2. M-x package-install RET bbdb-handy RET
3. Add code to your emacs config file:(for example: ~/.emacs):

```lisp
(require 'bbdb-handy)
```

## Usage ##

### The easiest way ###

Add the below line to your emacs config file.

```
(bbdb-handy-enable)
```

### The manual way ###

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)
```



-- 

--
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/