Hi,

the display of bbdb-anniversaries can be customized to use a function to
insert a link to bbdb:

M-x customize-option org-bbdb-anniversary-format-alist

and then add/change


(("birthday" lambda
  (name years suffix)
  (concat "Birthday: [[bbdb:" name "][" name " ("
          (number-to-string years)
          suffix ")]]"))
 ("wedding" lambda
  (name years suffix)
  (concat "[[bbdb:" name "][" name "'s "
          (number-to-string years)
          suffix " wedding anniversary]]")))

If one doesn't like to use a function, an alternative would be

(("birthday" . "Birthday: [[bbdb:%s]] (%d%s)")
 ("wedding" . "[[bbdb:%s]]'s %d%s wedding anniversary"))

but this leaves the agenda with bbdb:Name links.

I don't think I know how to make <TAB> jump to the bbdb-buffer
instead to the org-file

Ciao
Thomas

PS. Carsten should we make the function the default behaviour?



_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to