Re: Typing latency

2021-02-10 Thread Eric S Fraga
On Tuesday, 9 Feb 2021 at 23:33, Ihor Radchenko wrote: > I have the following in my config to speed things up: > > (setq org-priority-regexp "^\\*+.*\\(\\[#\\([A-Z0-9]+\\)\\] ?\\)") Should this not be the default setting? Reading the documentation, priority cookies must be in a headline with a

Re: local variables and export processing in hooks

2021-02-10 Thread Eric S Fraga
On Tuesday, 9 Feb 2021 at 14:21, Sébastien Miquel wrote: > I think this buffer copy preserves local variables. I know I use a > such a local variable and its value can be read during macro > expansion. It does. Not sure what happened but I thought setting a file local variable was the first

Re: local variables and export processing in hooks

2021-02-10 Thread Maxim Nikulin
On 09/02/2021 19:06, Eric S Fraga wrote: On Tuesday, 9 Feb 2021 at 12:30, to...@tuxteam.de wrote: Perhaps a file local variable? I tried but this doesn't seem to be propagated to the export as the export works on a copy of the buffer, not the buffer itself. That's what #+BIND is for,

Re: OT: M-S-$ Not Working

2021-02-10 Thread Maxim Nikulin
On 07/02/2021 00:18, Tim Cross wrote: I've not seen many editors with the same level of support for different alphabets and writing direction as Emacs and there are many keyborad layouts which don't include the '$' key. At the end of the day, it really just comes down to mapping of key codes -

Re: OT: M-S-$ Not Working

2021-02-10 Thread Tim Cross
Maxim Nikulin writes: >> Were you able to get any assistance with this on the Emacs devel list? > > There was a thread in 2009, no results however. Unsure if it reasonable > to raise the question again without a proposal how to solve the problem. > >

Re: local variables and export processing in hooks

2021-02-10 Thread M . ‘quintus’ Gülker
Am 09. Februar 2021 um 14:21 Uhr +0100 schrieb Sébastien Miquel: > Eric S Fraga writes: > > I tried but this doesn't seem to be propagated to the export as the > > export works on a copy of the buffer, not the buffer itself. That's > > what #+BIND is for, supposedly... > > I think this buffer

Re: Typing latency

2021-02-10 Thread Samuel Wales
i have a note that in org 8.0+ they have to be after the todo kw. however, i /always/ interpret this to mean after the todo kw position i.e. after where the todo kw would go if it is not there. thus "* #[A] take out garbage" is legit. "* #[A] NEXT take out garbage" is wrong. "* NEXT take out

[PATCH] Allow tags containing capital letters in org-agenda-filter

2021-02-10 Thread Ihor Radchenko
Hi, I recently noticed that org-agenda-filter does not match tags with capital letters because all the stored tags in agenda are downcased. The attached patch is fixing the issue. Though, ideally, it would be better if agenda filter were case-sensitive for tags. Best, Ihor >From