From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Agenda initial state Date: Sun, 24 Nov 2019 14:36:34 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:47071) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iYs4I-0003p2-PA for emacs-orgmode@gnu.org; Sun, 24 Nov 2019 08:36:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iYs4H-0007na-QQ for emacs-orgmode@gnu.org; Sun, 24 Nov 2019 08:36:50 -0500 Received: from mail-lf1-x12d.google.com ([2a00:1450:4864:20::12d]:36313) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iYs4H-0007n9-4m for emacs-orgmode@gnu.org; Sun, 24 Nov 2019 08:36:49 -0500 Received: by mail-lf1-x12d.google.com with SMTP id f16so8905780lfm.3 for ; Sun, 24 Nov 2019 05:36:46 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Org Mode Hi all I would like to ask for some help with the setup of ~org-agenda-start-with-log-mode~ and ~org-agenda-start-with-clockreport-mode~. With the minimal setup below I can see the effect of ~org-agenda-clockreport-parameter-plist~ but when I open the agenda with ~x~ the log and clockreport are not enabled initially, only after typing ~l~ and ~R~. I tried several web searches and Worg to find an answer but failed. Org mode version is a recent master. #+begin_src emacs-lisp (setq org-agenda-custom-commands '(("x" "Log and report of clocking" ((agenda "" ((org-agenda-files '("~/d/clock.org")) (org-agenda-start-with-log-mode t) (org-agenda-start-with-clockreport-mode t) (org-agenda-clockreport-parameter-plist '(:hidefiles t :maxlevel 3 :narrow 25)))))))) #+end_src Michael