[O] :exports ignored when org-export-babel-evaluate is nil

2016-07-03 Thread Christian Heinrich
Hello, I built org-mode from the master branch. I set org-export-babel- evaluate to nil in my init.el as my org-files contain lots of src- blocks that take ages to execute. I realized that since commit ec615b192d703a0201ceefd46897e4636ff00a38, the export behavior has changed. Since then, the

[O] ox-latex: Export ignores org-latex-classes from 4th level on

2016-11-06 Thread Christian Heinrich
Hello, the ox-latex file uses org-latex-classes to help, among other things, with exporting headlines to the right commands, such as \section, \subsection etc. Unfortunately, not all headlines get exported correctly; the default "article" class, as defined in ox-latex.el (see org-latex-classes

[O] Problems with inline source blocks

2019-05-27 Thread Christian Heinrich
Hi everyone, several issues with inline source blocks: 1) https://orgmode.org/manual/Exporting-code-blocks.html states: > The :exports header arguments control exporting code blocks only and > not inline code: but https://orgmode.org/manual/Using-Header-Arguments.html#Using-Header-Arguments

[O] Remove documentation for deleted function org-mark-entry-for-agenda-action

2019-05-07 Thread Christian Heinrich
Hi, FYI: the documentation still talks about org-mark-entry-for-agenda-action even though this function was removed in f95e5ff. Best regards Christian

Re: [O] org-drill extremely slow with Org 9.2.5

2019-09-15 Thread Christian Heinrich
Hi, are all your headlines folded? I found that running "M-x outline-show-all" before the first org- drill call resolves this issue for me with org 9.2 (but not with 9.3). See also my analysis https://bitbucket.org/eeeickythump/org-drill/issues/48/slow-startup Are you aware of the new

Possible bug in subtree matching with empty title + tags

2020-05-02 Thread Christian Heinrich
Hi, I'm often using empty header titles that only contain tags, such as > **:foo: In my case, this is sufficient (for instance for flashcards, where I never have to actually have to use the agenda etc.). However, since Nicolas's refactoring in be31a0c4595a6d68b03b5cfbcbcdbf2cd76d2b7f empty

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

