Re: BUG?: Are TAGs case sensitive? ('org-agenda-show-tags')

2021-04-16 Thread Ihor Radchenko
> Is it a bug that 'org-agenda-show-tags' does this? It is a bug. Agenda is downcasing all the tags. Also, see https://orgmode.org/list/87k0rftf8t.fsf@localhost/ Someone needs to study the agenda code to understand the need of downcasing and how to remove it safely. Patches are welcome. Best, Ih

Re: When auto-fill breaks a link into multiple lines, the link is no longer displayed as a link

2021-04-16 Thread Yukio Siraichi
Hi Bastien. I'm also having the same issue here. Emacs: GNU Emacs 27.2.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.5) of 2021-04-16 Package: Org mode version 9.4.4 (release_9.4.4 @ /home/user/.local/share/emacs/27.2.50/lisp/org/) I've been able to reproduce with 'emacs -Q' (file is a

[PATCH] org-table-import: Give option to import interactively even if filename doesn't match

2021-04-16 Thread Utkarsh Singh
Hi, Can we give small flexibility in choosing the filename interactively for `org-table-import'? Currently org-table-import will just throw an error when file name doesn't have .txt, .csv or .tsv as extension. This patch tries to add a simple yes-and-no to let user choose if they want to continu

[PATCH] org.el (org-show-context-detail): add option 'ancestors-with-entry

2021-04-16 Thread Cheong Yiu Fung
Hi, I'm proposing a new option in `org-show-context-detail', which shows current headline, its ancestors, *and the entry itself*. This is useful when export matched subtrees and their contents quickly with least manual intervention. Consider when working on different aspects of a project and takin

Re: Improving org-macro.el

2021-04-16 Thread Nicolas Goaziou
Hello, Stefan Monnier writes: > In any case, the code struck me as quite inefficient since it > reparses the macro definition every time the macro is called. Indeed. > I came up with the tentative patch below. Thank you. > It seems to work on Org's own manual, but other than that I haven't g

Re: [Patch] to correctly sort the items with emphasis marks in a list

2021-04-16 Thread Maxim Nikulin
Hi Juan, On 16/04/2021 01:21, you wrote: #+begin_src emacs-lisp :tangle list-var.el (message "%S" (sort '("-\s\sv" "-\sv" "-\sa" "-\s\sa") #'string-collate-lessp)) #+end_src #+begin_src sh exec 2>&1 LC_ALL=en_US.UTF-8 emacs --batch -Q -l list-var.el #+end_src #+RESUL

Re: Is it possible to #+include: src blocks and tangle them too?

2021-04-16 Thread Greg Minshall
Rama, one other comment/suggestion. > I haven’t been able to fully work with Donald Knuth’s suggestion of > writing a Literate Program directly in a tool like orgmode/noweb since > it is a nuisance to keep having to type C-c ' to go into the editing > mode of the language concerned. while i have

Re: [Patch] to correctly sort the items with emphasis marks in a list

2021-04-16 Thread Maxim Nikulin
On 16/04/2021 21:59, Maxim Nikulin wrote: Ukrainian sort works better than Russian one with such example: printf "Иванова Алла\nИванов Адам\nИванова Светлана\n" \   | LANG=uk_UA.UTF-8 sort Иванов Адам Иванова Алла Иванова Светлана printf "Иванова Алла\nИванов Адам\nИванова Светлана\n" \   | L

Re: Repository of Org files with important dates?

2021-04-16 Thread Eric S Fraga
If you want solar based information (equinox, solstice, etc.), which is not quite what you mentioned, I used this script to generate org file headings: #+begin_src shell :results output raw tmpfile=$(mktemp /tmp/date.XX) for year in $(seq 2018 2068) do links http://aa.usno.navy.mil

Re: Improving org-macro.el

2021-04-16 Thread Stefan Monnier
>> It seems to work on Org's own manual, but other than that I haven't gone >> out of my way to test it. > There were a few problems reported by the test suite that I tried to > address. I also updated `org-lint', which didn't handle macro > definitions as functions. Thanks. >> - It also changes

Re: wip-cite status question and feedback

2021-04-16 Thread András Simonyi
Dear All, apologies for being this late with my reaction -- here are some comments/questions on Nicolas's summary: On Mon, 12 Apr 2021 at 15:19, Nicolas Goaziou wrote: > suffix" are all optional. So, in its minimal form, it can be as simple > as: > > [cite:@Doe:1995a] are short-form citati

Re: wip-cite status question and feedback

2021-04-16 Thread Bruce D'Arcus
On Fri, Apr 16, 2021 at 1:06 PM András Simonyi wrote: > The Emacs world is currently rather BibTeX > centered, but biblatex is an important (and rather different) > alternative, and there is CSL as well which I expect to become more > and more relevant (it's citeproc-el's native format). Moreover

Concerns about community contributor support

2021-04-16 Thread Timothy
Dear all, Over the last few months I have felt an increasing level of concern over the lack of response to patches. This email is rather long, but please, bear with me. The goal is to start a discussion on the problems this creates, and consider short and long-term solutions. When both community

Bug: JavaScript in HTML export not recognized by LibreJS as free [9.4.5 (9.4.5-16-g94be20-elpaplus @ /home/jorge/.config/emacs/elpa/org-plus-contrib-20210412/)]

2021-04-16 Thread Jorge P. de Morais Neto
Hi. The HTML export has JavaScript that LibreJS does not recognize as free. My first attempt at an workaround (inspired by the Org Mode mailing list) was merely encoding the ampersand in the magnet link, but that *did not make LibreJS happy*. Then I checked LibreJS manual and saw this excerpt:

Re: Repository of Org files with important dates?

2021-04-16 Thread Marcin Borkowski
On 2021-04-16, at 17:55, Eric S Fraga wrote: > If you want solar based information (equinox, solstice, etc.), which is > not quite what you mentioned, I used this script to generate org file > headings: Can't Emacs itself generate those data? -- Marcin Borkowski http://mbork.pl

Re: Is it possible to #+include: src blocks and tangle them too?

2021-04-16 Thread Berry, Charles
Hi Greg, > On Apr 16, 2021, at 8:27 AM, Greg Minshall wrote: > > Rama, > > one other comment/suggestion. > >> I haven’t been able to fully work with Donald Knuth’s suggestion of >> writing a Literate Program directly in a tool like orgmode/noweb since >> it is a nuisance to keep having to type

Re: Improving org-macro.el

2021-04-16 Thread Stefan Monnier
> I mentioned it in the ORG-NEWS file, and applied your changes. We'll see > how it goes. I just saw that it burps in Emacs-26 because of a bug when functions are declared with 0 optional arguments like (&optional &rest x). So I suggest the patch below, Stefan diff --git a/lisp/org-ma

[PATCH] Remove diary-list-entries Emacs 21 compat code

2021-04-16 Thread Stefan Kangas
Please find attached a small cleanup patch to org-agenda.el. From 16224c9730fe2403d280fc3390ed700ce39c00ae Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sat, 17 Apr 2021 01:45:31 +0200 Subject: [PATCH] Remove diary-list-entries Emacs 21 compat code * lisp/org-agenda.el (org-get-entries-from-

non-brittle granular includes

2021-04-16 Thread Samuel Wales
can body text or paragraphs be included upon export? i have a file like this: * top ** a b [these are paragraphs] c [another paragraph] d [another paragraph] ** e # i'd like to include b and c here redundantly # because i want to export e separately f [paragraph] ** g i'd like to use #+NAME o