From bfe12ddc248bed05b111b40c35e5d5f34cf1097c Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 3 Nov 2018 11:19:16 +0100 Subject: [PATCH] [Org] Move require for org-download to init.el --- init.el | 3 +++ site-lisp/db-org.el | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/init.el b/init.el index 7cdce78..32d019e 100644 --- a/init.el +++ b/init.el @@ -785,6 +785,9 @@ _h_ _l_ _o_k _y_ank (unless (memq #'db/export-diary (mapcar #'timer--function timer-idle-list)) (run-with-idle-timer 20 t #'db/export-diary)))) + ;; Drag-and-Drop images into org-mode buffer + (use-package org-download) + ;; Hack: The default implementation is too slow, because it is ;; parsing all properties of an entry by default. Let’s simplify ;; this to only parse what we are looking for. This makes tag diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index b28da93..53a3604 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -472,11 +472,6 @@ Current Task: %`org-clock-current-task; " (org-todo 'done) (org-save-all-org-buffers))))))) - -;;; Drag-and-Drop images into org-mode buffer - -(use-package org-download) - ;;; Babel