Re: [BUG] Questionmarks in org-agenda instead of file names [9.5.2 (9.5.2-g3154c2 @ /Users/eugr/.emacs.d/straight/build/org/)]

2022-01-28 Thread Ihor Radchenko
Eugene Rakhmatulin writes: >> Can you try the following: >> 1. (setq org-element--cache-self-verify 'backtrace) in your init.el >>before loading org >> 2. Do whatever it takes to get question marks as category in agenda >> 3. Go to the problematic Org buffer and run >>M-: (org-element--ca

Is org-block really the intended face for captions?

2022-01-28 Thread Kai Harries
Hello, this is my first post to this mailing list. Great thanks to all of you that have made org-mode such a wonderful tool. I usually have lots of code-blocks in my org-mode documents. I recently decided to give them another background color (by modifying the face "org-block") to distinguish t

Re: Org-syntax: Intra-word markup

2022-01-28 Thread Ihor Radchenko
Max Nikulin writes: > It could be used for one more purpose. I miss "fallback" option for > export snippets. E.g. if explicit raw markup is specified for HTML and > LaTeX, it would be nice to have something for other backends such as > ascii or odt. In the series of adjacent export snippets @@

Re: [BUG] Cached element is incorrect in file.org [9.6 (9.6-??-0c9b30e @ /Users/jeffballowe/.emacs.d/.local/straight/build-27.2/org/)]

2022-01-28 Thread Ihor Radchenko
Jeff writes: > Sorry for the delay responding. No problem. This list does not have reddit pacing :) > The problem resolved after updating Doom Emacs. Great! > I’m not sure why it resolved, because the org-mode version remained > the same. Doom Emacs uses development version of Org mode. As y

Re: [BUG] Cached element is incorrect in file.org [9.6 (9.6-??-0c9b30e @ /Users/jeffballowe/.emacs.d/.local/straight/build-27.2/org/)]

2022-01-28 Thread Jeff
Hello, Ihor, and thank you for the very fast reply. Sorry for the delay responding. The problem resolved after updating Doom Emacs. I’m not sure why it resolved, because the org-mode version remained the same. I am new to emacs and so also to Doom Emacs. I’m not sure if it is good practice to u

Re: date format in agenda view

2022-01-28 Thread Juan Manuel Macías
Hi Uwe, Uwe Brauer writes: > How can I obtain the Spanish week names? I have this in my init: #+begin_src emacs-lisp (setq calendar-week-start-day 1 calendar-day-name-array ["domingo" "lunes" "martes" "miércoles" "jueves" "viernes" "sábado"] calendar-m

Re: date format in agenda view

2022-01-28 Thread Uwe Brauer
>>> "JMM" == Juan Manuel Macías writes: > Hi Uwe, > Uwe Brauer writes: >> How can I obtain the Spanish week names? > I have this in my init: > #+begin_src emacs-lisp > (setq calendar-week-start-day 1 > calendar-day-name-array ["domingo" "lunes" "martes" "miércoles" >

couldn't org-table-create-with-table\.el respect hline

2022-01-28 Thread Uwe Brauer
Hi I start with | Example | Text| Dates| other | |-+-+--+-| | this| comment | <2022-01-28 vie> | nothing | That is converted to +-+-+--+-+ | Example | Text| Dates| other | +-+-

date format in agenda view

2022-01-28 Thread Uwe Brauer
Hi I have set my language environment to spanish and indeed org-time-stamp inserts <2022-01-28 vie> Viernes=Friday However I have an agenda file with entries like this * <2022-01-28 vie> dinner But in agenda view it is displayed as Friday 28 January 2022 file: dinner How can

Re: [PATCH] Add support for $…$ latex fragments followed by a dash

2022-01-28 Thread Timothy
Hi Max, > There is no point to discuss deprecation of $…$ and ... while usage of > such constructs is not discouraged by the org manual Isn’t the point of discussing depreciation now that we’d change the manual etc. to discourage it? 😛 FWIW, I have an extra 2c to add: I think that there’s a dang

Re: Org-syntax: Intra-word markup

2022-01-28 Thread Max Nikulin
On 05/12/2021 04:48, Tom Gillespie wrote: Since org is a valid export backend though, perhaps this behaviour should be reserved for @@:…@@, i.e. no export backend, which I think semantically fits fairly nicely. ... What this means is that @@:...@@ syntax is not actually used in Org at all at t

Re: [PATCH] Add support for $…$ latex fragments followed by a dash

2022-01-28 Thread Max Nikulin
On 28/01/2022 02:15, Tim Cross wrote: If we do deprecate support for $...$, it might also be a good idea to see if we can add a utility function which would make it easier for people to migrate existing documents to the new/alternative syntax. For the same reason it is hard to reliably parse $..

Re: [PATCH] Intra-word markup: \relax

2022-01-28 Thread Juan Manuel Macías
Max Nikulin writes: > I have an idea how to implement *intra*/word/ markup with minimal > change of Org syntax. At first I had a hope that it is enough to > introduce \relax entity that expands to empty string, but it does not > work for second part of words: *intra*\relax{}/word/ is exported to >

emacs-orgmode@gnu.org

2022-01-28 Thread Max Nikulin
On 27/01/2022 07:03, chris wrote: First: `xdg-open "org-protocol://store-link?url=URL&title=TITLE"` from a terminal. Then `M-x org-insert-link` in emacs, or not (it makes no difference). Then cut-and-paste from non-emacs-application (e.g., Kde's Konsole, or Firefox) to emacs. When doing `C-y`

Re: [BUG] org-protocol-store-link does not account for argument type

2022-01-28 Thread Max Nikulin
On 28/01/2022 01:15, Thuna wrote: See the last paragraph of the docstring: FNAME should be a property list. If not, an old-style link of the ^^ form URL/TITLE can also be used." You pass a string for *new* URI style. I see, it seems I have misunderstoo

[PATCH] Intra-word markup: \relax

2022-01-28 Thread Max Nikulin
On 02/12/2021 17:50, Denis Maier wrote: Currently, org syntax doesn't officially seem to support intra-word emphasis. Am I missing something? If the assessment is correct: Is there a reason for this? And, shouldn't that be officially added? I have an idea how to implement *intra*/word/ marku

[ISSUE] Re: [PATCH] lisp/org-agenda.el: Add header to agenda clock report table

2022-01-28 Thread Christopher M. Miles
I tested this commit, it should auto append a newline character after ~org-agenda-clock-report-header~. Otherwise the header line will in same line with table first line. Samim Pezeshki writes: > Thanks Nicolas for reviewing the changes! > > I applied the changes. > Attached is the updated pat