Re: [PATCH] Add mode for automatically unhiding emphasis markers in the current region

2020-07-05 Thread Gustavo Barros
Hi Nicolas, Hi All, On Sun, 05 Jul 2020 at 07:50, Nicolas Goaziou wrote: The problem is not your implementation, really. It's just that I don't think it should be the _built-in_ way to solve emphasis management. IOW, we shouldn't need to activate a minor mode to make that management

Re: [PATCH] manual: Fix minor typo

2020-07-05 Thread Kyle Meyer
Marco Wahl writes: > Up to now I thought only a 'format-patch' can be applied easily. Would > you please share a way to apply an inline patch? Or at least give a hint? Sure. For an inline patch, you feed the entire message, rather than the attachment, to 'git am'. It looks like Gnus is your

Re: [PATCH] manual: Fix minor typo

2020-07-05 Thread Arun Isaac
>> To make the handling of patches easier please use "format-patch". > > It looks like this was sent with git-send-email (which is fed > format-patch output either explicitly or underneath), and it applied > cleanly for me. > > My understanding is that, even though this project accepts patches as

Re: [PATCH] manual: Fix minor typo

2020-07-05 Thread Marco Wahl
Hi Kyle and Arun, >> To make the handling of patches easier please use "format-patch". > > It looks like this was sent with git-send-email (which is fed > format-patch output either explicitly or underneath), and it applied > cleanly for me. Okay, good. Thanks for sharing! Apologies for

Spreadsheet calc complex number display format

2020-07-05 Thread Rob Duncan
Is there a way to specify the display format used for complex number calculations in the table spreadsheet? In particular I'd like to be able control whether a value is displayed in rectangular or polar form. Thanks, Rob.

Re: [PATCH] org-entities: rename section with eth and thorn to "Icelandic"

2020-07-05 Thread Nicolas Goaziou
Hello, Albert Krewinkel writes: > Eth and thorn are letters in the Icelandic alphabet, and the language > is in active use. > > TINYCHANGE Applied. Thank you. Regards, -- Nicolas Goaziou

Re: [PATCH] org-id: Fix behavior when `org-id-extra-values' is a symbol

2020-07-05 Thread Nicolas Goaziou
Hello, Erik Hetzner writes: > * lisp/org-id.el (org-id-update-id-locations): When > `org-id-extra-values' is a symbol, it should be evaluated as a > variable. > > In 37a5020bb, `org-id-update-id-locations' was rewritten, and the > functionality to allow the variable `org-id-extra-values' to be

Re: [rfc] Call agenda finalize hook a little bit later

2020-07-05 Thread Marco Wahl
Hello all, > What do you think about calling the agenda finalize hook a little bit > later so that the cursor position can be changed? > > E.g. this would allow to hook in a function that attempts to move point > to the current clock. Since there was neither opposition nor discussion and since

Re: [PATCH] manual: Fix minor typo

2020-07-05 Thread Kyle Meyer
Hi Marco, Marco Wahl writes: > To make the handling of patches easier please use "format-patch". It looks like this was sent with git-send-email (which is fed format-patch output either explicitly or underneath), and it applied cleanly for me. My understanding is that, even though this project

Re: [PATCH] capture: respect KEYS with GOTO arg [9.3.7 (release_9.3.7-661-g4aa4dd @ /home/n/.emacs.d/straight/build/org/)]

2020-07-05 Thread No Wayman
Kyle Meyer writes: After applying, I added "lisp/" in front of the file name and capitalized "pass". Pushed (99b8f36ab). Thanks, Kyle. Noted for future patches.

Bug: org-babel python with :results value sends function definition with a statement after a for loop to the shell incorrectly [9.3.6 (9.3.6-elpa @ /home/username/.emacs.d/elpa/org-9.3.6/)]

2020-07-05 Thread Philip Blagoveschensky
Consider the following org-babel block: #+begin_src python :session bug_report def foobar(): for i in range(5): pass print "hello world" foobar() #+end_src When I run it, this is what I see in the *bug_report* buffer: def foobar(): ... for i in range(5): ...

[PATCH] manual: Fix minor typo

2020-07-05 Thread Arun Isaac
* doc/org-manual.org (Clocking Work Time): Replace "to that you can" with "so that you can". --- doc/org-manual.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/org-manual.org b/doc/org-manual.org index b14c28807..b61644626 100644 --- a/doc/org-manual.org +++

Re: [PATCH] Add mode for automatically unhiding emphasis markers in the current region

2020-07-05 Thread Nicolas Goaziou
Hello, Shankar Rao writes: > I agree with you that my solution is somewhat intrusive. Ideally, I would > have preferred that my solution could leverage advice functions or some Org > hook, so that I wouldn't have to modify org.el, but it doesn't seem like > there is a straightforward way to do

org-read-date-display-live has no effect when org-read-date-popup-calendar is nil

2020-07-05 Thread Edmund Christian Herenz
Hello, I discovered that when disabling the calendar popup during insertion of time-stamps (by setting org-read-date-popup-calendar to nil) then the current intepretation of the date-prompt is not shown live anymore. The absence or presence of the live preview is controlled via the variable

Suggestion: Offer Emacs manual, org-mode manual, org-guide in double-sided fashion for printing

2020-07-05 Thread Jan Teubel
Hello from East Germany! This email is not a bug report, but a polite suggestion to provide/offer Emacs manual, org-mode manual and org-guide in double-sided fashion for printing (PDF files). I would like to print out the whole Emacs manual, org-mode manual and org-guide on paper in double-sided

Re: [PATCH] manual: Fix minor typo

2020-07-05 Thread Marco Wahl
Hi Arun, Thanks for the patch. I applied it. > * doc/org-manual.org (Clocking Work Time): Replace "to that you can" > with "so that you can". To make the handling of patches easier please use "format-patch". More details from the Emacs CONTRIB: --8<---cut