dexter wrote:
> how can i truncate the subject line to 60 columns.
> i tried %60s in index_format but it is not working.
> can someone help.
assuming it follows printf syntax:
"%60s" makes it take at least 60 characers (right justified).
"%-60s" makes it take at least 60 characers (left just
- dexter [2013-02-10 19:54:33 +0530] - :
> * James Griffin [2013-02-10 13:29:55 +]:
> i want the subject line in the index to be truncated.
Please don't top post. The %s specifier is the correct one to use.
Have a look at man 3 printf for information about how to manipulate
these s
* James Griffin [2013-02-10 13:29:55 +]:
i want the subject line in the index to be truncated.
-dexter
> - dexter [2013-02-10 18:51:29 +0530] - :
>
> > how can i truncate the subject line to 60 columns.
> > i tried %60s in index_format but it is not working.
> > can someone help.
>
- dexter [2013-02-10 18:51:29 +0530] - :
> how can i truncate the subject line to 60 columns.
> i tried %60s in index_format but it is not working.
> can someone help.
>
You'd probably need to use that format specifier in pager_format, not
index_format.
--
Primary Key: 4096R/1D31DC38
how can i truncate the subject line to 60 columns.
i tried %60s in index_format but it is not working.
can someone help.