]> granicus.if.org Git - neomutt/commitdiff
Add root-message function to jump to root message in thread.
authorKevin McCarthy <kevin@8t8.us>
Wed, 19 Oct 2016 20:21:16 +0000 (13:21 -0700)
committerRichard Russon <rich@flatcap.org>
Fri, 28 Oct 2016 14:57:03 +0000 (15:57 +0100)
This seems like a useful feature that was brought up for discussion on
mutt-users.  Proposed solutions involved collapsing/uncollapsing
threads, but it's not hard to modify the mutt_parent_message()
function to return the root instead.

OPS
curs_main.c
functions.h
protos.h
thread.c

diff --git a/OPS b/OPS
index 2cce879e6e6ce0caeef834229083fd90fd937055..030929a6a10a66baa67234e1bc0850fcacd4fa68 100644 (file)
--- a/OPS
+++ b/OPS
@@ -140,6 +140,7 @@ OP_MAIN_PREV_NEW_THEN_UNREAD "jump to the previous new or unread message"
 OP_MAIN_PREV_UNREAD "jump to the previous unread message"
 OP_MAIN_READ_THREAD "mark the current thread as read"
 OP_MAIN_READ_SUBTHREAD "mark the current subthread as read"
+OP_MAIN_ROOT_MESSAGE "jump to root message in thread"
 OP_MAIN_SET_FLAG "set a status flag on a message"
 OP_MAIN_SYNC_FOLDER "save changes to mailbox"
 OP_MAIN_TAG_PATTERN "tag messages matching a pattern"
index d12f7079cd141b84f588a14c92e9282ec14743f0..fd9e932160c3c0451f1a599a5b8a19b938e12d3b 100644 (file)
@@ -497,7 +497,7 @@ static void resort_index (MUTTMENU *menu)
   }
 
   if ((Sort & SORT_MASK) == SORT_THREADS && menu->current < 0)
-    menu->current = mutt_parent_message (Context, current);
+    menu->current = mutt_parent_message (Context, current, 0);
 
   if (menu->current < 0)
     menu->current = ci_first_message ();
@@ -2414,12 +2414,14 @@ int mutt_index_menu (void)
          menu->redraw = REDRAW_MOTION;
        break;
 
+      case OP_MAIN_ROOT_MESSAGE:
       case OP_MAIN_PARENT_MESSAGE:
 
        CHECK_MSGCOUNT;
         CHECK_VISIBLE;
 
-       if ((menu->current = mutt_parent_message (Context, CURHDR)) < 0)
+       if ((menu->current = mutt_parent_message (Context, CURHDR,
+                                                  op == OP_MAIN_ROOT_MESSAGE)) < 0)
        {
          menu->current = menu->oldcurrent;
        }
index 835a191a786576159d9fe93d26cd90bcf743a8ef..020048a71022ef5a5b26deee5948cfca325e5ef1 100644 (file)
@@ -182,6 +182,7 @@ const struct binding_t OpMain[] = { /* map: index */
   { "next-unread",             OP_MAIN_NEXT_UNREAD,            NULL },
   { "previous-unread",         OP_MAIN_PREV_UNREAD,            NULL },
   { "parent-message",          OP_MAIN_PARENT_MESSAGE,         "P" },
+  { "root-message",            OP_MAIN_ROOT_MESSAGE,           NULL },
 
 
   { "extract-keys",            OP_EXTRACT_KEYS,                "\013" },
@@ -317,6 +318,7 @@ const struct binding_t OpPager[] = { /* map: pager */
   { "previous-line",   OP_PREV_LINE,                   NULL },
   { "bottom",          OP_PAGER_BOTTOM,                NULL },
   { "parent-message",  OP_MAIN_PARENT_MESSAGE,         "P" },
+  { "root-message",    OP_MAIN_ROOT_MESSAGE,           NULL },
 
 
 
index f00a9050563e2a773f9a981352ad37a5f05cdb67..abe54588ffc3b65ce9d8e9ec9e5713af92553821 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -321,7 +321,7 @@ int mutt_fetch_recips (ENVELOPE *out, ENVELOPE *in, int flags);
 int mutt_chscmp (const char *s, const char *chs);
 #define mutt_is_utf8(a) mutt_chscmp (a, "utf-8")
 #define mutt_is_us_ascii(a) mutt_chscmp (a, "us-ascii")
-int mutt_parent_message (CONTEXT *, HEADER *);
+int mutt_parent_message (CONTEXT *, HEADER *, int);
 int mutt_prepare_template(FILE*, CONTEXT *, HEADER *, HEADER *, short);
 int mutt_resend_message (FILE *, CONTEXT *, HEADER *);
 int mutt_compose_to_sender (HEADER *);
index 6d97be0c4764cdebbfdf6175dfb7c42f13554252..8f95faf5b37f1dbe594b9de96c3bcff2f704b3aa 100644 (file)
--- a/thread.c
+++ b/thread.c
@@ -1075,9 +1075,10 @@ int _mutt_aside_thread (HEADER *hdr, short dir, short subthreads)
   return (tmp->virtual);
 }
 
-int mutt_parent_message (CONTEXT *ctx, HEADER *hdr)
+int mutt_parent_message (CONTEXT *ctx, HEADER *hdr, int find_root)
 {
   THREAD *thread;
+  HEADER *parent = NULL;
 
   if ((Sort & SORT_MASK) != SORT_THREADS)
   {
@@ -1085,22 +1086,34 @@ int mutt_parent_message (CONTEXT *ctx, HEADER *hdr)
     return (hdr->virtual);
   }
 
+  /* Root may be the current message */
+  if (find_root)
+    parent = hdr;
+
   for (thread = hdr->thread->parent; thread; thread = thread->parent)
   {
     if ((hdr = thread->message) != NULL)
     {
-      if (VISIBLE (hdr, ctx))
-       return (hdr->virtual);
-      else
-      {
-       mutt_error _("Parent message is not visible in this limited view.");
-       return (-1);
-      }
+      parent = hdr;
+      if (!find_root)
+        break;
     }
   }
-  
-  mutt_error _("Parent message is not available.");
-  return (-1);
+
+  if (!parent)
+  {
+    mutt_error _("Parent message is not available.");
+    return (-1);
+  }
+  if (!VISIBLE (parent, ctx))
+  {
+    if (find_root)
+      mutt_error _("Root message is not visible in this limited view.");
+    else
+      mutt_error _("Parent message is not visible in this limited view.");
+    return (-1);
+  }
+  return (parent->virtual);
 }
 
 void mutt_set_virtual (CONTEXT *ctx)