Re: issue tracker?

2020-06-07 Thread Bastien
Hi Mario, Mario Frasca writes: > very interesting approach.  Thanks for looking more closely into it. > sounds like you don't want to manage the status changes a bit > tighter.  I know, I can check the code, but it's more practical if we > mention it here explicitly.  anybody can send status c

Align CJK characters in Org-table.

2020-06-07 Thread Jeremie Juste
Hello, I just wanted to give more visibility to [0] valign which provides a way to align CJK characters in org-table. It seems pretty recent but from what I can tell it does the job. Best regards, Jeremie [0]: https://github.com/casouri/valign

Re: FWD: Org-Babel Support for Powershell

2020-06-07 Thread Russell Adams
On Sat, Jun 06, 2020 at 11:38:38PM +, Gustav Wikström wrote: > #+begin_src powershell > 2+2 > #+end_src > > #+RESULTS: > : 4 That's pretty easy. What executable should it run? > /of topic It's safe to say the free software movement has gained a strong > footing in the software world. If it'

Re: FWD: Org-Babel Support for Powershell

2020-06-07 Thread tomas
On Sun, Jun 07, 2020 at 01:47:45PM +0200, Russell Adams wrote: > On Sat, Jun 06, 2020 at 11:38:38PM +, Gustav Wikström wrote: > > #+begin_src powershell > > 2+2 > > #+end_src > > > > #+RESULTS: > > : 4 > > That's pretty easy. What executable should it run? > > > /of topic It's safe to say t

org-ref for html and blog ?

