Re: org-contacts problem

2021-02-04 Thread Raoul Comninos
Ihor Radchenko  writes:

> Raoul Comninos  writes:
>> Can someone perhaps guide me?
>
> You need to tell Emacs to load org-contacts:
>
> (require 'org-contacts)
>
> Best,
> Ihor

It worked. You are a genius! Thank you.
-- 




Re: org-contacts problem

2021-02-04 Thread Ihor Radchenko
Raoul Comninos  writes:
> Can someone perhaps guide me?

You need to tell Emacs to load org-contacts:

(require 'org-contacts)

Best,
Ihor

 



org-contacts problem

2021-02-03 Thread Raoul Comninos


I have set up an org-capture template with the exact example provided in 
org-contacts.el and I get this error:

* %![Error: (void-function org-contacts-template-name)]
:PROPERTIES:
:EMAIL: %![Error: (void-function org-contacts-template-email)]
:PHONE:
:ALIAS:
:NICKNAME:
:IGNORE:
:ICON:
:NOTE:
:ADDRESS:
:BIRTHDAY:
:END:

My code is:

("$" "Contacts" entry (file "~/diary/contacts.org")
 "* %(org-contacts-template-name)
:PROPERTIES:
:EMAIL: %(org-contacts-template-email)
:PHONE:
:ALIAS:
:NICKNAME:
:IGNORE:
:ICON:
:NOTE:
:ADDRESS:
:BIRTHDAY:
:END:")

Can someone perhaps guide me?
--