Re: [O] Grouping tasks with todo-keywords

2017-06-25 Thread Tim Cross
I have this in my init.el - I did it years ago and it could be refined, but works for my needs. My custom agenda view breaks the agenda into 4 blocks of todos - Completed/Cancelled - WIP - Delegated - Backlog (setq org-agenda-custom-commands (quote (("n" "Agenda and all

Re: [O] Capture template stopped working: nil

2017-06-25 Thread Nicolas Goaziou
Bastien Guerry writes: > May I ask you why `eval' in the code base is problematic? Because 1. it is hideous, 2. it doesn't cope well with lexical binding. Using `eval' should be made with extreme parcimony and for very consensual reasons. > This change may break current

Re: [O] Capture template stopped working: nil

2017-06-25 Thread Bastien Guerry
Hi Nicolas, Nicolas Goaziou writes: >> What is the reason for this change? > > I don't like `eval' in the code base. May I ask you why `eval' in the code base is problematic? This change may break current configurations. Such changes should be made with extreme

Re: [O] Fwd: Re: How to export LaTeX amsmath align bmatrix to ODT?

2017-06-25 Thread Nicolas Goaziou
Hello, ed...@openmail.cc writes: > I don't really know how to modify org-latex-packages-alist to have > a latex command like this in my tex file: > > \newcommmand{\mysymbol}[1]{\mathrm{my_{#1}}} > > I do have a bunch of packages with custom options over there :P ! I fixed a bug in "ox-odt.el".

Re: [O] Capture template stopped working: nil

2017-06-25 Thread Nicolas Goaziou
Hello, Bastien writes: > Hi Nicolas, > > Nicolas Goaziou writes: > >> It should be (lambda () (concat org-directory "/journal.org")). >> >> See ORG-NEWS. > > What is the reason for this change? I don't like `eval' in the code base. Regards, -- Nicolas

Re: [O] Capture template stopped working: nil

2017-06-25 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > It should be (lambda () (concat org-directory "/journal.org")). > > See ORG-NEWS. What is the reason for this change? Thanks, -- Bastien

Re: [O] Capture template stopped working: nil

2017-06-25 Thread Florian Lindner
Am 25.06.2017 um 21:09 schrieb Nicolas Goaziou: > Hello, > > Florian Lindner writes: > > >> since recently, one of my capture templates stopped working. Message is: >> >> Template key: >> org-capture: Capture template ‘j’: nil >> >> and: >> >> - %? >> >> is added to

Re: [O] Capture template stopped working: nil

2017-06-25 Thread Nicolas Goaziou
Hello, Florian Lindner writes: > since recently, one of my capture templates stopped working. Message is: > > Template key: > org-capture: Capture template ‘j’: nil > > and: > > - %? > > is added to journal.org. I have also tried some other template text like > "foo"

[O] Capture template stopped working: nil

2017-06-25 Thread Florian Lindner
Hello, since recently, one of my capture templates stopped working. Message is: Template key: org-capture: Capture template ‘j’: nil and: - %? is added to journal.org. I have also tried some other template text like "foo" (without any keys), but the message is the same. value of

Re: [O] org table toggle narrowing and true column hiding

2017-06-25 Thread Uwe Brauer
>>> "Nicolas" == Nicolas Goaziou writes: > Hello, > Uwe Brauer writes: >> Great thanks I will test this now, I presume this patch is against the >> latest stable version? > No, it is against development version, aka "master" branch.

Re: [O] org-protocol documentation

2017-06-25 Thread Mario Martelli
Hi, > Also, I suggest using ox-texinfo from development version, if you can, > as the Texinfo output should be superior. Done that, eventually. > Also, if the syntax is not quite right, no worries, > we'll fix it. That is probably necessary. Please note, that the documentation assumes that

Re: [O] Grouping tasks with todo-keywords

2017-06-25 Thread Fabrice Niessen
Narendra Joshi writes: > Is it possible to group tasks in org-agenda by the state they are in? > For example, I would like to have horizontal divider between all tasks > that are ONGOING and tasks that are in TODO state. > I have already setup `org-agenda-sorting-strategy'

Re: [O] [PATCH] org-protocol: fixes open-source and extends rewriting of URLs

2017-06-25 Thread Mario Martelli
> If all tests in "test-org-protocol.el" pass with your changes, I think > it is fine to apply them. Selector: "test-org-protocol/" Passed: 2 Failed: 0 Skipped: 0 Total: 2/2 > Another round of tests for the cases you solve > would be nice, too. I

Re: [O] Bug: Does HEADER_LATEX_EXTRA work in org 9.0? [9.0.9 (9.0.9-elpaplus @ ~/.emacs.d/elpa/org-plus-contrib-20170622/)]

2017-06-25 Thread Nicolas Goaziou
Hello, Mario Román writes: > I have tried to use #+latex_header_extra on org 9.0.9, using an empty Emacs > configuration file. The following fragment > > #+LATEX_HEADER_EXTRA: \newcommand{\test}{testing} > $\test$ > > creates an image with the text "testing". It

Re: [O] [PATCH] org-protocol: fixes open-source and extends rewriting of URLs

2017-06-25 Thread Nicolas Goaziou
Hello, Mario Martelli writes: > > Doing the tests for the documentation I encountered some issues with > org-protocol. > > [0001-url-is-sanitized-before-processing] > I’ve got trouble to get sub-protocol “open-source” working in some cases. By > sanitising the URL it

[O] [PATCH] org-protocol: fixes open-source and extends rewriting of URLs

2017-06-25 Thread Mario Martelli
Hi list,Doing the tests for the documentation I encountered some issues with org-protocol.[0001-url-is-sanitized-before-processing]I’ve got trouble to get sub-protocol “open-source” working in some cases. By sanitising the URL it works for me in all cases.