Re: patch to suppress "deprecated cl" warnings plus few others

2020-08-25 Thread Kyle Meyer
Richard Kim writes: > Attached patch suppresses byte compiler warnings. Thanks. contrib/ doesn't receive much love when it comes to these sorts of things, and byte-compiling its files is not a pretty sight. > Subject: [PATCH] Suppressed all "deprecated cl" warnings plus few others. A

Re: Bug: no math-mode detection for align-environment [9.3.7 (9.3.7-13-ge62ca4-elpaplus @ /home/stefi/.emacs.d/elpa/org-plus-contrib-20200713/)]

2020-08-25 Thread Kyle Meyer
Stefi writes: > Hi Kyle, hi mailing list, > > I also evaluated (org-inside-LaTeX-fragment-p) and got non-nil values > for all blocks, however, inside the align* environment, the "fr" does > not get expanded on TAB whereas it does in equation environment. So > either the matchers do not include

Re: keep org drawers visible

2020-08-25 Thread Ihor Radchenko
> It’s also possible, if you want finer control of what’s shown > (instead of showing all the properties), to add a 'columnview' > block. It would show a formatted table of whichever properties you > specify (from certain subtrees or from the entire file), arranged > in the order you choose.

Re: org-forward-heading-same-level and the invisible-ok argument

2020-08-25 Thread Ihor Radchenko
> So I thought it is best to ask *why* the >navigation commands take invisibility into account the way they do, >and whether you guys have a suggestion that may be more elegant than >the approach I came up? I guess it is simply because nobody though that the leading stars can be hidden via

Re: [RFC] ob-reticulate: R+Python interface from Babel

2020-08-25 Thread Kyle Andrews
Hi Jack, As a frequent reticulate user I am very excited to see this patch. I hope others feel the same and it gets included into org mode as I cannot wait to use it. Best Regards, Kyle On Mon, Aug 24, 2020, 11:28 Jack Kamm wrote: > Hi all, > > Reticulate is an R package for interfacing

Re: How to expand macros in tangled code blocks?

2020-08-25 Thread Diego Zamboni
To follow up on my own question, I figured out a solution. I added three hooks with the following local variables: # Local Variables: # eval: (add-hook 'org-babel-pre-tangle-hook (lambda () (setq zz/saved-macro-templates org-macro-templates)) :append :local) # eval: (add-hook

Re: convert a org table to plain text

2020-08-25 Thread Nick Dokos
Uwe Brauer writes: > Hi > > What is the inverse function to > org-table-convert-region? > > I am unable to find anything in the documentation or google. > > Regards > > We Brauer > > > Does this:

Re: convert a org table to plain text

2020-08-25 Thread Peter Neilson
On Tue, 25 Aug 2020 15:44:30 -0400, Uwe Brauer wrote: Hi What is the inverse function to org-table-convert-region? I am unable to find anything in the documentation or google. Regards We Brauer I tried M-x table-release as suggested by the documentation and did not get anything.

convert a org table to plain text

2020-08-25 Thread Uwe Brauer
Hi What is the inverse function to org-table-convert-region? I am unable to find anything in the documentation or google. Regards We Brauer

Re: keep org drawers visible

2020-08-25 Thread Colin Baxter
Dear David, > David Rogers writes: > Colin Baxter writes: >> Hello, >> >> Property drawers remaining invisible even when I use >> - drives me nuts. I know about M-x >> org-hide-drawer-toggle but how do I keep the drawers open >> all the time without having to

Re: keep org drawers visible

2020-08-25 Thread David Rogers
Colin Baxter writes: Hello, Property drawers remaining invisible even when I use - drives me nuts. I know about M-x org-hide-drawer-toggle but how do I keep the drawers open all the time without having to toggle? I work on the basis that I want to see what I write - if I didn't then I

org-forward-heading-same-level and the invisible-ok argument

2020-08-25 Thread D
Hi, I am currently thinking about how to have org-forward-heading-same-level and its sister command work together with a setting of my minor mode org-superstar-mode. The issue that arises is that when my mode renders the leading stars of a headline invisible, org-forward-heading-same-level

Re: Website revamp?

2020-08-25 Thread TEC
TEC writes: Oh my. I just checked that out and it looks ridiculous. I seem to have accidentally messed with the mobile styling at some point, should be easy to get it to behave sensibly again though. Please give this another look now, it should be better. There is something wrong with

[PATCH] Fix bug in org-num check for commented headlines

2020-08-25 Thread Anders Johansson
I found an easily solved bug in org-num. This happens when org-num-skip-commented is non-nil. When creating a new headline, often org-num--skip-value is invoked before any headline text is created. This means that ‘title‘ is nil and the string-match check breaks. Checking if title is non-nil

Re: save plot in python babel

2020-08-25 Thread Jack Kamm
Hi Jeremie, > I tried to look around and noticed that the documentation regarding > python with org-mode is aging a bit... Any help will be > appreciated. I'll be ready to improve the documentation of org-babel > python setup as soon as I'm more familiar with it myself. Historically ob-python

save plot in python babel

2020-08-25 Thread Jeremie Juste
Hello, I've barely use python with org-mode and I would need some help with the python setup. I somehow have some trouble saving python plots. Is this the right way to do it? #+begin_src python :results output file link :file myfig1.pdf :session *Python* import matplotlib import numpy as

Re: Website revamp?

2020-08-25 Thread TEC
Maxim Nikulin writes: I have tried adaptive design tool in firefox. Currently I would rather complain concerning the size of the unicorn logo. It consumes whole screen when emulation of a phone and landscape orientation is selected. I expect more informative greeting. Oh my. I just

Re: bash babel code gives error

2020-08-25 Thread Colin Baxter
> Colin Baxter writes: > Hello, I have various .tex files and an org file in the same > directory. In the org file is the following simple bash babel-code > #+begin_src bash sha256sum *.tex > CHECKSUM #+end_src > This code block used to work but no longer. This is not

bash babel code gives error

2020-08-25 Thread Colin Baxter
Hello, I have various .tex files and an org file in the same directory. In the org file is the following simple bash babel-code #+begin_src bash sha256sum *.tex > CHECKSUM #+end_src This code block used to work but no longer. It now gives the error Error reading results:

Re: Website revamp?

2020-08-25 Thread Maxim Nikulin
24.08.2020 14:43, TEC wrote: I have performed debuzzwordification on the header, and implemented the compacted design prototyped previously. I expect Maxim will likely still think the font-size is too big, but I somewhat like it as it currently is :P I have tried adaptive design tool in

How to expand macros in tangled code blocks?

2020-08-25 Thread Diego Zamboni
Hi everyone, Is it possible to expand Org macros in tangled code blocks? I found this old message: https://lists.gnu.org/archive/html/emacs-orgmode/2011-03/msg00857.html, but the mentioned org-export-preprocess-apply-macros doesn't seem to exist anymore. Thanks for any tips, --Diego