From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Org-agenda-leaders Date: Thu, 22 Oct 2015 23:12:18 -0400 Message-ID: <87oafqjn1p.fsf@pierrot.dokosmarshall.org> References: <87611zop4y.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52307) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpSmQ-0004dM-S2 for emacs-orgmode@gnu.org; Thu, 22 Oct 2015 23:12:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpSmN-0000Lp-Kr for emacs-orgmode@gnu.org; Thu, 22 Oct 2015 23:12:34 -0400 Received: from plane.gmane.org ([80.91.229.3]:57586) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpSmN-0000Ll-FX for emacs-orgmode@gnu.org; Thu, 22 Oct 2015 23:12:31 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZpSmJ-0000Pu-Ot for emacs-orgmode@gnu.org; Fri, 23 Oct 2015 05:12:27 +0200 Received: from pool-108-20-41-232.bstnma.fios.verizon.net ([108.20.41.232]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 23 Oct 2015 05:12:27 +0200 Received: from ndokos by pool-108-20-41-232.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 23 Oct 2015 05:12:27 +0200 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Uwe Jochum writes: > Hi Matt and all, > > here is (probably) the solution to this problem: > > As I said, I have this in my .emacs: > > '(org-agenda-deadline-leaders (quote ("FRIST: " "In %3d d.: "))) > > '(org-agenda-scheduled-leaders (quote ("TERMIN: " "TERMIN.%2dx: "))) > > Up to orgmode 8.2.something this worked globally in orgmode, i.e. I > could use an entry like this in my org-files: > > * TODO Do Something > TERMIN: <2015-10-10 Sa> > > This was parsed and produced an output in the agenda list like so: > > Samstag 10 October 2015 > TERMIN.1x: Do Something > > But now in orgmode 8.3.2 the leaders are no longer globally working, > but only for producing the agenda list. Therefore it is necessary to > use the English words SCHEDULED and DEADLINE in the org-files, like > so: > > * TODO Do Something > SCHEDULED: <2015-10-10 Sa> > > And this gives (the .emacs file beeing unchanged) > > Samstag 10 Oktober 2015 > TERMIN.1x: Do Something > > So obviously the parser was changed or in the earlier orgmode-versions > I used a feature that was not intended (I mean the agenda-leader-text > as a text for the org-file-entries). > > I hope this clears the point a little bit. > > I switched to the English words SCHEDULED and DEADLINE in the > org-files. So, as for me, that's o.k. > > Thanks a lot, > ,---- | (defconst org-clock-string "CLOCK:" | "String used as prefix for timestamps clocking work hours on an item.") | | (defvar org-closed-string "CLOSED:" | "String used as the prefix for timestamps logging closing a TODO entry.") | | (defvar org-deadline-string "DEADLINE:" | "String to mark deadline entries. | A deadline is this string, followed by a time stamp. Should be a word, | terminated by a colon. You can insert a schedule keyword and | a timestamp with \\[org-deadline].") | | (defvar org-scheduled-string "SCHEDULED:" | "String to mark scheduled TODO entries. | A schedule is this string, followed by a time stamp. Should be a word, | terminated by a colon. You can insert a schedule keyword and | a timestamp with \\[org-schedule].") `---- Try redefining some or all of these strings. -- Nick