emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Matt Lundin <mdl@imapmail.org>
To: Arkady Grudzinsky <agrudzinsky@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: tsia-up sorting strategy sorts agenda by date and ignores time. How can I change that?
Date: Tue, 21 Mar 2017 12:13:02 -0500	[thread overview]
Message-ID: <87shm6wo2p.fsf@fastmail.fm> (raw)
In-Reply-To: <s5o1straiwa.fsf@avnera.com> (Arkady Grudzinsky's message of "Mon, 20 Mar 2017 11:43:33 -0700")

Arkady Grudzinsky <agrudzinsky@gmail.com> writes:

> Hi,
>
> I'd like to sort my tasks in agenda by inactive creation
> timestamp which includes the time portion.  I have found that
> tsia-up strategy ignores the time portion of the timestamp.  Is
> there a way to take time into account?

Unfortunately, the org sorting relies on org-time-string-to-absolute,
which converts time strings to days only, so the default is just a day
to day comparison.

You could use something like this and then add user-defined-up or
user-defined-down where desired in org-agenda-sorting-strategy:

--8<---------------cut here---------------start------------->8---
(defun my-sort-by-inactive-timestamp-incl-time (a b)
  (let* ((ma (get-text-property 1 'org-marker a))
         (mb (get-text-property 1 'org-marker b))
         (tsa (with-current-buffer (marker-buffer ma)
                 (org-entry-get (marker-position ma) "TIMESTAMP_IA")))
         (tsb (with-current-buffer (marker-buffer mb)
                 (org-entry-get (marker-position mb) "TIMESTAMP_IA")))
         (seca (if tsa (org-time-string-to-seconds tsa) 0))
         (secb (if tsb (org-time-string-to-seconds tsb) 0)))
    (cond ((> seca secb) 1)
          ((> secb seca) -1)
          (t nil))))

(setq org-agenda-cmp-user-defined 'my-sort-by-inactive-timestamp-incl-time)
--8<---------------cut here---------------end--------------->8---

I imagine there are ways to do this more elegantly (e.g., by iterating
over a and b), but this gets the job done for me.

Best,
Matt

  reply	other threads:[~2017-03-21 17:13 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-20 18:43 tsia-up sorting strategy sorts agenda by date and ignores time. How can I change that? Arkady Grudzinsky
2017-03-21 17:13 ` Matt Lundin [this message]
2017-03-22 16:25   ` Arkady Grudzinsky
2017-03-22 17:13     ` Arkady Grudzinsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87shm6wo2p.fsf@fastmail.fm \
    --to=mdl@imapmail.org \
    --cc=agrudzinsky@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).