Change: (view--complete-sort) Separate with spaces, not comma
This commit is contained in:
parent
60d1bd1f97
commit
a459204e78
1 changed files with 15 additions and 10 deletions
|
|
@ -850,7 +850,12 @@ property."
|
||||||
|
|
||||||
(defun org-ql-view--complete-sort ()
|
(defun org-ql-view--complete-sort ()
|
||||||
"Return value for `org-ql-view-sort' using completion."
|
"Return value for `org-ql-view-sort' using completion."
|
||||||
(let ((input (->> (completing-read-multiple "Sort by: "
|
;; Use space to separate sorting predicates, not comma.
|
||||||
|
(let* ((crm-separator (rx space))
|
||||||
|
(crm-local-completion-map (let ((map (copy-keymap crm-local-completion-map)))
|
||||||
|
(define-key map (kbd "SPC") nil)
|
||||||
|
map))
|
||||||
|
(input (->> (completing-read-multiple "Sort by: "
|
||||||
(list "buffer-order"
|
(list "buffer-order"
|
||||||
"date"
|
"date"
|
||||||
"deadline"
|
"deadline"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue