problem with org-highest-priority

2020-10-05 Thread joakim
This used to work: (defun jv-org-priorities () (setq org-highest-priority ?0 ;; 64 @ 48 0, bugs start happening if you have higher prios tnan 0, like '!' org-lowest-priority ?E ;; E org-default-priority ?0 ;; 0 org-priority-regexp

Re: Proposal: do not align tags in Agenda

2020-10-05 Thread No Wayman
I recently proposed a patch that would allow a workaround for this: https://orgmode.org/list/87ft8gelpn@gmail.com/ It allows custom placement of the habit consistency graph within the agenda. There is an accompanying example that places the graph on its own line under the agenda item. I've

Re: problem with org-highest-priority

2020-10-05 Thread Kyle Meyer
joa...@verona.se writes: > This used to work: > (defun jv-org-priorities () > (setq org-highest-priority ?0 ;; 64 @ 48 0, bugs start happening if you > have higher prios tnan 0, like '!' > org-lowest-priority ?E ;; E > org-default-priority ?0 ;; 0 >

Bug: [PATCH] org-agenda: "Invalid face reference: t" errors [9.4 (release_9.4-49-g4b150d @ /home/n/.emacs.d/straight/build/org/)]

2020-10-05 Thread No Wayman
I noticed recently that my message buffer was getting clobbered with thousands of Invalid face reference errors when moving point around an org-agenda buffer. e.g.: Invalid face reference: t [4519 times] Git bisect points to commit 7a12e149907b5921011710d869b7554c35859c89 org.el

org-->latex add local variables after \end{document}

2020-10-05 Thread Uwe Brauer
Hi I have a org file that I want to export to latex but would like to add %%% Local Variables: %%% mode: latex %%% TeX-master: t %%% TeX-output-dir: "/home/oub/ALLES/HGs/TFG-2020/build" %%% End: *after* \end{document} If I do #+begin_src latex :results latex replace :exports results

Re: org-->latex add local variables after \end{document}

2020-10-05 Thread Uwe Brauer
>>> "ESF" == Eric S Fraga writes: > On Monday, 5 Oct 2020 at 09:27, Uwe Brauer wrote: >> I have a org file that I want to export to latex but would like to add > [...] >> It is added before \end{document} >> >> Any idea how to do that? > You could always add the '\end{document}' line as

Re: Two tables with same data but different sorting

2020-10-05 Thread Axel Kielhorn
> Am 02.10.2020 um 11:36 schrieb Robert Pluim : > >> On Fri, 2 Oct 2020 08:25:03 +0200, Axel Kielhorn >> said: > >>> Am 01.10.2020 um 17:47 schrieb John Kitchin : >>> >>> Glad it was helpful. You might also try (seventh row1) or (nth 6 row1). I >>> think it is the same thing, but

Re: Two tables with same data but different sorting

2020-10-05 Thread Robert Pluim
> On Mon, 5 Oct 2020 11:21:24 +0200, Axel Kielhorn > said: >> Am 05.10.2020 um 10:32 schrieb Robert Pluim : >> >>> On Mon, 5 Oct 2020 10:08:08 +0200, Axel Kielhorn said: >> >> From the docstring: Return the last link of LIST. Its car is the last

Re: org-->latex add local variables after \end{document}

2020-10-05 Thread Eric S Fraga
On Monday, 5 Oct 2020 at 09:27, Uwe Brauer wrote: > I have a org file that I want to export to latex but would like to add [...] > It is added before \end{document} > > Any idea how to do that? You could always add the '\end{document}' line as the first line of your LaTeX src block? Untested

Re: org-->latex add local variables after \end{document}

2020-10-05 Thread Eric S Fraga
On Monday, 5 Oct 2020 at 10:11, Uwe Brauer wrote: > Right this is correct and this is what I tried, however I hoped for a > more, hm, elegant solution. But on the other hand, what the heck... This is pretty much my view: elegance is a bonus but anything that works is enough! But if somebody

Re: [PATCH] Adaptive Org faces in headings?

2020-10-05 Thread Protesilaos Stavrou
On 2020-09-26, 08:31 +0200, Bastien wrote: > Bastien writes: > >> Ihor Radchenko writes: >> >>> The attached patch seems to fix the issue. >> >> Applied as 979e82fc3, thanks a lot! > > Also, marking the initial bug report as closed, thanks again. Sorry to re-open this issue. The following

Re: Two tables with same data but different sorting

2020-10-05 Thread Axel Kielhorn
> Am 05.10.2020 um 10:32 schrieb Robert Pluim : > >> On Mon, 5 Oct 2020 10:08:08 +0200, Axel Kielhorn >> said: > > From the docstring: >>> Return the last link of LIST. Its car is the last element. > >Axel> But I get: >Axel> Wrong type argument: stringp, ("30 $“) > > You

Re: Two tables with same data but different sorting

2020-10-05 Thread Robert Pluim
> On Mon, 5 Oct 2020 10:08:08 +0200, Axel Kielhorn > said: >From the docstring: >> Return the last link of LIST. Its car is the last element. Axel> But I get: Axel> Wrong type argument: stringp, ("30 $“) You need to do (car (last ...)) and you'll want some calls to

[PATCH] ob-java

2020-10-05 Thread ian martins
1 Changes = - support for functional mode (`:results value') - accept variables - don't require package, class, and main definitions - write source and result tempfiles to `org-babel-temporary-directory', but respects the `:dir' header - work with tramp 2 Examples

Re: [PATCH] ob-java

2020-10-05 Thread ian martins
I wrote those examples in an org file so I could test as I wrote them, and then exported it to make it more readable, but the export resulted in source block headers being lost. Here is the same without export: * Changes - support for functional mode (~:results value~) - accept variables -