* org-ql-find added initial-input parameter
This commit is contained in:
parent
98c62ab0a6
commit
b947fd620c
2 changed files with 10 additions and 5 deletions
|
|
@ -134,7 +134,7 @@ value, or nil."
|
|||
|
||||
;;;###autoload
|
||||
(cl-defun org-ql-completing-read
|
||||
(buffers-files &key query-prefix query-filter narrowp
|
||||
(buffers-files &key query-prefix query-filter narrowp initial-input
|
||||
(action #'org-ql-completing-read-action)
|
||||
;; FIXME: Unused argument.
|
||||
;; (annotate #'org-ql-completing-read-snippet)
|
||||
|
|
@ -156,7 +156,9 @@ QUERY-FILTER may be a function through which the query the user
|
|||
types is filtered before execution (e.g. it could replace spaces
|
||||
with commas to turn multiple tokens, which would normally be
|
||||
treated as multiple predicates, into multiple arguments to a
|
||||
single predicate)."
|
||||
single predicate).
|
||||
|
||||
INITIAL-INPUT may be a string to initially be filled in the query."
|
||||
(declare (indent defun))
|
||||
;; Emacs's completion API is not always easy to understand, especially when using "programmed
|
||||
;; completion." This code was made possible by the example Clemens Radermacher shared at
|
||||
|
|
@ -351,7 +353,7 @@ single predicate)."
|
|||
(abort-recursive-edit))))
|
||||
((symbol-function 'embark-export)
|
||||
(symbol-function 'org-ql-completing-read-export)))
|
||||
(completing-read prompt #'collection nil t)))))
|
||||
(completing-read prompt #'collection nil t initial-input)))))
|
||||
;; (debug-message "SELECTED:%S KEYS:%S" selected (hash-table-keys table))
|
||||
(or (gethash selected table)
|
||||
;; If there are completions in the table, but none of them exactly match the user input
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue