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

2020-07-26 Thread numbch...@gmail.com
I try to add an idle timer to auto refresh org agenda views. Here is what I code: #+begin_src emacs-lisp ;;; auto refresh `*Org Agenda*' buffer (defun my/org-agenda-auto-refresh () "Rebuild all agenda views buffers." (org-agenda-redo-all t)) (run-with-idle-timer (* 60 20) t #'my/org-agenda-a

Re: [PATCH] Update ob-haskell from deprecated inf-haskell-mode to haskell-interactive-mode

2020-07-26 Thread Kyle Meyer
Seth Lee writes: > Issue: compiling code in a source block that had an infinite list that > would evaluate in the ghci. All code, even with `:compile` flag set > would be run in ghci. > > Updating deprecated `inf-haskell-mode` to `haskell-interactive-mode` > solves the issue for me. > > Source bl

Re: Bug: Attachment directory omitted from html export if line 1 is not section heading [9.3.7 (9.3.7-14-gb2b587-elpaplus @ /home/tarjei/.emacs.d/elpa/org-plus-contrib-20200720/)]

2020-07-26 Thread Kyle Meyer
tarjei writes: > Adding a title to the page, results in non-expanded attachment links > when exported. > > -- with_title.org --- > #+TITLE: With title > > * Section :ATTACH: > :PROPERTIES: > :ID: 17b1efb9-e20c-4637-98c1-12e796e18d62 > :END: > > Attachment link to attachment [[att

Re: [PATCH] org-capture: Update plist before finalizing (Leo Vivier)

2020-07-26 Thread No Wayman
I needed a similar workaround in doct: https://github.com/progfolio/doct/blob/80d291e5f1cbdabd4eb7f88c917653c59d3f14be/doct.el#L589-L592 I restore `org-capture-plist' to the value of `org-capture-current-plist' after the `org-capture-before-finalize-hook' is run. As of: https://code.orgmo