Re: [O] avoiding "First item of list cannot move without its subtree"

2017-02-22 Thread Max Rydahl Andersen
On 22 Feb 2017, at 12:04, Nicolas Goaziou wrote: > Hello, > > "Max Rydahl Andersen" writes: > >> What am I doing wrong ? > > Nothing. There is a typo in my code. Fixed the typo - but still nothing happens :/ /max > >> (add-hook 'org-shiftmetaleft-hook >>(lambda ()

[O] Bug: Agenda clockcheck: org-duration-to-minutes: Wrong type argument: stringp [9.0.5 (release_9.0.5-318-gb1353c @ /tmp/emacs/org-mode/lisp\ /)]

2017-02-22 Thread Dale
Hi! I think org-mode from master currently has a bug in agenda's clockcheck mode. Steps to reproduce: 1. Start emacs -Q and load org-mode master (b1353cb6f83) 2. Open a empty org-mode buffer, e.g.: C-x C-f test.org RET 3. M-x org-agenda RET 4. Hit "a" for "Agenda for current day or week" 5.

Re: [O] latex preview table environment

2017-02-22 Thread Jeremie Juste
Hello, Eric S Fraga writes: > When I switched my colour theme to one with a dark background, I found I > had to set org-format-latex-options to > > '(:background default :foreground default) > '(:background default :foreground default) work for be as well. > actually

Re: [O] org-export-babel-evaluate=nil ignores ":exports results" setting - this has changed

2017-02-22 Thread Colin Baxter
On Wed, Feb 22 2017, Derek Feichtinger wrote: Dear Derek, > Hi Colin > > On 22.02.2017 16:27, Colin Baxter wrote: >> Hi. >> >> On Tue, Feb 21 2017, Charles C. Berry wrote: >> >>> On Mon, 20 Feb 2017, Derek Feichtinger wrote: >>> - snip - > Based on the documentation one can set

[O] Dynamic block

2017-02-22 Thread Sebastien Vauban
Dear all, I've used the following for years -- until (finally!) my switch to Org mode 9, a couple of weeks ago. --8<---cut here---start->8--- #+NAME: prestasTotal #+BEGIN: clocktable :lang "fr" :block 2017-02 :maxlevel 3 :scope ("~/4-Admin/client.org")

Re: [O] [ANN] New Org duration library

2017-02-22 Thread Nicolas Goaziou
Hello, Aaron Ecay writes: > I had a few questions/comments though: > > - Given that the smallest unit of duration is the minute, The base unit is the minute, but nobody prevents you from adding a smaller unit: (let ((org-duration-units (cons `("s" . ,(/ 1 60.0))

Re: [O] org-export-babel-evaluate=nil ignores ":exports results" setting - this has changed

2017-02-22 Thread Colin Baxter
Hi. On Tue, Feb 21 2017, Charles C. Berry wrote: > On Mon, 20 Feb 2017, Derek Feichtinger wrote: > >> Hi Chuck >> >> On 21.02.2017 00:54, Charles C. Berry wrote: >>> On Mon, 20 Feb 2017, Derek Feichtinger wrote: >>> When org-export-babel-evaluate is set to nil, I see a different

Re: [O] org-export-babel-evaluate=nil ignores ":exports results" setting - this has changed

2017-02-22 Thread Derek Feichtinger
Hi Colin On 22.02.2017 16:27, Colin Baxter wrote: Hi. On Tue, Feb 21 2017, Charles C. Berry wrote: On Mon, 20 Feb 2017, Derek Feichtinger wrote: Hi Chuck On 21.02.2017 00:54, Charles C. Berry wrote: On Mon, 20 Feb 2017, Derek Feichtinger wrote: When org-export-babel-evaluate is set to

Re: [O] [ANN] New Org duration library

2017-02-22 Thread Aaron Ecay
Hi Nicolas, hi Achim, 2017ko otsailak 21an, Nicolas Goaziou-ek idatzi zuen: [...] >> Also, I find the documentation to be completely impenetrable. > > Great. Suggestions welcome. I took a look at the docstring. I think I managed to understand it, but I can see how it might be confusing. I

Re: [O] orgtbl-insert-matrix, embedded

2017-02-22 Thread Rasmus
Hi Uwe, Uwe Brauer writes: > I can use orgtbl-insert-matrix to nicely insert one matrix > resulting in > % BEGIN RECEIVE ORGTBL neu > \[ > \begin{pmatrix} > 8 & 8 \\ > & \\ > \end{pmatrix} > \] > % END RECEIVE ORGTBL neu > \begin{comment} > > #+ORGTBL: SEND neu

[O] [PATCH 1/1] org.el: Make faces org-quote and org-verse be appended

2017-02-22 Thread Anders Johansson
This means fontification of emphasis, links etc. is kept in quote and verse blocks even with org-fontify-quote-and-verse-blocks non-nil. TINYCHANGE --- lisp/org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 3290a2b..282c078 100644

Re: [O] [ANN] New Org duration library

2017-02-22 Thread Malcolm Purvis
> "Nicolas" == Nicolas Goaziou writes: Nicolas> The documentation lists what is allowed. Strings are not. Where Nicolas> did you read that they might be? For the record, here are the Nicolas> first paragraphs of the docstring: Nicolas> The value can be set to,

Re: [O] avoiding "First item of list cannot move without its subtree"

2017-02-22 Thread Nicolas Goaziou
Hello, "Max Rydahl Andersen" writes: > What am I doing wrong ? Nothing. There is a typo in my code. > (add-hook 'org-shiftmetaleft-hook > (lambda () > (interactive) > (let* ((element (org-element-at-point)) > (list-parent

Re: [O] [ANN] New Org duration library

2017-02-22 Thread Nicolas Goaziou
Hello, Achim Gratz writes: > Nicolas Goaziou writes: >> Strings are not allowed. It is either a symbol (h:mm:ss or h:mm) or >> a list of conses. > > That sentence in the documentation would have helped. The documentation lists what is allowed. Strings are not. Where did you

Re: [O] Why does quote and verse block fontification have to override local fontification?

2017-02-22 Thread Nicolas Goaziou
Hello, Anders Johansson writes: > I want to fontify quote blocks (i use them a lot for note taking and > writing paper) so that they stand out (and so I enable > org-fontify-quote-and-verse-blocks) but it would be useful to preserve > the local fontification of emphasis,

[O] Why does quote and verse block fontification have to override local fontification?

2017-02-22 Thread Anders Johansson
Hi, I want to fontify quote blocks (i use them a lot for note taking and writing paper) so that they stand out (and so I enable org-fontify-quote-and-verse-blocks) but it would be useful to preserve the local fontification of emphasis, links etc. inside quote blocks. This can easily be