Explicitly require org-ql-search when loading org-ql
`org-ql-search.ql` contains the definitions for Org QL dynamic blocks but is not
automatically loaded by `org-ql.el`. Since I am using Org QL dynamic blocks
extensively, let's load this library explicitly when `org-ql.el` is activated.
Note that this implicitly reverts 939b1e882a,
which changed the use-package declaration from `org-ql-search` to `org-ql`
proper. So this commit was wrong after all (and the state before that commit
was right), but having a use-package declaration for `org-ql` instead of some of
its sublibraries seems to be clearer to me.
This commit is contained in:
parent
939b1e882a
commit
bef3a482f3
7
init.el
7
init.el
@ -982,7 +982,6 @@
|
|||||||
|
|
||||||
;; Extended query language and dynamic blocks
|
;; Extended query language and dynamic blocks
|
||||||
(use-package org-ql
|
(use-package org-ql
|
||||||
:ensure org-ql
|
|
||||||
:pin "melpa-stable"
|
:pin "melpa-stable"
|
||||||
;; XXX: Remove the following as soon as this is fixed in upstream, see
|
;; XXX: Remove the following as soon as this is fixed in upstream, see
|
||||||
;; https://github.com/alphapapa/org-ql/pull/237
|
;; https://github.com/alphapapa/org-ql/pull/237
|
||||||
@ -991,7 +990,11 @@
|
|||||||
(optional "-" (repeat 1 2 digit) ":" (repeat 2 digit))))
|
(optional "-" (repeat 1 2 digit) ":" (repeat 2 digit))))
|
||||||
:commands (org-ql-view
|
:commands (org-ql-view
|
||||||
org-ql-search
|
org-ql-search
|
||||||
org-dblock-write:org-ql))
|
org-dblock-write:org-ql)
|
||||||
|
;; `org-ql-search' defines the dblock features of `org-ql' but is not loaded
|
||||||
|
;; by default, so let's do this here; note that this implicitly loads
|
||||||
|
;; `org-ql-view' as well.
|
||||||
|
:config (require 'org-ql-search))
|
||||||
|
|
||||||
(use-package ol
|
(use-package ol
|
||||||
:init (setq org-link-keep-stored-after-insertion t)
|
:init (setq org-link-keep-stored-after-insertion t)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user