Re: [Question] Getting cell value and use it in table formula

2024-10-01 Thread tomas
On Tue, Oct 01, 2024 at 10:01:18PM +0200, jman wrote: > writes: > > > I think it's in the manual (this is Org v9.7): > > > > | 3.5.3 Emacs Lisp forms as formulas > > | -- > > For some reason, I think I got confused by the table formula modifiers > (E, N, L) and

org-store-link relative to parent headings

2024-10-01 Thread a4ofubmq
I'd like to propose an alternative method to format links (org-store- link) that would include parents of a heading. For example in a document like this: * heading 1 ** subheading 1 * heading 2 ** subheading 1 there is ambiguity right now if you want to org-store-link to heading 2 > subheading 1.

Re: [Question] Getting cell value and use it in table formula

2024-10-01 Thread jman
writes: I think it's in the manual (this is Org v9.7): | 3.5.3 Emacs Lisp forms as formulas | -- For some reason, I think I got confused by the table formula modifiers (E, N, L) and various type casting. What I wanted to achieve was simply: --s-

Re: How to treat events (headlines) without a title?

2024-10-01 Thread Nick Dokos
mb...@mbork.pl writes: > Hi fellow Orgers, > > I have a bunch of entries in my agenda that don't have /titles/. I > enrolled in a school which has classes on Saturdays, usually every two > weeks, but this is not very rigid. So I need a separate headline per > Saturday: > > ** School on Super Imp

Re: [BUG] Unable to insert inline or anonymous footnotes unless indented [9.7.11 (9.7.11-6a5d0e @ /home/user/.emacs.d/elpa/org-9.7.11/)]

2024-10-01 Thread Suhail Singh
Suhail Singh writes: > Additionally, and seemingly related, fontlocking for unindented > anonymous and inlined footnotes is also broken. This can be observed > via emacs -q and opening a file with the following contents: Correction: opening a file that _contains the contents of the following ex

[BUG] Unable to insert inline or anonymous footnotes unless indented [9.7.11 (9.7.11-6a5d0e @ /home/user/.emacs.d/elpa/org-9.7.11/)]

2024-10-01 Thread Suhail Singh
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list.

[HELP] How to have a repeating task that begins at 06:50 and ++1h until 20:50, and then when DONE the last repeater for that day, it would ++1d at 06:50?

2024-10-01 Thread Starlit Sky
EXPECTED BEHAVIOR I want to have a repeating task that begins at 06:50 and ++1h until 20:50, and then when DONE the last repeater for that day (20:50), it would ++1d at 06:50 and ++1h until 20:50, and so on. I've tried many things, but nothing seems to work. REPRODUCE OBSERVED BEHAVIOR 1. `

Re: [BUG] org-comment-dwim does not work with temporary Transient Mark mode [9.7-pre (release_9.6.10-902-g41ff56 @ /home/jschmidt/work/org-mode/lisp/)]

2024-10-01 Thread Steven Lin
I found that current bugfix (commit 1014296344a75fa08e0a8814e4fbbd767e7eba4c) brought new bugs. Step to reproduce: 1. Set these variables. (setq org-src-content-indentation 4) (setq org-src-preserve-indentation nil) 2. Try to comment some lines in a source block. For example, line foo and b

Noweb references and padlines

2024-10-01 Thread Linus Arver
Hello, Org supports adding blank lines between concatenated source code blocks with the "padline" header argument [1]. However this does not work for Noweb references. For example, a blank line is inserted between "foo" and "bar" and again between "bar" and "baz" for tangling-padline.txt below:

[BUG] org-comment-dwim comments some chars in the unselected line below

2024-10-01 Thread Stephanus Comnenus
Hello, I found that commit 1014296344a75fa08e0a8814e4fbbd767e7eba4c brought some bugs. Step to reproduce (In vanilla Emacs, with latest org-mode): 1. Set these variables. (setq org-src-content-indentation 4) (setq org-src-preserve-indentation nil) 2. Try to comment some lines in a source block

[BUG] org-comment-dwim comments some chars in the unselected line below

2024-10-01 Thread Steven Lin
Hi. I found that commit 1014296344a75fa08e0a8814e4fbbd767e7eba4c brought some bugs. Step to reproduce (In vanilla Emacs, with latest org-mode): 1. Set these variables. (setq org-src-content-indentation 4) (setq org-src-preserve-indentation nil) 2. Try to comment some lines in a source block. F

Re: [Question] Getting cell value and use it in table formula

2024-10-01 Thread tomas
On Tue, Oct 01, 2024 at 04:35:47PM +0200, jman wrote: > > Hello there, > > Let's look at the following table: > > --s-s-- > | EUR |USD | Exchange rate | > |-++---| > | 10 | 8.97 | 0.897 | > | 15 | 13.455 | | > #+TBLFM:

[Question] Getting cell value and use it in table formula

2024-10-01 Thread jman
Hello there, Let's look at the following table: --s-s-- | EUR |USD | Exchange rate | |-++---| | 10 | 8.97 | 0.897 | | 15 | 13.455 | | #+TBLFM: $2='(* (string-to-number $1) (string-to-number (org-table-get 2 3)))