We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emacs 27.2 Installed via melpa running M-x org-time-budgets-table doesn't do anything adding following to my agenda:
(setq org-agenda-custom-commands '(("a" "Agenda" ((agenda "" ((org-agenda-sorting-strategy '(habit-down time-up priority-down category-keep user-defined-up)))) (org-time-budgets-in-agenda-maybe)))))
prints error org-agenda-run-series: Invalid type in command series Mark set
org-agenda-run-series: Invalid type in command series Mark set
Any ideas?
The text was updated successfully, but these errors were encountered:
After manually installing the package I got the table in my agenda;
` ;;; init.el
(add-to-list 'load-path "~/org/lisp/") (load "org-time-budgets")
;;;; org-time-budgets
(setq org-time-budgets '((:title "Todo" :match "+bills" :budget "30:00" :blocks (workday week)) (:title "Business" :match "+business" :budget "30:00" :blocks (workday week)) (:title "Sideprojects" :match "+personal+project" :budget "14:00" :blocks (day week)) (:title "Practice Music" :match "+music+practice" :budget "2:55" :blocks (nil week)) (:title "Exercise" :match "+exercise" :budget "5:15" :blocks (day)) (:title "Language" :match "+lang" :budget "5:15" :blocks (day week))))
;;;; time budgets table
(setq org-agenda-custom-commands '(("a" "Agenda" ((agenda "" ((org-agenda-sorting-strategy '(habit-down time-up priority-down category-keep user-defined-up)))) (org-time-budgets-in-agenda-maybe))))) ;;; ... `
But the table doesn't seem to be picking up any clocked time unfortunately
Sorry, something went wrong.
No branches or pull requests
Emacs 27.2
Installed via melpa
running M-x org-time-budgets-table doesn't do anything
adding following to my agenda:
(setq org-agenda-custom-commands '(("a" "Agenda" ((agenda "" ((org-agenda-sorting-strategy '(habit-down time-up priority-down category-keep user-defined-up)))) (org-time-budgets-in-agenda-maybe)))))
prints error
org-agenda-run-series: Invalid type in command series Mark set
Any ideas?
The text was updated successfully, but these errors were encountered: