From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Grothe Subject: Show all timestamps in agenda custom command Date: Wed, 24 May 2017 19:32:57 +0200 Message-ID: <8737buw46u.fsf@mail.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45503) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dDa9o-00029c-KW for emacs-orgmode@gnu.org; Wed, 24 May 2017 13:33:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dDa9l-0000dC-CI for emacs-orgmode@gnu.org; Wed, 24 May 2017 13:33:12 -0400 Received: from shout01.mail.de ([213.128.151.216]:34669) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dDa9l-0000bL-2L for emacs-orgmode@gnu.org; Wed, 24 May 2017 13:33:09 -0400 Received: from postfix02.mail.de (postfix02.bt.mail.de [10.0.121.126]) by shout01.mail.de (Postfix) with ESMTP id 30FB440AA2 for ; Wed, 24 May 2017 19:33:04 +0200 (CEST) Received: from smtp03.mail.de (smtp03.bt.mail.de [10.0.121.213]) by postfix02.mail.de (Postfix) with ESMTP id 19AFEC0061 for ; Wed, 24 May 2017 19:33:04 +0200 (CEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp03.mail.de (Postfix) with ESMTPSA id D46EC40026 for ; Wed, 24 May 2017 19:33:03 +0200 (CEST) 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: Orgmode List Hello, I would like to generate a agenda custom command which shows me always *all* timestamps (with deadline and scheduled too) of todo items. See this examples: For this entry it works fine: ** TODO <2017-05-29 Mo> Test entry it looks like this: TODO <2017-05-29> Test entry =20 but not for scheduled entries like this with linebreak: ** TODO Test SCHEDULED: <2017-05-24 Mi> Org agenda only shows this: SCHULE Test =E2=86=92 where's the timestamp? I would like the see the timestamp like in the example above. This is my agenda custom command so far: ... ("s" "Schule" todo "SCHULE" ((org-agenda-overriding-header "Schule") (org-agenda-prefix-format "=E2=97=8B %t%s") (org-agenda-entry-types '(:scheduled)) )) ... what can I do to solve this problem? Regards Thorsten Grothe