||* '-'    -  'collapsed' according to the S-nail manual. Ca\
 ||n't get this to appear -- thoughts?
 |
 |The thread code never made it and i don't do this before v15
 |(S-nail).  You can get this by editing cmd1.c:dispc() (_dispc() in
 |S-nail) and changing
 |
 |        if (mb.mb_threaded == 1 && mp->m_collapsed > 0)
 |                dispc = a[12];
 |        if (mb.mb_threaded == 1 && mp->m_collapsed < 0)
 |                dispc = a[11];
 |
 |to
 |
 |   if (mb.mb_threaded == 1) {
 |      if (mp->m_collapsed < 0)
 |         i = a[10];
 |      else if (mp->m_collapsed >= 0 && mp->m_child != NULL)/* TODO ==0 */
 |         i = a[11];
 |}
 |
 |The latter would be S-nail -- for Heirloom use a[11] and a[12],
 |respectively.  Note it overwrites the other attributes, which is
 |why i think Gunnar didn't enable it.  On the other hand

That is to say that most likely it would be better to offer
a special format in *headline*[1] that displays a thread's
collapsed state instead of _only_ being able to see "+" and
"-" attributes.  But since "-" cannot be truly represented in the
current thread code i think this remains a future TODO task. :)

  [1] http://sdaoden.users.sourceforge.net/code-nail.html#382

--steffen

------------------------------------------------------------------------------
_______________________________________________
nail-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/nail-devel

Reply via email to