Tassilo Horn <tass...@member.fsf.org> writes: > Hi all, > > is there a way to push more than the current week using M-x > org-mobile-push RET?
This should do it (Monday is a bad day to test it...) #+begin_src emacs-lisp (defun rv-org-mobile-push () (interactive) (let (org-agenda-start-on-weekday (string-to-number (format-time-string "%w"))) (org-mobile-push))) #+end_src [...] -- Rémi Vanicat