Norman Walsh writes:
> Hi,
>
> If I complete an email address with org-contacts, I get extra spaces
> after the email address:
>
> To: Jane Doe _ _ _ _[cursor]
>
> Is this just me? Before I go digging for a solution, has anyone else
> encountered and fixed this?
The only time I ever saw someth
Hi,
If I complete an email address with org-contacts, I get extra spaces
after the email address:
To: Jane Doe _ _ _ _[cursor]
Is this just me? Before I go digging for a solution, has anyone else
encountered and fixed this?
Be seeing you,
Thanks, Kitchin!
I tried code in Emacs minimal config. But the image is
not shown. I tried to toggle Edebug on function
`org-contacts-icon-property-image-overlay`. But it is not triggered.
Don't understand why. Because `(font-lock-add-keywords ..)` not correct?
I tried to change `nil` into `'org-m
there are a couple of typos in your code, and the regexp doesn't seem to
match the property you want for some reason.
This seems to do what you want.
#+begin_src emacs-lisp
(defun org-contacts-icon-property-image-overlay (&optional limit)
(when (re-search-forward org-heading-regexp limit t)
Hi, Kitchin, thanks for your sharing. Following your code example, I did
small modification to use on my case.
Here is my code:
#+begin_src emacs-lisp
(defvar image-overlay-re (concat
":ICON:"
"\\(?3:'\\|\"\\)\\(?1:.*\\."
you might find this
http://kitchingroup.cheme.cmu.edu/blog/2016/03/21/Displaying-image-overlays-on-image-filenames-in-Emacs/
potentially useful for what you want.
stardiviner writes:
> I want to show org-contacts avatar image on org-headings.
> Use overlay, or there is other better methods?
>
> A
I want to show org-contacts avatar image on org-headings.
Use overlay, or there is other better methods?
A sample org-contacts snippet looks like this:
* [] John KK
:PROPERTIES:
:AVATAR: john kk.jpg []
:END:
I want to display the image at [] on heading, or replace "john kk.jpg"
with [] image.
B
Hello.
I successfully managed to add birthdays with Org Contacts using the
:BIRTHDAY: property, but what about some other kind of anniversaries
such as wedding anniversaries? How can I set them? Can I use the
:WEDDING: property for example? See also:
http://emacs.stackexchange.com/questions/31559
On 2016-11-09 06:35, tory_ander...@byu.edu (Tory S. Anderson) writes:
> Yeah, I dodge around these sort of problems a lot with org-contacts. It is in
> need of a curator and probably a rewritten version; it also doesn't play nice
> with Helm. I haven't tried it with org 9.0 yet, though.
I've tra
Yeah, I dodge around these sort of problems a lot with
org-contacts. It is in need of a curator and probably a rewritten
version; it also doesn't play nice with Helm. I haven't tried it
with org 9.0 yet, though.
Alan Schmitt writes:
Hello,
I'm giving org-contacts a try, and I'm having an
On 2016-11-09 06:35, tory_ander...@byu.edu (Tory S. Anderson) writes:
> Yeah, I dodge around these sort of problems a lot with org-contacts. It is in
> need of a curator and probably a rewritten version; it also doesn't play nice
> with Helm. I haven't tried it with org 9.0 yet, though.
This is
Hello,
I'm giving org-contacts a try, and I'm having an error when I'm trying
to complete a tag (something should be a sequence but it's a number).
Digging a little into it, it seems that the problem is during
hilighting, where a fontified string is returned by all-completions
instead of a list (i
It would be useful to mark a contact as "archived" so that it
won't auto-fill in an email, as when I may want to look someone up
in the future but don't need to contact them now. Judging by the
docstring I thought the answer would be with
`org-contacts-matcher` but I can't quite make sense of h
>
> I am on Org-mode version 8.3beta and my org-contacts search is case
> insensitive.
Indeed! Thank you very much.
* Alexander Baier wrote:
> On 2014-11-17 13:24 Karl Voit wrote:
>> * Alexander Baier wrote:
>>> On 2014-11-17 12:37 Karl Voit wrote:
* Martin Gross wrote:
And recently, I discovered helm-do-grep which I enjoy using very
much :-)
>>>
>>> You might want to take a look at helm-org-he
On 2014-11-17 13:24 Karl Voit wrote:
> * Alexander Baier wrote:
>> On 2014-11-17 12:37 Karl Voit wrote:
>>> * Martin Gross wrote:
>>> And recently, I discovered helm-do-grep which I enjoy using very
>>> much :-)
>>
>> You might want to take a look at helm-org-headlines, if you only search
>> for
* Alexander Baier wrote:
> On 2014-11-17 12:37 Karl Voit wrote:
>> * Martin Gross wrote:
>> And recently, I discovered helm-do-grep which I enjoy using very
>> much :-)
>
> You might want to take a look at helm-org-headlines, if you only search
> for names.
"helm-org-keywords: Helm-org-keyword n
On 2014-11-17 12:37 Karl Voit wrote:
> * Martin Gross wrote:
> And recently, I discovered helm-do-grep which I enjoy using very
> much :-)
You might want to take a look at helm-org-headlines, if you only search
for names.
Regards,
--
Alexander Baier
* Martin Gross wrote:
>
> Dear helpers,
>
> I really like the idea of having an address book based on org-mode,
> but I don=E2=80=98t understand why org-contacts searches case sensitive,
> because at least to me this makes it more difficult to find what I am
> looking for (I=E2=80=98am searching a
On 2014-11-17 11:04 Martin Gross wrote:
> Dear helpers,
>
> I really like the idea of having an address book based on org-mode,
> but I don‘t understand why org-contacts searches case sensitive,
> because at least to me this makes it more difficult to find what I am
> looking for (I‘am searching an
Dear helpers,
I really like the idea of having an address book based on org-mode,
but I don‘t understand why org-contacts searches case sensitive,
because at least to me this makes it more difficult to find what I am
looking for (I‘am searching an entry about a conference. But how did
I write "co
Hi all,
for a while I had been able to run org-contacts-anniversaries with
BIRTHDAY dates successfully, as explained at the bottom of
https://julien.danjou.info/projects/emacs-packages#org-contacts. This
was on 64-bit Linux. On 32-bit Windows I had the function disabled, as
I have contacts
* Alexis wrote:
>
> Hi all,
Hi!
> What would be useful would be an 'official', fleshed-out spec for
> org-contacts data, which handles a greater range of contact-related
> info. At the moment, for example, my org-contacts file makes use of the
> properties:
>
> #+PROPERTY: LANDLINE
> #+PROPERTY:
Daimrod writes:
> Thanks, but I'm refactoring org-contacts a bit, and I think I have found
> a slightly better way to do that, but in the meantime you can use the
> aforementioned hook for your function.
It turns out that my idea was wrong, so I have used a version very
similar to yours.
The fu
Alexis writes:
I like this tree contact style!
> A second value `ORG_CONTACTS_STYLE` can have is 'tree':
>
> ,* People
> ,** Alexis
> ,:PROPERTIES:
> ,:KIND: individual
> ,:FIELDTYPE: name
> ,:END:
> ,*** Landline
> ,:PROPERTIES:
> ,:FIELDTYPE: landline
> ,:END:
> , 00
> ,*** Mobil
Hi all,
i recently posted about connecting `org-contacts` with MobileOrg:
(1) https://lists.gnu.org/archive/html/emacs-orgmode/2014-05/msg00971.html
Part of the resulting thread was about fleshing out an 'official' spec
for the org-contacts format. Another part was about using DAV as part of
a
John Kitchin writes:
Hi,
First, sorry for the late reply.
> Here is what I finally ended up with to allow completion with tag
> expressions. I did not figure out how to avoid overwriting an
> org-contacts function. I thought I could find the right hooks to use,
> but I could not figure it out.
Here is what I finally ended up with to allow completion with tag
expressions. I did not figure out how to avoid overwriting an
org-contacts function. I thought I could find the right hooks to use,
but I could not figure it out. It is only a one line modification to the
org-contacts function. This
On Thu, Jun 5, 2014 at 7:50 AM, Daimrod wrote:
> org-contacts-complete-group
Here is a better function I think. It uses the builtin org-contacts
database:
(defun insert-emails-from-tags (tag-expression)
"insert emails from org-contacts that match the tags expression. For
example:
group-phd w
John Kitchin writes:
> neat idea. This code does exactly what I need for the completion for a
> whole tag query. It should be possible to integrate that into
> completion.
>
> (defun insert-emails-from-tags (tags)
> (interactive "sTags: ")
> (insert
> (save-window-excursion
> (find-fi
neat idea. This code does exactly what I need for the completion for a
whole tag query. It should be possible to integrate that into completion.
(defun insert-emails-from-tags (tags)
(interactive "sTags: ")
(insert
(save-window-excursion
(find-file "contacts-bbdb.org")
(mapconcat
John Kitchin writes:
> Hi all,
>
> I have setup org-contacts and completion of emails in message mode. I have
> some contacts that are tagged :group: and some tagged :group:ms:
>
> If I put +group in the email To field, it completes to all of the entries
> (awesome!)
>
> But +group-ms does not
Michael Strey writes:
> Hi Daimrod,
>
> On 2014-05-29, Daimrod wrote:
>
>> Hmm, I kinda like this. It seems a bit verbose but it's better than
>> having multiple values per properties (IMHO).
>>
>> Though, if we adopt this scheme, we would need to add some helper
>> bindings/functions so that we
Hi all,
I have setup org-contacts and completion of emails in message mode. I have
some contacts that are tagged :group: and some tagged :group:ms:
If I put +group in the email To field, it completes to all of the entries
(awesome!)
But +group-ms does not work. Is that a bug, or a known limit of
Hi Daimrod,
On 2014-05-29, Daimrod wrote:
> Hmm, I kinda like this. It seems a bit verbose but it's better than
> having multiple values per properties (IMHO).
>
> Though, if we adopt this scheme, we would need to add some helper
> bindings/functions so that we don't have to fill this by hands.
Michael Strey writes:
Hi Michael,
> Reading http://orgmode.org/worg/dev/org-syntax.html#Node_Properties
> I just realised that my clumsy property keys are against the rules since
> they are containing whitespace characters.
>
> Nevertheless I still like the idea of having a Type, a number and a
>
Reading http://orgmode.org/worg/dev/org-syntax.html#Node_Properties
I just realised that my clumsy property keys are against the rules since
they are containing whitespace characters.
Nevertheless I still like the idea of having a Type, a number and a
Value for every property that can occur multip
On 2014-05-23, Alexis wrote:
> What would be useful would be an 'official', fleshed-out spec for
> org-contacts data, which handles a greater range of contact-related
> info. At the moment, for example, my org-contacts file makes use of the
> properties:
>
> #+PROPERTY: LANDLINE
> #+PROPERTY: MOBI
Daimrod writes:
> Sure, but then how would we define the map? with a fixed set of rules?
> with a user customizable map (e.g. '(("MOBILE" -> "TELL;CELL")
> ("EMAIL_WORK" -> "EMAIL;TYPE=work")))?
More the latter. My initial (again, brainstorming!) thinking has an
user-modifiable data structure a
Alexis writes:
> Daimrod writes:
>
>> So, as you said, we would need to define and document a specification
>> for org-contacts. And we need to be clear from the beginning about
>> what it can do and what it can not do. For example, it is unlikely
>> that org-contacts will be a 1:1 mapping with
Daimrod writes:
> So, as you said, we would need to define and document a specification
> for org-contacts. And we need to be clear from the beginning about
> what it can do and what it can not do. For example, it is unlikely
> that org-contacts will be a 1:1 mapping with the vCard format in its
Alexis writes:
> Hi all,
Hi,
> [snip...]
>
> Fleshing out an extended spec for org-contacts data could be part of the
> process of making org-contacts a first-class citizen of org-mode, and
> provide a more solid foundation on which people can build (and share)
> the org-contacts functionality t
Rasmus writes:
> Check here:
>
> https://f-droid.org/repository/browse/?fdfilter=carddav&fdpage=1&page_id=0
>
> DAVdroid works very well.
Oh okay, i didn't realise DAVdroid was FOSS.
DAVdroid makes use of the ez-vcard library, which is BSD-licensed, and
certainly seems like it might be useful.
Alexis writes:
> There might already be
> a FOSS CardDAV library for Android out there that could be used for
> syncing, but i've not researched that yet.
Check here:
https://f-droid.org/repository/browse/?fdfilter=carddav&fdpage=1&page_id=0
DAVdroid works very well.
--
Sådan en god dansk la
Alexander Baier writes:
> For what it's worth, I would love to help out in any way I can. I use
> org-contacts myself and know elisp well enough to also do some
> implementing. But I wouldn't mind writing some documentation, either.
Thank you! At this point i'm studying RFC 6350 (vCard 4) and
Hi Alexander,
Alexander Baier writes:
> For what it's worth, I would love to help out in any way I can. I use
> org-contacts myself and know elisp well enough to also do some
> implementing. But I wouldn't mind writing some documentation, either.
> I, however, don't know much about Android pro
On 2014-05-24 12:15 Alexis wrote:
> Alexander Baier writes:
>
>> About the spec, might it make sense to use a standard already in
>> existence as a starting point or even a major inspiration? Something
>> like vCard for example?
>
> Yeah, i like the idea of building on top of vCard, given how wid
Bastien writes:
> Alexis writes:
>
>> *nod* Good point i'd be happy to assign copyright to the FSF,
>> myself, but i know that doing so is an issue for many people.
>
> Here you go!
>
> http://orgmode.org/cgit.cgi/org-mode.git/plain/request-assign-future.txt
>
> :)
Heh, thank you! i'll de
Alexis writes:
> *nod* Good point i'd be happy to assign copyright to the FSF,
> myself, but i know that doing so is an issue for many people.
Here you go!
http://orgmode.org/cgit.cgi/org-mode.git/plain/request-assign-future.txt
:)
--
Bastien
Xebar Saram writes:
> This sounds awesome, i would love syncing org contacts with my android
> phone
:-) It's good to know i'm not the only one wanting this functionality -
gives me more incentive to actually implement it!
Alexis.
Alexander Baier writes:
> About the spec, might it make sense to use a standard already in
> existence as a starting point or even a major inspiration? Something
> like vCard for example?
Yeah, i like the idea of building on top of vCard, given how widely it's
used and supported, and that it d
Bastien writes:
> Improving org-contacts.el and making it part of Org core are two
> separate issues -- not everything that is part of Org core gets a
> lot of attention, and some contributed packages do.
Oh okay, fair enough!
> I'd say: go ahead with whatever conventions you want to enforce
>
Rasmus writes:
> You could also put yourself a slightly different challenge: map
> between the org-contacts-format and an carddav server that you
> establish as a backend on your phone. E.g. google contacts is a
> carddav server, I think.
>
> I use DAVdroid for syncing my calendar and my contac
Hi Alexis!
* Alexis wrote:
>
> Hi all,
>
> i use org-contacts as my primary system for contact
> management. Consequently, i'd love to be able to make use of my
> org-contacts data on my Android phone.
Agreed!
> What would be useful would be an 'official', fleshed-out spec for
> org-contacts da
Hi Alexis
This sounds awesome, i would love syncing org contacts with my android phone
thx alot!
z
On Fri, May 23, 2014 at 1:30 PM, Alexander Baier <
alexander.ba...@mailbox.org> wrote:
> Hello Alexis,
>
> On 2014-05-23 06:07 Alexis wrote:
>
> [...]
>
> > What would be useful would be an 'off
Hello Alexis,
On 2014-05-23 06:07 Alexis wrote:
[...]
> What would be useful would be an 'official', fleshed-out spec for
> org-contacts data, which handles a greater range of contact-related
> info. At the moment, for example, my org-contacts file makes use of the
> properties:
>
> #+PROPERTY:
Bastien writes:
> PS: Actually, being part of Org core sometimes slow down things,
> because substantial contributions then need to come from people
> who assign their copyright to the Free Software Foundation.
PPS: This is a feature.
--
ツ
Hi Alexis,
Alexis writes:
> What do people think?
Improving org-contacts.el and making it part of Org core are two
separate issues -- not everything that is part of Org core gets a
lot of attention, and some contributed packages do.
I'd say: go ahead with whatever conventions you want to enfor
Alexis writes:
> What i'd now like to do is to add support for transferring data back and
> forth between my org-contacts file and the Contacts store on my
> phone. The challenge is the mapping between these two systems.
You could also put yourself a slightly different challenge: map
between the
Hi all,
i use org-contacts as my primary system for contact
management. Consequently, i'd love to be able to make use of my
org-contacts data on my Android phone.
To that end, i recently wrote some code for MobileOrg-Android which adds
basic PROPERTIES drawer support:
https://github.com/matburt
* Kyle Machulis wrote:
>
> Thought about maybe trying to extend AsynK with an org-contacts backend?
> That'd be ridiculously useful.
> http://karra-asynk.appspot.com/
This is a great suggestion, indeed.
However, I do not have the urge to sync with Outlook, GCal, ... yet.
So I pass on this one.
Thought about maybe trying to extend AsynK with an org-contacts backend?
That'd be ridiculously useful.
http://karra-asynk.appspot.com/
On Sat, Nov 16, 2013 at 1:13 PM, Karl Voit wrote:
> * Norman Walsh wrote:
> >
> > Hello world,
>
> Hello Norman!
>
> > I'm just taking another look at org-co
* Norman Walsh wrote:
>
> Hello world,
Hello Norman!
> I'm just taking another look at org-contacts. I wonder what the best
> practice is for dealing with multi-line properties like postal
> addresses.
I split them up to single lines.
> I can just make them part of the entry, of course, not in
On Wednesday 13 November 2013 14:23:17 Norman Walsh wrote:
> Hello world,
>
> I'm just taking another look at org-contacts. I wonder what the best
> practice is for dealing with multi-line properties like postal
> addresses.
I store addresses like that
:PROPERTIES:
:ADDRESS: street no, postal-co
Hello world,
I'm just taking another look at org-contacts. I wonder what the best
practice is for dealing with multi-line properties like postal
addresses.
I can just make them part of the entry, of course, not in a property,
but that seems oddly different from the other properites.
Have I overl
I've started using Org contacts, and find it very useful, especially as
an address book for Gnus. I had to make some modifications to make the
library function as I wanted. I am posting them here just in case they
are of interest to others.
1. Put quotes around names with periods in email addres
Simon Campese writes:
> Hello,
Hi Simon,
> I have one quick feature request for org-contacts.el that should be
> pretty easy and quick to implement: Could someone please introduce
> customizable variables to optionally disable the gnus/message mode
> integration?
I've added a custom boolean,
Hi Simon,
Simon Campese writes:
> My reason for this request:
> For email address completion in message mode, I use a program that scans
> through my whole email database (I use notmuch to manage emails and have
> all my mails stored locally). This program is stored in
> 'notmuch-address-command
Hello,
I have one quick feature request for org-contacts.el that should be
pretty easy and quick to implement: Could someone please introduce
customizable variables to optionally disable the gnus/message mode
integration?
I don't know a lot of elisp, so instead of copy-pasting my way to a
half-
Hi--
>> After a "git pull" today, my org-contacts no longer works.
>> Has anyone else noticed this? (I'm not quite sure how to provide
>> more useful info...)
Achim> Yes, we have... Bastien is in the process of fixing the repo,
Achim> meanwhile you could compile from these co
George McNinch writes:
> After a "git pull" today, my org-contacts no longer works. (e.g. M-x
> org-contacts "George" finds no matches. So especially: tab-completion in
> message-mode no longer works).
>
> Has anyone else noticed this? (I'm not quite sure how to provide more
> useful info...)
Ye
Hi --
After a "git pull" today, my org-contacts no longer works. (e.g. M-x
org-contacts "George" finds no matches. So especially: tab-completion in
message-mode no longer works).
Has anyone else noticed this? (I'm not quite sure how to provide more
useful info...)
All the best,
george
--
,-
Hi Daniel,
thanks for the patch.
Daniel Clemente writes:
> +(defun org-contacts-format-name (name)
> + "Remove some formatting marks from contact name"
> + (replace-regexp-in-string org-radio-target-regexp "\\1" name)
> + ; TODO also remove emphasis (org-emphasis-alist)
> +)
(I'd suggest ̀o
I use radio headers in my contacts data base, like:
* <<>>
* <<>> (Alice's brother)
org-contacts was presenting the names with <<< before, so you needed to type
<<< to match them. I attach a patch to remove this particular formatting before
presenting the completions; in this way you can matc
Hi Christoph,
Christoph LANGE writes:
> a late follow-up on the problem that, out of the box, org-contacts's
> BIRTHDAY properties don't work with a 32-bit Emacs on Windows when there
> are dates before 1970 (details quoted below).
I guess this problem is still there -- hopefully Julien will ha
On Thu, Oct 13, 2011 at 12:50 AM, Tassilo Horn wrote:
> Julien Cubizolles writes:
>
> Hi Julien,
>
>> As of a few days ago, completion doesn't work anymore. I get the
>> message (wrong-number-of-arguments (1 . 2) 4)
>>
>> Any ideas ?
>
> No, but you are not alone. :-)
>
> I use a very recent emac
Dear all,
a late follow-up on the problem that, out of the box, org-contacts's
BIRTHDAY properties don't work with a 32-bit Emacs on Windows when there
are dates before 1970 (details quoted below).
For now I have "solved" this in an extremely pragmatic way: enabling the
display of anniversaries o
> On Sun, 23 Oct 2011 11:36:21 +0200, pmli...@free.fr (Peter Münster) said:
>> go mess with the database easily. EG, with BBDB if one area gets a new
>> area code you can't go quickly search/replace for all records replacing
>> 111 with 222. With org-contacts it's a simple search/replace edi
Thank you all for your points of view!
So I'll try bbdb-3. (I've already started a bit.)
On Fri, Oct 21 2011, Eric Abrahamsen wrote:
> As Rasmus mentioned, if you use BBDB you should get version 3, it's
> significantly better than the previous version. There's a slow movement
> towards better im
Hi Wes and all,
Wes Hardaker wrote:
>> On Fri, 21 Oct 2011 10:21:11 +0800, Eric Abrahamsen
>> said:
>
> EA> As Rasmus mentioned, if you use BBDB you should get version 3, it's
> EA> significantly better than the previous version. There's a slow movement
> EA> towards better import/export
> On Fri, 21 Oct 2011 10:21:11 +0800, Eric Abrahamsen
> said:
EA> As Rasmus mentioned, if you use BBDB you should get version 3, it's
EA> significantly better than the previous version. There's a slow movement
EA> towards better import/export functions, which I think has been one of
EA>
Rasmus writes:
> pmli...@free.fr (Peter Münster) writes:
>
>> Hello,
>>
>> I would like to manage my contacts, so that I can
>> - easily search them
>> - add new email addresses from gnus (summary buffer)
>> - complete email addresses in gnus (message buffer and prompts in
>> mini-buffer)
>> -
On Fri, Oct 21 2011, Peter Münster wrote:
> Hello,
>
> I would like to manage my contacts, so that I can
> - easily search them
> - add new email addresses from gnus (summary buffer)
> - complete email addresses in gnus (message buffer and prompts in
> mini-buffer)
> - and perhaps more in the fu
pmli...@free.fr (Peter Münster) writes:
> Hello,
>
> I would like to manage my contacts, so that I can
> - easily search them
> - add new email addresses from gnus (summary buffer)
> - complete email addresses in gnus (message buffer and prompts in
> mini-buffer)
> - and perhaps more in the futu
Hello,
I would like to manage my contacts, so that I can
- easily search them
- add new email addresses from gnus (summary buffer)
- complete email addresses in gnus (message buffer and prompts in
mini-buffer)
- and perhaps more in the future
Could you guide me please, what to choose, org-conta
Hi,
> No, but you are not alone.
>
> I use a very recent emacs 24 bzr checkout and org master from git. Not
> sure who's the culprit.
Same problem here. After a quick look it seems that there has been a recent
change in the arguments taken by the completion-table-case-fold function in
minibu
Julien Cubizolles writes:
Hi Julien,
> As of a few days ago, completion doesn't work anymore. I get the
> message (wrong-number-of-arguments (1 . 2) 4)
>
> Any ideas ?
No, but you are not alone. :-)
I use a very recent emacs 24 bzr checkout and org master from git. Not
sure who's the culprit.
As of a few days ago, completion doesn't work anymore. I get the message
(wrong-number-of-arguments (1 . 2) 4)
Any ideas ?
Julien.
,
| Debugger entered--Lisp error: (wrong-number-of-arguments (1 . 2) 4)
| completion-table-case-fold((#("Cubizolles Julien " 0
17 (org-category "contacts" fo
Wes Hardaker writes:
> FYI, the emacs package you're looking for with similar functionality is
> "rebox2" ( http://www.emacswiki.org/emacs/rebox2 )
I knew - or at least expected - that there must be something like
that. Thanks for the link.
--
Thorsten
> On Thu, 6 Oct 2011 11:38:26 +0200, Karl Voit said:
KV> yasnippet is superior to org-capture and it is not :-)
Well summarized :-). The right tool for the right job definitely
matters here.
>> [how do you produce this nice insertions in your email?]
KV> As an Emacs user, you might not be
Karl Voit writes:
> yasnippet is superior to org-capture and it is not :-)
So considering both and choosing the most suited for the problem might
be a good idea.
> As an Emacs user, you might not be delighted with my answer: I am
> using mutt[3] as MUA[4]. There I can choose my editor freely.
* Thorsten wrote:
> Karl Voit writes:
>
>> Without describing further attempts, I ended up with following
>> yasnippet[2] template for a new contact:
>
> Do you think that yasnippet is superior to org-capture or is it just a
> casuality that you prefered it to org-capture?
Oh, first I started wi
Karl Voit writes:
>> One further org-contacts related question: there is a predefined
>> property ADDRESS, without any inner structure. Am I supposed to write my own
>> org-capture template for that property? How would that look like - just
>> one single string? If I want something more structure
* Thorsten wrote:
>
> I have a org-contacts file with a few contacts with EMAIL property,
> taken from gnus using org-capture as described in the org-contacts
> manual. The contacts are tagged with some tags.
[...]
> PS
> One further org-contacts related question: there is a predefined
> proper
Dear all,
please allow me to follow up on this mail with the question of how
this is really done.
On Sun, May 22, 2011 at 20:03, Eric S Fraga wrote:
> Le Wang writes:
>> I'm seeing another issue now, where if any org contact has a birthday
>> pre 1970, I get the error "Bad sexp at line xxx ..."
* Bastien wrote:
> Hi Karl,
Hi!
> Karl Voit writes:
>
>> Is there a good way of adding the (multi line) address to the
>> PROPERTY drawer or should I put the address in the notes right below
>> the drawers?
>
> I'd suggest reformatting the multi-lines address into a single-line
> string.
Done
Hi Karl,
Karl Voit writes:
> I am writing an Python-script that converts my old jPilot contact
> information to Org-mode. I chose Org-contacts[1] because it seems to
> me that this will be a widely used format.
>
> In my old format, the address field is a multi-line field similar
> to:
>
> ,
Hi!
I am writing an Python-script that converts my old jPilot contact
information to Org-mode. I chose Org-contacts[1] because it seems to
me that this will be a widely used format.
In my old format, the address field is a multi-line field similar
to:
,[ example ]
| Street Name 42
Hi!
I've been using org-contacts as a replacement of BBDB and I think is
great, but I haven't found a way to use alias instead of names, like
BBDB. Is this possible?
Thanks!
--
Rodrigo Lazo
Hi Julien
Julien Danjou writes:
> On Thu, May 26 2011, Sven Bretfeld wrote:
>
>> It is definitely not there in 23.1, the emacs-snapshot package which
>> AFAIK is the orebokech version that seems not to have been updated since
>> quite a while. I have checked the sources of minibuffer.el and it d
1 - 100 of 147 matches
Mail list logo