The git repo for contrib packages

2021-06-29 Thread Vikas Rawal
I am aware of the proposal to separately package the contrib libraries. I find that the org-mode git repo at https://code.orgmode.org/explore/repos does not have contrib packages any more. But I can't find the repository for those packages. I would like to compile my own orgmode packages (core

Re: Virtually prefix headlines according to content

2021-06-29 Thread Samuel Wales
along similar lines one possibility is to stick a symbol into the stars. similar code could also indicate that scheduled and deadline. On 6/29/21, John Kitchin wrote: > you could use this alternative to just change the display without adding > the tag: > > (org-map-entries (lambda () >

Re: [wip-cite-new] Exporting to pandoc md (and from there to zotero odt)

2021-06-29 Thread Matt Price
Anders, just to be clear: with your new exporters I can, as of today, insert the new [cite:@citekey] links using a better-bibtex-generated bibliography file, export to odt via pandoc, and then manage my citations with zotero in the resultant odt? it so... cool. On Wed, Jun 23, 2021 at 4:04 PM

Re: Bug: ODT export of Chinese text inserts spaces for line breaks

2021-06-29 Thread Eric Abrahamsen
Maxim Nikulin writes: > On 29/06/2021 10:47, James Harkins wrote: >> So, it would make sense to add a rule to the exporter: if one of the >> characters before or after a source-text line break is a Chinese, >> Japanese or Korean character, do not add a space. > > On 29/06/2021 11:43, tumashu

Re: Bug: ODT export of Chinese text inserts spaces for line breaks

2021-06-29 Thread Maxim Nikulin
On 29/06/2021 10:47, James Harkins wrote: So, it would make sense to add a rule to the exporter: if one of the characters before or after a source-text line break is a Chinese, Japanese or Korean character, do not add a space. On 29/06/2021 11:43, tumashu wrote: You can try the below config

Re: [PATCH] Change default latex compiler to latexmk

2021-06-29 Thread Bruce D'Arcus
What's the status of this patch? On Sun, Jun 6, 2021 at 12:55 PM Timothy wrote: > > Hey all, > > From the earlier discussion on this, I got feeling a consensus had > reached that this is a good idea, as long as we check that latexmk is > available first. > As such, here is a patch changing the

[mini, special, fyi] Speed Key g change

2021-06-29 Thread Marco Wahl
Dear Org people, It's almost nothing, but the default for speed key "g" in org-speed-commands changed slightly in master. Instead of the recent, irritating--at least for me--text "Refile...to" there is now "Goto" displayed in the minibuffer. The latter expresses that the action to be done is a

Re: Virtually prefix headlines according to content

2021-06-29 Thread John Kitchin
you could use this alternative to just change the display without adding the tag: (org-map-entries (lambda () (looking-at org-heading-regexp) (put-text-property (match-beginning 2) (match-end 2) 'display (concat "GH " (match-string 2 "+GITHUB={.+}") There might be some

Re: How to compute timespan in Agenda view?

2021-06-29 Thread Jude DaShiell
That would be useful even in tables. If memory serves there's a duration function but it's limited to time spans within 24 hours. On Tue, 29 Jun 2021, Rodrigo Morales wrote: > > Let's say I move my cursor in the agenda view. Is there any built-in > function for getting the timespan between the

Re: Virtually prefix headlines according to content

2021-06-29 Thread Juan Manuel MacĂ­as
Rodrigo Morales writes: > What I would like to know is whether it is possible to format a headline > by taking into consideration the properties it has. For example, in this > specific scenario, I would like to make all headlines that have a > "GITHUB" to show "GH" before the actual headline (the

Re: Virtually prefix headlines according to content

2021-06-29 Thread indieterminacy
Hi Rodrigo, regarding syntax, it would be cool if you aligned the style to match Emacs' Hyperboles GitHub style: => https://github.com/rswgnu/hyperbole/blob/master/DEMO ``` ** Github (Remote) References For software developers who use Github for publishing and version control, Github links are

C-c C-e functions reported as if they weren't on any key

2021-06-29 Thread Rodrigo Morales
* The context I usually use the org-publish feature to publish specific HTML files. For this reason, I use the function org-publish-current-file. * The problem I didn't know that =org-publish-current-file= was mapped to =C-c C-e P p= because =C-h w org-publish-current-file= showed the

Re: Virtually prefix headlines according to content

2021-06-29 Thread Eric S Fraga
On Tuesday, 29 Jun 2021 at 06:25, Rodrigo Morales wrote: > What I would like to know is whether it is possible to format a headline > by taking into consideration the properties it has. For example, in this > specific scenario, I would like to make all headlines that have a > "GITHUB" to show "GH"

Virtually prefix headlines according to content

2021-06-29 Thread Rodrigo Morales
* The context When taking notes in Org Mode, I usually store Github links of the repositories that are relevant to the topic I'm taking notes as headlines. For this reason, I've multiple headlines of the form within my notes (from my notes on Graph Theory): #+BEGIN_SRC org *

How to compute timespan in Agenda view?

2021-06-29 Thread Rodrigo Morales
Let's say I move my cursor in the agenda view. Is there any built-in function for getting the timespan between the current date and the date at point? If there is no built-in function for accomplishing this. Could you point to some functions or variables that might help me to craft my own