[–] 3 points 1 month ago (1 child)

That's actually what Idiot Flesh did in the 90s. They had one show where the band outnumbered the crowd, so they had the crowd gather in the middle of the venue and they played the show around them.

  • source
  • submitted 5 months ago* (last edited 5 months ago) by to c/orgmode@lemmy.ml
     

    I'm trying to create a group in org-super-agenda that displays recurring events that occur today. They are showing under "Other items" in org-super-agenda.

    Here's the event

    * Burger and Fry-day!
    :PROPERTIES:
    :LOCATION: Everywhere
    :ID:       69cca5d7-f9ef-45eb-9d41-76ee125156c7
    :END:
    <2020-09-11 Fri +1w>
    

    Here's my config

      (use-package org-super-agenda
        :straight t
        :after org-agenda
        :config
        (org-super-agenda-mode 1)
        (setq org-super-agenda-groups
               '((:name "All Day Events"
                        :and (:date today
                                    :not (:habit)
                                    :not (:time-grid)))
                 (:name "Today's Schedule"
                        :time-grid t)
                 (:name "Punchlist"
                        :and (:scheduled today
                                         :not (:habit)))
                 (:name "Habits"
                        :habit t)
                 (:name "Important"
                        :priority "1")
                 )))
    

    Would org-ql make this possible? I haven't been able to successfully select the recurring event occurring today using org-ql. I've seen several other people asking about doing this on Github, but no definitive answer.

    EDIT: Apparently, if I could group by the text property 'day' instead of 'ts-date', which is what :date matches, it would be easy. Because 'day' matches (org-today), but 'ts-date' is the date of origin or the first occurrence of the recurring event.

     

    I have Ctrl-h mapped to move to the pane left of current in Normal Mode. If I forget that I'm in insert mode and do this, it just locked up Neovim and starts consuming processor until I force quit. I can't find what this mapping is trying to do and how to undo it. It occasionally causes me to lose work. Please help. :-)

    EDIT: I just looked in my config to try to just add this binding to do the same thing in Insert Mode and discovered that that's what it's already supposed to do. I have CTRL-H mapped to , but all it does is lockup Neovim.

    view more: next ›