2020-06-07 Thread Joseph Vidal-Rosset
Hi everybody, The package org-ref is a wonderful tool and I do not imagine working without its helps now (again many thanks to John Kitchin). But for some days now I meet a problem with bibliography html export with org-ref and I cannot no more use org-export-head that I used for my blog (https:

Re: issue tracker?

2020-06-07 Thread Mario Frasca
good day Bastien On 07/06/2020 04:38, Bastien wrote: anybody can 'vote-for' a bug, and you keep a counter on voted-for. It would require people to register on updates.orgmode.org. I'm not sure the expected benefit is really worth it for now. why would it?  you already trust email senders on i

Re: org-ref for html and blog ?

2020-06-07 Thread Joseph Vidal-Rosset
Hi again, I just discovered that my problem came from citeproc-org More exactly I had these lines in my init.el (require 'citeproc) (require 'citeproc-org) (citeproc-org-setup) (setq citeproc-org-html-bib-header "References\n") (setq citeproc-org-default-style-file "~/Dropbox/Orgzly/ieee-with-ur

[join rows] (was: join tables from different files)

2020-06-07 Thread Uwe Brauer
>>> "t" == tbanelwebmin writes: > Yes you can. > Use an org-id Thanks! Nice! I have a another question in this context: can I join, say 4 tables, but row wise? Say I have #+begin_src #+TBLNAME: RK #+ATTR_HTML: :border 2 :rules all :frame border | met | Q1 | Q2 | Q3 | total | |--

ox-* vs org-* naming convention?

2020-06-07 Thread Diego Zamboni
Hi, I am working on submitting a new set of exporters I've been working on (https://gitlab.com/zzamboni/ox-leanpub) to MELPA, and I received feedback [1] about the discrepancy between the package names (ox-leanpub-*) and the functions they define (org-leanpub-*). This is also flagged by =package-l

Re: bug#41641: 27.0.91; Avoid error on org-html-fontify-code

2020-06-07 Thread Kyle Meyer
Pierre Téchoueyres writes: > I've also attached is a patch to fix this. Thanks. This patch was sent as a separate message to the Org mailing list [0] and has been applied to the Org repo. Closing. [0]: https://orgmode.org/list/87eeqyyf4t@killashandra.ballybran.fr/

Re: 27.0.91; Avoid error on org-html-fontify-code

2020-06-07 Thread Kyle Meyer
Pierre Téchoueyres writes: > Many thanks for that. If I've well understood it's on master. Do you > know (or guess) how long will this take to land in the next release ? This month is the hope: https://orgmode.org/list/87pnaindwq@bzg.fr > I had also open bugs #41641, may be will you close i

Re: ox-* vs org-* naming convention?

2020-06-07 Thread Kaushal Modi
Hello, This came up when I submitted ox-hugo to Melpa as well[1]. I stayed with the norm.. naming the package ox-hugo, but naming all the functions and variables with org-hugo-* prefix. [1] https://github.com/purcell/package-lint/issues/89

Re: New mailing list archive at https://orgmode/list/

2020-06-07 Thread Kyle Meyer
[ +cc Eric Wong, mostly to say thanks for all the work he puts into public-inbox, which is the software behind these archives, but also so that he can correct me if I misrepresent any capabilities of or plans for public-inbox ] > Bastien writes: > >> with Kyle's help, I've set up a new mail

Re: Bug: ob-python mangles multiline :var values [9.3.6 (release_9.3.6-397-ga089600)]

2020-06-07 Thread Kyle Meyer
Jack Kamm writes: > My fix this time was to use functions from python.el to indent, and to > detect whether we are in a string and shouldn't be indented. > > I also added a couple more unit tests, one for multiline strings, and > one for the variable scope/assignment issue that Matt reported. Tha

Re: New mailing list archive at https://orgmode/list/

2020-06-07 Thread Eric Abrahamsen
Kyle Meyer writes: > [ +cc Eric Wong, mostly to say thanks for all the work he puts into > public-inbox, which is the software behind these archives, but also so > that he can correct me if I misrepresent any capabilities of or plans > for public-inbox ] Thanks for this response, Kyle (and

Re: [patch suggestion] Mitigating the poor Emacs performance on huge org files: Do not use overlays for PROPERTY and LOGBOOK drawers

2020-06-07 Thread Ihor Radchenko
Hello, [The patch itself will be provided in the following email] I have four more updates from the previous version of the patch: 1. All the code handling modifications in folded drawers/blocks is moved to after-change-function. It works as follows: - if any text is inserted in the middle

Re: [patch suggestion] Mitigating the poor Emacs performance on huge org files: Do not use overlays for PROPERTY and LOGBOOK drawers

2020-06-07 Thread Ihor Radchenko
The patch (against 1aa095ccf) is attached. diff --git a/contrib/lisp/org-notify.el b/contrib/lisp/org-notify.el index 9f8677871..ab470ea9b 100644 --- a/contrib/lisp/org-notify.el +++ b/contrib/lisp/org-notify.el @@ -246,7 +246,7 @@ seconds. The default value for SECS is 20." (switch-to

Re: [patch suggestion] Mitigating the poor Emacs performance on huge org files: Do not use overlays for PROPERTY and LOGBOOK drawers

2020-06-07 Thread Ihor Radchenko
Github link to the patch: https://gist.github.com/yantar92/6447754415457927293acda43a7fcaef Ihor Radchenko writes: > Hello, > > [The patch itself will be provided in the following email] > > I have four more updates from the previous version of the patch: > > 1. All the code handling modificati

Re: ox-* vs org-* naming convention?

2020-06-07 Thread Jens Lechtenboerger
On 2020-06-07, Diego Zamboni wrote: > Hi, > > I am working on submitting a new set of exporters I've been working on > (https://gitlab.com/zzamboni/ox-leanpub) to MELPA, and I received > feedback [1] about the discrepancy between the package names > (ox-leanpub-*) and the functions they define (or

Re: [join rows] (was: join tables from different files)

2020-06-07 Thread tbanelwebmin
Le 07/06/2020 à 17:09, Uwe Brauer a écrit : > "t" == tbanelwebmin writes: > > Yes you can. > Use an org-id > > Thanks! Nice! > > > I have a another question in this context: > can I join, say 4 tables, but row wise? > Say I have > > #+TBLNAME: RK > #+ATTR_HTML: :border 2 :r

Re: ox-* vs org-* naming convention?

2020-06-07 Thread Diego Zamboni
Hi Kaushal and Jens, Thanks for your feedback, and also for the idea for the workaround used in ox-re-reveal - that's a nice one :) Given the special meanings of both the org- and ox- prefixes, I will insist on keeping the current naming, and maybe take a stab at coming up with a PR for https://g