[O] Repeat three times a week

2018-04-05 Thread Cecil Westerhof
I have an event that I like to repeat three times a week: on Monday, Wednesday en Friday. Do I need three entries like: * TODO Do It SCHEDULED: <2018-04-06 Fri ++1w> * TODO Do It SCHEDULED: <2018-04-09 Mon ++1w> * TODO Do It SCHEDULED: <2018-04-11 Wed ++1w> Or is there a better way? -- Cec

[O] LOGBOOK en PROPERTIES log the same

2018-04-05 Thread Cecil Westerhof
I am experimenting with repeat tasks. When I mark something as DONE I get: :LOGBOOK: - State "DONE" from "TODO" [2018-04-05 Thu 10:34] :END: :PROPERTIES: :LAST_REPEAT: [2018-04-05 Thu 10:34] :END: But the PROPERTIES value seems unnecessary: it is implied from th

Re: [O] LOGBOOK en PROPERTIES log the same

2018-04-05 Thread Cecil Westerhof
2018-04-05 10:40 GMT+02:00 Cecil Westerhof : > I am experimenting with repeat tasks. When I mark something as DONE I get: > :LOGBOOK: > - State "DONE" from "TODO" [2018-04-05 Thu 10:34] > :END: > :PROPERTIES: > :LAST_REPEAT: [2018-04-05 Thu 10:34] > :END: > > Bu

Re: [O] Support showing stars as pretty bullets

2018-04-05 Thread Nicolas Goaziou
Hello, Alex Branham writes: > The issue I see with putting it into org-art.el is that users won't be > able to just call M-x prettify-symbols-mode in an org buffer. They'll > have to do something like > > (require 'org-art) > (add-hook 'org-mode-hook #'org-art-prettify) I don't think users shou

[O] Undo a sparse tree

2018-04-05 Thread Cecil Westerhof
I just found the command to create a sparse tree. But I was wondering if there is a way to go back to the previous view? -- Cecil Westerhof

Re: [O] Undo a sparse tree

2018-04-05 Thread Mitchell Roe
Cecil Westerhof writes: > I just found the command to create a sparse tree. But I was wondering > if there is a way to go back to the previous view? I don't know if there is a way to restore which trees are hidden and which trees are shown, but if you wish to remove the highlights from the match

Re: [O] LOGBOOK en PROPERTIES log the same

2018-04-05 Thread stardiviner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Cecil Westerhof writes: > I am experimenting with repeat tasks. When I mark something as DONE I get: > :LOGBOOK: > - State "DONE" from "TODO" [2018-04-05 Thu 10:34] > :END: > :PROPERTIES: > :LAST_REPEAT: [2018-04-05

[O] problems with tables using https://orgmode.org/worg/org-tutorials/org-lookups.html

2018-04-05 Thread Uwe Brauer
Hi I followed the instructions in https://orgmode.org/worg/org-tutorials/org-lookups.html #+BEGIN_SRC emacs-lisp (defun in-interval (bounds el) (and (>= el (car bounds)) (<= el (cadr bounds #+END_SRC #+RESULTS: : in-interval And indeed #+TBLNAME: raw-data | |4 | | | 4.25 | |

Re: [O] Repeat three times a week

2018-04-05 Thread John Kitchin
You can use diary sexps ( https://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html). For example: * TODO something Mon, Wed and Fri SCHEDULED: <%%(memq (calendar-day-of-week date) '(1 3 5))> See the bottom of https://orgmode.org/manual/Deadlines-and-scheduling.html I d

Re: [O] Bug: master: "Capture abort: (error Format specifier doesn’t match argument type)"

2018-04-05 Thread Gregor Zattler
Hi Nicolas, org-mode devs, * Gregor Zattler [2018-04-02; 14:33]: [...] > I get > > "Capture abort: (error Format specifier doesn’t match argument > type)" > > after hitting the template key in order to capture something. [...] > I tried to bisect this with > make autoloads ; emacs-snapshot -nw --d

[O] Inverting the chronology of LOGBOOK entries

2018-04-05 Thread Mitchell Roe
Hello, I have a few different things going into my LOGBOOKs (i.e. TODO state changes, notes from ~org-add-note~, and =CLOCK= entries from ~org-clock-in~ and ~org-clock-out~). These entries are /prepended/ to the LOGBOOK, which results in a /descending/ chronological order. I would like to know i

Re: [O] Fwd: minor ob-sed.el patch for org-mode

2018-04-05 Thread Nicolas Goaziou
Hello, Bjarte Johansen writes: > This is a minor patch suggested by Brad Knotwell so that ob-sed can > support BSD sed and not only GNU sed. Applied. Thank you. BTW, what's your status wrt FSF papers? I could not find you in list of contributors. Regards, -- Nicolas Goaziou

Re: [O] Inverting the chronology of LOGBOOK entries

2018-04-05 Thread Eric Abrahamsen
"Mitchell Roe" writes: > Hello, > > I have a few different things going into my LOGBOOKs (i.e. TODO state > changes, notes from ~org-add-note~, and =CLOCK= entries from > ~org-clock-in~ and ~org-clock-out~). > > These entries are /prepended/ to the LOGBOOK, which results in a > /descending/ chron

[O] How to display babel src block language on exported PDF code block?

2018-04-05 Thread stardiviner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 By default org-mode export to PDF file does not have language indicator on code block. How to setup to add a language string on exported PDF code block like this HTML https://stardiviner.github.io/ ? - -- [ stardiviner ] don't need to convince wit

Re: [O] How to display babel src block language on exported PDF code block?

2018-04-05 Thread John Kitchin
I have done soemthing like this before: (setq org-latex-minted-options '(("frame" "lines") ("fontsize" "\\scriptsize"))) ;; custom code block format to indicate input variables (defun my-src-block (src-block contents info) (cond ((eq (elt (plist-get info :back-end) 2)