emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Arkady Grudzinsky <agrudzinsky@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: tsia-up sorting strategy sorts agenda by date and ignores time. How can I change that?
Date: Wed, 22 Mar 2017 09:25:27 -0700	[thread overview]
Message-ID: <s5oa88d1doo.fsf@avnera.com> (raw)
In-Reply-To: 87shm6wo2p.fsf@fastmail.fm

On Tue, Mar 21 2017, Matt Lundin wrote:

> You could use something like this and then add user-defined-up or
> user-defined-down where desired in org-agenda-sorting-strategy:
>
> (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)
>
> 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.

This works.  Awesome!  Thanks.  

-- 
Arkady

  reply	other threads:[~2017-03-22 16:26 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
2017-03-22 16:25   ` Arkady Grudzinsky [this message]
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=s5oa88d1doo.fsf@avnera.com \
    --to=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).