Re: [O] Advance notice of birthdays in org-mode via org-contacts

2019-05-27 Thread Eric Abrahamsen
Nick Dokos writes: > Daryl Manning writes: > >> I'm trying to come up with a better way to give myself advanced >> notice on some peoples' birthdays coming up.  And (shameless plug) if you're using EBDB, you can set both `ebdb-use-diary' and `org-agenda-include-diary' to t, and anniversaries

Re: [O] suppress leading ":" in org-babel output

2019-05-27 Thread Nick Dokos
Jeremie Juste writes: > Hello, > > I recall seeing this thread on the mailing list but I cannot find it > back. > > I would like to suppress the first line leading ":" in the following output > > > #+NAME:mean_purchase_per_shopping_trip > > #+BEGIN_SRC R :var x=6 :results output :session *R* > a

Re: [O] Advance notice of birthdays in org-mode via org-contacts

2019-05-27 Thread Nick Dokos
Daryl Manning writes: > I'm trying to come up with a better way to give myself advanced notice on > some peoples' birthdays coming up.  > > Right now, I use the following in a `cal.org` file to give me notice in > agenda that birthdays are coming up: > > ``` > * BDays                          

Re: [O] Show APPTs every day in Agneda

2019-05-27 Thread Michael Heerdegen
Neil Jerram writes: > Hi Michael, Hi Neil! > I'm not in front of my computer, to check this, but I think that an > active date range will have this effect, i.e. > > ** Vacation > -- Hmm, no, AFAICT that's what I used to do, and it only shows the appointment at start and end date, not between

Re: [O] Temporarily setting agenda files list, cleaning up

2019-05-27 Thread Thomas Plass
Christoph Groth wrote at 14:04 on May 27, 2019: : Instead, I imagine a custom Emacs command to launch an agenda with : org-agenda-files that is temporarily set to a list of files that depends : on the current context. For starters, this list could contain all the : org files under the current

Re: [O] Advance notice of birthdays in org-mode via org-contacts

2019-05-27 Thread Marcin Borkowski
On 2019-05-27, at 13:25, Neil Jerram wrote: > On Sun, 26 May 2019, 16:12 Daryl Manning, wrote: > >> I'm trying to come up with a better way to give myself advanced notice on >> some peoples' birthdays coming up. >> >> Right now, I use the following in a `cal.org` file to give me notice in >>

[O] Problems with inline source blocks

2019-05-27 Thread Christian Heinrich
Hi everyone, several issues with inline source blocks: 1) https://orgmode.org/manual/Exporting-code-blocks.html states: > The :exports header arguments control exporting code blocks only and > not inline code: but https://orgmode.org/manual/Using-Header-Arguments.html#Using-Header-Arguments

Re: [O] Temporarily setting agenda files list, cleaning up

2019-05-27 Thread John Kitchin
For running code that should close all buffers that were opened, I use a macro like this: (defmacro with-no-new-buffers ( body) "Run BODY, and kill any new buffers created. Returns whatever BODY would return." (let ((current-buffers (buffer-list))) `(prog1 (progn ,@body) (mapc

[O] Temporarily setting agenda files list, cleaning up

2019-05-27 Thread Christoph Groth
Hello, I would like to expand my use of Org for notes, and to this end spread project-specific org files across my home directory (currently I'm using a central directory with one agenda file per year). For obvious reasons, I can't possibly include all these org files in org-agenda-files

Re: [O] Show APPTs every day in Agneda

2019-05-27 Thread Neil Jerram
On Sun, 26 May 2019, 18:38 Michael Heerdegen, wrote: > Hi, > > I've APPTs like "Vacation" that last 14 days or so. Is there an > option/way to show such an APPT for every concerned day, and not only > for the border days, so that when I for example want to make a doctor's > appointment I see

Re: [O] Advance notice of birthdays in org-mode via org-contacts

2019-05-27 Thread Neil Jerram
On Sun, 26 May 2019, 16:12 Daryl Manning, wrote: > I'm trying to come up with a better way to give myself advanced notice on > some peoples' birthdays coming up. > > Right now, I use the following in a `cal.org` file to give me notice in > agenda that birthdays are coming up: > > ``` > * BDays >

[O] suppress leading ":" in org-babel output

2019-05-27 Thread Jeremie Juste
Hello, I recall seeing this thread on the mailing list but I cannot find it back. I would like to suppress the first line leading ":" in the following output #+NAME:mean_purchase_per_shopping_trip #+BEGIN_SRC R :var x=6 :results output :session *R* a <-sprintf("%.2f",12.234324) cat(a,sep="\n")