Add org-ql as extended query languag

This includes, among others, a dynamic block to insert the result of a query –
which is exactly what I am looking for.  I have to learn a new query language,
though, but it seems as if non-sexp syntax is easy enough; and having a
lisp-like query syntax is undoubtedly a big improvement!
This commit is contained in:
Daniel - 2022-03-27 11:49:44 +02:00
parent 85a963e6ae
commit 20597a12e3
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 8 additions and 0 deletions

View File

@ -944,6 +944,14 @@
org-download-clipboard) org-download-clipboard)
:init (setq org-download-method 'attach)) :init (setq org-download-method 'attach))
;; Extended query language and dynamic blocks
(use-package org-ql
:ensure t
:commands (org-ql-view
org-ql-search
org-dblock-write:org-ql)
:config (require 'org-ql-search))
(use-package ol (use-package ol
:init (setq org-link-keep-stored-after-insertion nil) :init (setq org-link-keep-stored-after-insertion nil)
:commands (org-store-link)) :commands (org-store-link))