Bug: Org line commands and visual-line mode bindings [9.3.7 (9.3.7-15-gc9abb4-elpaplus @ /home/gustavo/.emacs.d/elpa/org-plus-contrib-20200727/)]

2020-07-27 Thread Gustavo Barros
may be): #+begin_src emacs-lisp (add-to-list 'load-path "~/.emacs.d/elpa/org-plus-contrib-20200727") #+end_src Then visit an Org file, and enable "M-x visual-line-mode", and check the bindings with "C-h k C-a", "C-h k C-e", and "C-h k C-k" to g

[Help needed] Re: [Discuss] separate (recenter window-line) out of org-agenda-redo

2020-07-27 Thread numbch...@gmail.com
The `recenter` is useful for keeping position. I checked docstring of `recenter`, have no clue how to implement a better solution. I also thinked about ways like `with-current-buffer` etc. But can get around the `recenter`. Does anybody have any idea? [stardiviner] GPG key ID:

Re: Waiting for refresh to finish...

2020-07-27 Thread tomas
On Mon, Jul 27, 2020 at 09:06:24PM +0200, Joseph Vidal-Rosset wrote: > Le lun. 07/27/20 juil. 2020 à 08:28:03 , to...@tuxteam.de a envoyé ce > message: > > Try to remove that milkbox entry. > > > > Cheers > > -- t > > > > I dit it immediately and it works now ! > > Many thanks Tomas ! You

Re: Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
Le lun. 07/27/20 juil. 2020 à 08:28:03 , to...@tuxteam.de a envoyé ce message: > Try to remove that milkbox entry. > > Cheers > -- t > I dit it immediately and it works now ! Many thanks Tomas ! You really just helped me very efficiently ! Best wishes, -- Joseph

Re: Waiting for refresh to finish...

2020-07-27 Thread tomas
On Mon, Jul 27, 2020 at 08:00:07PM +0200, Joseph Vidal-Rosset wrote: > Hi again, > > Many thanks for your reply. Here are the details requested. > > Le lun. 07/27/20 juil. 2020 à 07:27:42 , to...@tuxteam.de a envoyé ce > message: > > On Mon, Jul 27, 2020 at 07:13:42PM +0200, Joseph

Re: Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
Hi again, Many thanks for your reply. Here are the details requested. Le lun. 07/27/20 juil. 2020 à 07:27:42 , to...@tuxteam.de a envoyé ce message: > On Mon, Jul 27, 2020 at 07:13:42PM +0200, Joseph Vidal-Rosset wrote: >> Thanks for your help, Tomas, here is the beginning of my

Re: Waiting for refresh to finish...

2020-07-27 Thread tomas
On Mon, Jul 27, 2020 at 07:13:42PM +0200, Joseph Vidal-Rosset wrote: > Thanks for your help, Tomas, here is the beginning of my init.el > (suggestions to improve it are of course welcome): Caveat: as I said, I'm most probably not the right guy to answer that, but hey. [...] > ;;

Re: Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
Thanks for your help, Tomas, here is the beginning of my init.el (suggestions to improve it are of course welcome): (defvar last-file-name-handler-alist file-name-handler-alist) (setq gc-cons-threshold 602653184 gc-cons-percentage 0.6 file-name-handler-alist nil) ;;; General

Re: Waiting for refresh to finish...

2020-07-27 Thread tomas
On Mon, Jul 27, 2020 at 06:13:20PM +0200, Joseph Vidal-Rosset wrote: > Hello everybody, > > "Waiting for refresh to finish..." is the message that I get with U command > after package-list-packages, but the refresh is never finished and I cannot > upgrade the packages. Hm. Doesn't happen here.

Waiting for refresh to finish...

2020-07-27 Thread Joseph Vidal-Rosset
Hello everybody, "Waiting for refresh to finish..." is the message that I get with U command after package-list-packages, but the refresh is never finished and I cannot upgrade the packages. Help is welcome. Best wishes, Jo.

[PATCH] Fix recommendation in ORG-NEWS (was: Binding RET to org-return-and-maybe-indent)

2020-07-27 Thread Kévin Le Gouguec
Jarmo Hurri writes: > Kévin Le Gouguec writes: > >> Can you tell me whether electric-indent-local-mode works better for >> you? If it does, I'll followup with a patch to ORG-NEWS. > > Seems to be working fine. Thank you very much. Thanks for the confirmation. Here is a patch for ORG-NEWS,

diagnosing SRC blocks with different output on export

2020-07-27 Thread Alexandre Duret-Lutz
Hi, Is there a way to mark certain SRC blocks such that if evaluating them during export produces a result different from the one stored in the file, then the export process aborts with an error? I'm using org-mode to document an automaton library, and use org-babel block to run some examples

Re: Repeating task hourly

2020-07-27 Thread Kevin Liu
> Is there any way to do this or are the docs out of date? I made a few quick changes to org-habit and it works prima facie. Will continue testing for a bit. >From e690d7b43143410d5d5af524bb1ff0819feebc24 Mon Sep 17 00:00:00 2001 From: nivekuil Date: Mon, 27 Jul 2020 04:37:32 -0700 Subject:

Repeating task hourly

2020-07-27 Thread Kevin Liu
According to the manual at https://orgmode.org/manual/Repeated-tasks.html hourly repeating tasks are possible, but the code in org-habit.el seems to disagree, explicitly disallowing an interval <1d: (error "Habit %s scheduled repeat period is less than 1d" habit-entry)) Is there any way

Re: Binding RET to org-return-and-maybe-indent

2020-07-27 Thread Jarmo Hurri
Greetings Kévin. Kévin Le Gouguec writes: > If I replace (electric-indent-mode -1) with > (electric-indent-local-mode -1) in org-mode-hook, I get the behaviour > we have with "Org 9.3" and "Org master, electric-indent-mode on". > > Can you tell me whether electric-indent-local-mode works

Re: [Discuss] separate (recenter window-line) out of org-agenda-redo

2020-07-27 Thread Marco Wahl
"numbch...@gmail.com" writes: [...] > I dive into source code of ~org-agenda-redo~ function. > Found this error is caused by ~(recenter window-line)~. > > I'm thinking what about to separate this code out? So function > ~org-agenda-redo~ can be used to non-interactive usage? My gut feeling