Re: [feature request] A new cookie type [!] showing the last note taken

2020-08-30 Thread Ihor Radchenko
> I wouldn't dismiss plain text insertion too easily, either. It also > includes external tools. What happens if an external tool automatically > insert notes? > > The feature you are requesting could make sense if notes had a clear > syntax. This would bring some interesting features, too

[PATCH] Re: Re: Re: org-forward-heading-same-level and the invisible-ok argument

2020-08-30 Thread D
> Probably, it is easier if you just use seq-every-p instead of > mapcar on (number-sequence max-pos min-pos -1). The result of > seq-every-p will be inverse of the currently used expression. Oh yeah, that's much nicer. I also made the predicate check right-to-left, which just causes it to check

how to create next, previous, and up navigation links when exporting to html

2020-08-30 Thread Christopher W. Ryan
how do I create next, previous, and up navigation links when exporting to html, like in the org mode manual: https://orgmode.org/manual/HTML-specific-export-settings.html Thanks. --Chris Ryan

Re: [PATCH] ob-plantuml: Support for plantuml as well as the current java+jar solution

2020-08-30 Thread Terje Larsen
Did this look okay? I've had to rebase this once again due to some conflicts in the ORG-NEWS. Find the latest patch attached. Best regards Terje On Tue, Jun 9, 2020 at 8:53 AM Terje Larsen wrote: > > Thank you Bastien, > > I didn't get what the updated patch with shorter lines meant, the only

Re: [PATCH] Expanded ob-python results handling and plotting

2020-08-30 Thread Jack Kamm
After taking another look at my patch, I realized that I was not quite converting dictionaries to proper alists. Attached is a tweak to do this properly. The printing of dictionaries is not quite as pretty, in particular it's not a table anymore: #+begin_src python return {"a": 1, "b": 2}

Re: [PATCH] Expanded ob-python results handling and plotting

2020-08-30 Thread Jack Kamm
Hi Kyle, Thanks for the comments, I'm attaching an updated patch. Kyle Meyer writes: > ModuleNotFoundError wasn't added until Python 3.6, so I think it'd be > better to use its parent class, ImportError. I did not know this, thanks for the tip. > Should handling of Series also be added?

Re: [feature request] A new cookie type [!] showing the last note taken

2020-08-30 Thread Eric Abrahamsen
Nicolas Goaziou writes: > Ihor Radchenko writes: > >> I feel that my understand of "note" in context of org is different from >> yours. Is there a formal definition of "note" in org? > > As I stated in my first post a few hours ago: > >Notes are mostly free-form; there is no syntax

Re: [feature request] A new cookie type [!] showing the last note taken

2020-08-30 Thread Ihor Radchenko
> Again, on a given document, you can only guess what is the "last note". > This is not reliable enough to extend the syntax. I feel that my understand of "note" in context of org is different from yours. Is there a formal definition of "note" in org? If no, there is indeed no reliable way to

Re: [feature request] A new cookie type [!] showing the last note taken

2020-08-30 Thread Nicolas Goaziou
Ihor Radchenko writes: > I feel that my understand of "note" in context of org is different from > yours. Is there a formal definition of "note" in org? As I stated in my first post a few hours ago: Notes are mostly free-form; there is no syntax describing them. > However, we can formalise

Re: [feature request] A new cookie type [!] showing the last note taken

2020-08-30 Thread Nicolas Goaziou
Ihor Radchenko writes: > I was mainly referring to org-add-note. The last note taken with > org-add-note can be found quite reliably. > > I am using the following code saving the last note into :SUMMARY: > property upon exiting the note buffer. Though it may be an overkill, not > sure how easy

Re: [feature request] A new cookie type [!] showing the last note taken

2020-08-30 Thread Ihor Radchenko
> Notes are free-form; there is no syntax describing them. Org cannot tell > what is a "note". As a consequence, pointing to "the last note taken" is > not reliable, syntax wise. > Of course, under some assumptions (e.g., notes setup is fixed, you never > write notes by hand, ...), you could

Re: [feature request] A new cookie type [!] showing the last note taken

2020-08-30 Thread Nicolas Goaziou
Hello, Ihor Radchenko writes: > Over the years of using Org I often have a need to add a short note > about how to proceed with some task: > > * REVIEW check again, subscribe | sindresorhus/awesome:  Awesome lists > about all kinds of interesting topics :BOOKMARK: > :PROPERTIES: >

Re: [PATCH] ob-core: Avoid table conversion warning for empty results

2020-08-30 Thread Colin Baxter
Dear Kyle, > Kyle Meyer writes: >> Kyle Meyer writes: >>> Thanks for reporting. The _display_ of this warning starts with >>> my 14878f3f9 (ob-core: Display warning on failure to read >>> results, 2020-05-21). Here's the associated thread on the >>> mailing list: