Re: Read only org view mode

2022-01-23 Thread Marcin Borkowski
On 2022-01-23, at 08:19, Arthur Miller wrote: > Hi mailing list, > > is something like this of interest to add to org-mode? Yes! Yes! Yes! I can see all sorts of stuff going from here. Three examples follow. 1. I have a daily journal in Org-mode, and I wrote a simple function showing me

Re: R terminal output does not match src block output due to ">" character in results

2022-01-23 Thread Jack Kamm
Hi John, > $ git log > commit 7fa8173282f85c2ca03cc7f51f28f6adfb250610 (HEAD -> master, > origin/master, origin/HEAD) > Author: Ian Martins > Date: Sat Jan 16 15:52:21 2021 -0500 It looks like the last commit you're on is from about a year ago (Jan 2021), so I suspect you're on an older

Re: org-export-async-start: overwriting start-process NAME

2022-01-23 Thread Viktor Sonesten
Viktor Sonesten writes: > [...] so I want to override the NAME given applied on start-process in > org-export-async-start. I missed some documentation: it's PROGRAM I'm looking for, not NAME. PROGRAM is invocation-name, so "emacs" by default. Thanks for being the rubber duck.

org-export-async-start: overwriting start-process NAME

2022-01-23 Thread Viktor Sonesten
I'm trying to export a PDF asynchronously, but get a void-function on the first use-package in my init.el. I believe this is because my emacs installation is wrapped in Nix and by default an emacs that doesn't know about use-package is used, so I want to override the NAME given applied on

Re: [PATCH v4 2/3] ox-texinfo: Optionally use @itemx for certain description list items

2022-01-23 Thread Jonas Bernoulli
Small fix: - (memq (org-element-property :post-blank previous-item) - '(1 nil))) + (eq 1 (org-element-property :post-blank item)))

[PATCH v4 2/3] ox-texinfo: Optionally use @itemx for certain description list items

2022-01-23 Thread Jonas Bernoulli
* doc/org-manual.org (Plain lists in Texinfo export): Reorder and document new functionality. * lisp/ox-texinfo.el (org-texinfo-item): In a description list when its :compact attribute is non-nil, then transcode consecutive items using one @item and one or more @itemx commands, if all of them

Re: [PATCH v3 2/3] ox-texinfo: Optionally use @itemx for certain description list items

2022-01-23 Thread Jonas Bernoulli
Nicolas Goaziou writes: >> - (items (and tag >> - (let ((tag (org-export-data tag info))) >> + (items (org-element-property :itemx item)) >> + (items (cond (items >> + (mapcar (lambda (tag) (org-export-data tag info)) >> +

[PATCH v4 0/3] ox-texinfo: Define definition commands using description lists

2022-01-23 Thread Jonas Bernoulli
We are getting closer, I think. Tested with the Org and Magit manuals again. Passed. Jonas Bernoulli (3): ox-texinfo: Add function for use by kbd macro ox-texinfo: Optionally use @itemx for certain description list items ox-texinfo: Define definition commands using description lists

[PATCH v4 3/3] ox-texinfo: Define definition commands using description lists

2022-01-23 Thread Jonas Bernoulli
* doc/org-manual.org (Plain lists in Texinfo export): Document use of definition command prefixes in description lists. * lisp/ox-texinfo.el: Add org-texinfo--separate-definitions to the list of :filter-parse-tree functions of the texinfo backend. * lisp/ox-texinfo.el

[PATCH v4 1/3] ox-texinfo: Add function for use by kbd macro

2022-01-23 Thread Jonas Bernoulli
* doc/doc-setup.org: Use org-texinfo-kbd-macro for kbd macro. * doc/org-manual.org: Add new node "Key bindings in Texinfo export". * lisp/ox-texinfo.el (org-texinfo--quoted-keys-regexp): New variable. * lisp/ox-texinfo.el (org-texinfo-kbd-macro): New function. --- doc/doc-setup.org | 2 +-

Re: [PATCH] ob-plantuml: Allow setting PlantUML args for jar file

2022-01-23 Thread Max Nikulin
On 21/01/2022 19:48, Ihor Radchenko wrote: Max Nikulin writes: I have reordered some parts of your message I do not see much point customising this particular argument. We _do not_ want plantuml in gui mode. Ever. Otherwise, babel behaviour will be unpredictable. If we make it customizeable,

Re: [PATCH 1/2] ox-texinfo: Turn a description list item with "+" bullet into @itemx

2022-01-23 Thread Jonas Bernoulli
Nicolas Goaziou writes: > I suggest to require a special attribute before doing so, e.g., > > #+attr_texinfo: :compact t > - key: a :: > - key: b :: > > - key: c :: > - key: d :: I have noticed that I accidentally called it ":combine" in the documentation and have fixed that. (Do you

Re: [PATCH v3 3/3] ox-texinfo: Define definition commands using description lists

2022-01-23 Thread Jonas Bernoulli
Nicolas Goaziou writes: >> +(defun org-texinfo--massage-key-item (plain-list item args) >> + "In PLAIN-LIST modify ITEM based on ARGS. >> +Reformat ITEM's tag property and add findex and kindex entries to >> +its content. If the bullet is \"+\" then use \"@itemx\" and deal with >> +data from

Re: [PATCH] make test: Make failure results more verbose

2022-01-23 Thread Ihor Radchenko
Max Nikulin writes: >> Thanks! Your patch looks cleaner. > > In the meanwhile Lars fixed ERT in Emacs-29, so empty string is > considered as false now, see https://debbugs.gnu.org/53313 > Values like "no" should not be considered as false by Org makefiles, so > I am attaching an updated

Re: typo in org-clock.el

2022-01-23 Thread Ihor Radchenko
Colin Baxter writes: > At line 2512 :end should be :tend as in: > > (user-error "Clocktable `:step' can only be used with `:block' or `:tstart, > :tend'")) Fixed. Thanks! Meanwhile, you message appears to be already answered by Carsten retrospectively :)

typo in org-clock.el

2022-01-23 Thread Colin Baxter
At line 2512 :end should be :tend as in: (user-error "Clocktable `:step' can only be used with `:block' or `:tstart, :tend'"))