2020-05-07 Thread Christian Heinrich
Hi, thanks for your (initial) patch! I traced another error down today and found your code by chance. I tested it on an org-drill file that I had (with over 3500 items and hence 3500 drawers) and this patch helps *a lot* already. (Performance broke in 4403d4685e19fb99ba9bfec2bd4ff6781c66981f

Re: Smart processing of http(s) links

2020-06-29 Thread Christian Heinrich
I'm not sure if this is of interest to you, but I like org-cliplink to insert links with their titles. Maybe you can look at their source to build your own if it doesn't work for you? On Sun, 2020-06-28 at 13:43 -0700, Ag Ibragimov wrote: > I want to make something like this: > > Whenever I I

Re: LaTeX letters in Org

2022-02-20 Thread Christian Heinrich
FYI, there's also an article on using the scrlttr2 class from KOMA-script (mostly for European/German usage I guess) for letters: https://orgmode.org/worg/exporters/koma-letter-export.html On Sat, 2022-01-29 at 12:39 -0500, William Denton wrote: > I wrote up how to use Org to write letters with

Re: Bug: ob-R.el breaks when :session is specified

2022-05-15 Thread Christian Heinrich
-15 at 16:08 +0800, Ihor Radchenko wrote: > Christian Heinrich writes: > > > I got back to an org file after upgrading to the latest release of org-mode > > and tried executing > > the > > contained R source blocks. Unfortunately, emacs got stuck in the execution

Bug: ob-R.el breaks when :session is specified

2022-05-15 Thread Christian Heinrich
Hi there, I got back to an org file after upgrading to the latest release of org-mode and tried executing the contained R source blocks. Unfortunately, emacs got stuck in the execution and was blocked; I had to exit using C-g. Here's a minimal example src block that causes emacs to get stuck:

Re: Bug: ob-R.el breaks when :session is specified

2022-05-15 Thread Christian Heinrich
> Ihor, many thanks for checking. > > Best regards, > Jeremie > > On Sunday, 15 May 2022 at 16:08, Ihor Radchenko wrote: > > Christian Heinrich writes: > > > > > I got back to an org file after upgrading to the latest release of > > > or

Re: Bug: ob-R.el breaks when :session is specified

2022-05-15 Thread Christian Heinrich
how to build a real minimum init - thank you! This is hence resolved. Best regards Christian On Mon, 2022-05-16 at 00:21 +0200, Jeremie Juste wrote: > > Hello Christian > > On Sunday, 15 May 2022 at 20:06, Christian Heinrich wrote: > > I just tested with > > >

Re: Bug: ob-R.el breaks when :session is specified

2022-05-15 Thread Christian Heinrich
how to build a real minimum init - thank you! This is hence resolved. Best regards Christian On Mon, 2022-05-16 at 00:21 +0200, Jeremie Juste wrote: > > Hello Christian > > On Sunday, 15 May 2022 at 20:06, Christian Heinrich wrote: > > I just tested with > > >

Re: Bug: ob-R.el breaks when :session is specified

2022-05-15 Thread Christian Heinrich
, Charles wrote: > > Um... > > > On May 15, 2022, at 2:46 AM, Christian Heinrich > > wrote: > > > > I run > > > > emacs -q --load /tmp/init.el --file=/tmp/test.org > > > > with my /tmp/init.el being only > > > > > (re

Re: Tips on using Org-mode to manage a reading list

2022-05-29 Thread Christian Heinrich
Hi, personally, I find tracking information through TODO keywords rather unappealing. There are two reasons: the first one is that you may loose information. For instance, if you use "TO-READ", "To- BUY", "READ" to track your books, does that mean that every item that is marked "READ" is

Re: [BUG] Inline src blocks do not work for LaTeX [9.5.4 (release_9.5.4-3-g6dc785 @ /Users/salutis/src/emacs/nextstep/Emacs.app/Contents/Resources/lisp/org/)]

2022-07-03 Thread Christian Heinrich
Hi Rudolf, as to your question when to use an inline src block: I use it particularly in documents that present results from data sets. For instance, when you calculate something (e.g., an average value), you can store it in a variable =foo= (e.g., in R, python etc., just make sure you use the

org-capture and fast selection of tags

2022-06-26 Thread Christian Heinrich
Hi everyone, I am trying to set up an org-capture template that presents me with the fast selection window for tags instead of just the prompt one gets when using org-capture's %^g / %^G placeholders. I often have project related tags that I need to apply to many but not all tasks, so this

Re: org-capture and fast selection of tags

2022-07-16 Thread Christian Heinrich
Radchenko wrote: > Christian Heinrich writes: > > > I looked at the code and came up with a patch that works for me (see > > below). However, this may > > change behavior for others: > > Thanks! > > > 1. The original %^g will work on non-headlines, but

Re: org-capture and fast selection of tags

2022-07-14 Thread Christian Heinrich
t;) #'insert (lambda (s) (org-insert-link 0 s) On Mon, 2022-07-11 at 10:02 +0800, Ihor Radchenko wrote: > Christian Heinrich writes: > > > Today, I went through your init.org on github (it's ... huge) and couldn't > > find anything there

Re: org-capture and fast selection of tags

2022-09-28 Thread Christian Heinrich
Hi Ihor, unfortunately, I didn't have any time to incorporate your comments but this is still on my todo list. I hope I will have more time soon, but it will most likely take me a few weeks. Thanks for checking in with me, I really appreciate your support! Best regards Christian On Tue,

Documentation missing for several org-habit variables?

2023-01-06 Thread Christian Heinrich
Hi everyone, I noticed that https://orgmode.org/manual/Tracking-your-habits.html explains only a few variables that exist in org-agenda.el and that are declared via defvar. However, in org-habit.el, more variables exist but are declared via defcustom. I cannot find any documentation (online)