Maikol Solís
Maikol Solís
> It makes perfect sense. Your example is also a great example of a part of the problem: I don't know how to help you insert the new item in...
> My concern was that someone might forget to readjust the project if the item they just refiled didn't show up in the agenda, but on the other hand, since...
> I think the behavior of the auto-NEXT todo code may be undefined if the user does this: > > ``` > ** NEXT new task > ** DONE old...
I have the same behavior. My Mac seems like airplane every time I open ORUI server 
Thank you @blester125 and @ThomasFKJorna for the reply. Yes, I haven't considered that `org-roam-ui-follow` could serve as a locator in the graph while we jump across node in `org-roam`. I...
Thanks for you help. I forgot to say this example is based in this one https://github.com/alphapapa/org-ql/blob/master/examples.org#listing-bills-coming-due Could you please give me a little example about how to change the `:action`...
Oh I see. `element-with-markers` gives the whole structure of the todos ``` #+begin_src emacs-lisp (org-ql-select nil '(and (planning :from "2021-08-21" :to "2021-08-30") (todo)) :action 'element-with-markers :sort '(date priority)) #+end_src #+RESULTS:...
Thank you very much @alphapapa for your time. Now I understand a little more the logic with this function. I will create my own function to parse the output. I...
@alphapapa Hacking a little the example, and with the help of the amazing community in the doom's discord, I did this, ``` #+begin_src emacs-lisp ;;; Code: (let ((tbl (org-ql-select nil...
> * Instead of using the string `"\n|-\n"` to insert the line, you can use the symbol `hline`, which Org converts to a line. Ok perfect. I didn't know this...