Akira Komamura
Akira Komamura
> I'll need to add additional arguments to the block function so :sort can be specified, like in org-ql-search. Or maybe you can support the feature by adding a variable...
@alphapapa ```emacs-lisp (org-ql-block ('(and (todo "SOMEDAY") (tags "Emacs") (priority "A")) :sort '(date priority todo))) ``` This looks better than I expected. Actually, I now even prefer it over the other,...
It turns out that `org-get-category` returns the same value after the value is changed. `org-get-category` is defined as follows, and it returns the correct result when `force-refresh` is set to...
In conclusion, this is not a bug with `org-ql`. It would be possible to work around this issue in `org-super-agenda.el` (in the following code), but I think `org.el` should invalidate...
Thanks, I'll consider if I can contribute to Org.
I looked into this issue again. I am sorry, but you will have to work on it. `org-agenda.el` doesn't suffer from this issue, and grouping with `:auto-category` works in (non-ql)...
Thank you for your comment. > It looks like you've done a very thorough job here. Thanks to `counsel-rg` and `noccur`, it was easy for me to find corresponding argument...
> And if we add keyword argument support to org-ql-block as discussed, I think that will handle that as well. What do you think? That will be good. Please feel...
That syntax looks strange at first but an excellent idea at the same time. It's probably the best way to support the feature discussed in this thread, especially in that...
Or maybe ``` (org-ql-select files '(todo) :action '(no-descendants element)) ``` Because of what it actually does, it may be better to allow the preprocessor in the action.