diff options
author | jao <jao@gnu.org> | 2025-01-15 02:34:58 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2025-01-15 02:34:58 +0000 |
commit | 494edda8edb60a2e8d966636ff01a2ae6ce1242a (patch) | |
tree | ed94960154ec8b0bb31fd62086de6aa94d1dc97b /lib/doc/jao-org-notes.el | |
parent | bd2fcf424c227e6495d8ffc28a8490786f900570 (diff) | |
download | elibs-494edda8edb60a2e8d966636ff01a2ae6ce1242a.tar.gz elibs-494edda8edb60a2e8d966636ff01a2ae6ce1242a.tar.bz2 |
jao-org-notes: new consult async apimain
Diffstat (limited to 'lib/doc/jao-org-notes.el')
-rw-r--r-- | lib/doc/jao-org-notes.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/doc/jao-org-notes.el b/lib/doc/jao-org-notes.el index 43b8c09..d3f18b8 100644 --- a/lib/doc/jao-org-notes.el +++ b/lib/doc/jao-org-notes.el @@ -1,6 +1,6 @@ ;;; jao-org-notes.el --- A simple system for org note taking -*- lexical-binding: t; -*- -;; Copyright (C) 2020, 2021, 2022, 2024 jao +;; Copyright (C) 2020, 2021, 2022, 2024, 2025 jao ;; Author: jao <mail@jao.io> ;; Keywords: tools @@ -74,11 +74,12 @@ (defun jao-org-notes--consult-rg (prompt &optional cat no-req cmd initial) (let ((default-directory (expand-file-name (or cat "") jao-org-notes-dir))) (consult--read - (consult--async-command #'jao-org-notes--rg-title-or-tags - (consult--async-transform jao-org-notes--matches)) + (consult--async-pipeline + (consult--process-collection #'jao-org-notes--rg-title-or-tags) + (consult--async-transform #'jao-org-notes--matches)) :prompt prompt - :initial (consult--async-split-initial (or initial "")) - :add-history (concat (consult--async-split-initial (thing-at-point 'symbol))) + :initial (or initial "") + :add-history (thing-at-point 'symbol) :require-match (not no-req) :category 'jao-org-notes-lookup :group 'jao-org-notes--consult-group |