Re: [Orgmode] org-id-get-create maybe...

2009-08-05 Thread Sebastian Rose
Carsten Dominik writes: > On Aug 5, 2009, at 1:06 AM, Sebastian Rose wrote: > >> >> >> In my org-setup, I want to have something like this: >> >> (defun sr-org-id-insert-maybe () >>(if (y-or-n-p "Create a unique ID for this section?") >> (org-id-get-create))) >> >> (org-insert-heading-

Re: [Orgmode] org-id-get-create maybe...

2009-08-04 Thread Carsten Dominik
On Aug 5, 2009, at 1:06 AM, Sebastian Rose wrote: In my org-setup, I want to have something like this: (defun sr-org-id-insert-maybe () (if (y-or-n-p "Create a unique ID for this section?") (org-id-get-create))) (org-insert-heading-hook (quote (sr-org-id-insert-maybe))) But I

[Orgmode] org-id-get-create maybe...

2009-08-04 Thread Sebastian Rose
In my org-setup, I want to have something like this: (defun sr-org-id-insert-maybe () (if (y-or-n-p "Create a unique ID for this section?") (org-id-get-create))) (org-insert-heading-hook (quote (sr-org-id-insert-maybe))) But I don't want to enable it globally. Instead, I want