Questions tagged [org-mode]
Org-mode is an Emacs major mode for keeping notes, maintaining TODO lists, planning projects, and authoring documents with a fast and effective plain-text system. Because Org mode is a vast subject area, other tags must accompany the `org-mode` tag.
5,890 questions
0 votes
0 answers
16 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
44 views
How to open Org-mode ID links in an indirect narrowed buffer
By that, I mean as if I were already at the target location and had called org-tree-to-indirect-buffer. I see that org-link-use-indirect-buffer-for-internals almost does this. However, that setting ...
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
0 answers
11 views
customize org-appear to hide inline src block
I found this reddit post which has a config to hide the header context of a inline src block. So, using the config, inline source like src_python{return 123}, becomes {return 123}. I customized it so ...
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 &...
0 votes
0 answers
25 views
How to change the facecolor of org-mode emphasis markers?
For example, visually, some code actually has two ~, left and right, they are there occupying the space, but invisible to eyes. Taking one step further, can we customize the width of the two ...
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 ...
0 votes
1 answer
26 views
How to ignore the line break between two consecutive links
The two inline images are supposed to be on the same line, but I want the image path on separate lines because the path is too long. #+ATTR_ORG: :width 300 [[/this/is/a/very/long/file/path/to/an/...
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 ...
2 votes
1 answer
40 views
How to configure org-capture to not add canceled capture text to kill-ring?
I'd like my kill ring to remain unaffected when I kill an org-capture invocation. put a URL in my OS clipboard (and thus kill ring) org-capture and start to create a bookmarks entry cancel org-...
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 ...
1 vote
1 answer
39 views
When executing src-block with org-sbe (from another src-block) why does emacs asks confirmation of evaluation 3 times instead of 2?
* Test code #+name: test-src #+begin_src emacs-lisp (message "asdf") #+end_src #+RESULTS: test-src : asdf * Code that is executing above #+name: caller-src #+begin_src emacs-lisp (org-...
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-...
0 votes
1 answer
54 views
double entry on org mode
I have this entry on my .org file ** piano <2025-10-03 Fri 15:30> on my Agenda I find this entry every day, but I set it only on a specific day! Martedì 30 Settembre 2025 Mercoledì 1 ...
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 ...