org-contacts.el, add name alias property.
* contrib/lisp/org-contacts.el (org-contacts-alias-property): add new varible (org-contacts-matcher): add org-contacts-alias-property to this list Name alias is a very useful feature, especially for CJK users.
This commit is contained in:
parent
4108493c9d
commit
68a0286a8f
1 changed files with 7 additions and 0 deletions
|
@ -81,6 +81,12 @@ When set to nil, all your Org files will be used."
|
||||||
:type 'string
|
:type 'string
|
||||||
:group 'org-contacts)
|
:group 'org-contacts)
|
||||||
|
|
||||||
|
(defcustom org-contacts-alias-property "ALIAS"
|
||||||
|
"Name of the property for contact name alias."
|
||||||
|
:type 'string
|
||||||
|
:group 'org-contacts)
|
||||||
|
|
||||||
|
|
||||||
(defcustom org-contacts-birthday-format "Birthday: %l (%Y)"
|
(defcustom org-contacts-birthday-format "Birthday: %l (%Y)"
|
||||||
"Format of the anniversary agenda entry.
|
"Format of the anniversary agenda entry.
|
||||||
The following replacements are available:
|
The following replacements are available:
|
||||||
|
@ -129,6 +135,7 @@ The following replacements are available:
|
||||||
|
|
||||||
(defcustom org-contacts-matcher
|
(defcustom org-contacts-matcher
|
||||||
(mapconcat 'identity (list org-contacts-email-property
|
(mapconcat 'identity (list org-contacts-email-property
|
||||||
|
org-contacts-alias-property
|
||||||
org-contacts-tel-property
|
org-contacts-tel-property
|
||||||
org-contacts-address-property
|
org-contacts-address-property
|
||||||
org-contacts-birthday-property)
|
org-contacts-birthday-property)
|
||||||
|
|
Loading…
Reference in a new issue