Compare commits

..

No commits in common. "e50bae5c6b18ddad1b96d893fecf59570913c3c9" and "4e59c1467d991d1fb2c8aa3c61e261076f490aa3" have entirely different histories.

14
init.el
View File

@ -728,12 +728,14 @@ split horizontally again, but this extra work should not matter much."
db/org-bookmark-store-link
db/org-bookmark-export
db/org-lint-invalid-bookmark-link
db/org-lint-possible-bookmark-link))
db/org-lint-possible-bookmark-link
db/org-get-location))
;; This is to make the byte-compiler happy about setting some variables later on
;; that are defined in those packages.
(use-package org-attach)
(use-package org-id)
(use-package org-goto)
(use-package org
:pin "gnu"
@ -779,6 +781,7 @@ split horizontally again, but this extra work should not matter much."
org-attach-store-link-p 'attached
org-attach-auto-tag nil
org-bookmark-names-plist nil
org-goto-interface 'outline-path-completion
org-id-link-to-org-use-id t
org-return-follows-link t
org-hide-emphasis-markers t
@ -947,7 +950,14 @@ split horizontally again, but this extra work should not matter much."
(org-agenda-redo-all))
;; Inhibit direct input when point is at the beginning of a headline.
(add-to-list 'org-speed-command-hook 'db/org-ignore-insert-on-headline-start)))
(add-to-list 'org-speed-command-hook 'db/org-ignore-insert-on-headline-start)
;; Use consult for querying refile targets
(define-advice org-refile-get-location (:around
(orig-func &optional prompt default-buffer new-nodes)
use-consult-instead)
(ignore orig-func)
(db/org-refile-get-location prompt default-buffer new-nodes))))
(use-package org-cycle
:autoload (org-cycle-hide-drawers)