From 20597a12e35aebaa767f3b81c59bd19991194da0 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 27 Mar 2022 11:49:44 +0200 Subject: [PATCH] Add org-ql as extended query languag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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! --- init.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/init.el b/init.el index 701469b..e16ba4d 100644 --- a/init.el +++ b/init.el @@ -944,6 +944,14 @@ org-download-clipboard) :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 :init (setq org-link-keep-stored-after-insertion nil) :commands (org-store-link))