All Questions
5,889 questions
0 votes
0 answers
18 views
Sort agenda items such that tasks with no repeater are above tasks with repeater
In org-agenda, I would like to have tasks without repeater listed at the top followed by tasks with repeater. Within that, the sorting can continue to be default. org-agenda-sorting-strategy has org-...
2 votes
1 answer
23 views
Show repeater cookie in org agenda
Is it possible to show repeater cookie in org agenda? category:Sched.99x:++99d:TODO Some task How can I do that? org-agenda-prefix-format does not provide any direct repeater element. It talks about %...
0 votes
1 answer
32 views
Different begin/end line color for org source code block based on language
I know that we can customize org source block begin and end line colors using below config (custom-set-faces! ;; Customize the header line of the source block '(org-block-begin-line :background &...
1 vote
0 answers
37 views
Org export: Conflict of keywords COMMENT and INCLUDE
I have a file test.org that includes files a.org and b.org: test.org: #+include: a.org #+include: b.org a.org: * AAA * COMMENT BBB b.org: * CCC * DDD When I export test.org the only section that is ...
1 vote
1 answer
29 views
Different bibliographies for different sections using org-cite?
I would like to write a document containing a table of contents and multiple short texts with their own citations. I'm currently using org-cite and org-export to ODT in Emacs 30.1. A minimal example ...
0 votes
1 answer
37 views
How can I use a condition in the :eval keyword section of the code block?
Why can't I use a condition in the :eval keyword section of the code block? #+BEGIN_SRC emacs-lisp :eval (if (> 2 1) 'yes 'no) (message "This evaluated") #+END_SRC #+RESULTS: : This ...
0 votes
0 answers
18 views
Delete all comments from an org-mode file
I'm looking for a function that deletes all comments from an org-mode file: line comments block comments tree comments (a comment headline with its entire subtree) I know there is org-org-export-to-...
1 vote
1 answer
43 views
How to change variable in source block with org-sbe from tblfm?
I have this source block and table in an org-file. #+NAME: testlisp #+begin_src elisp :var testvariable="default string" (progn (message testvariable) ;use the variable in some way ...