Fix: (org-ql-search) Accept symbol as arg to :super-groups
This commit is contained in:
parent
be7ac9921d
commit
f2910261e2
2 changed files with 8 additions and 1 deletions
|
|
@ -166,7 +166,9 @@ necessary."
|
|||
(org-ql-view-super-groups super-groups)
|
||||
(org-ql-view-title title))
|
||||
(when super-groups
|
||||
(let ((org-super-agenda-groups super-groups))
|
||||
(let ((org-super-agenda-groups (cl-etypecase super-groups
|
||||
(symbol (symbol-value super-groups))
|
||||
(list super-groups))))
|
||||
(setf strings (org-super-agenda--group-items strings))))
|
||||
(org-ql-view--display :buffer buffer :header header
|
||||
:string (s-join "\n" strings))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue