truncating subject line in index

2013-02-10 Thread dexter
how can i truncate the subject line to 60 columns. i tried %60s in index_format but it is not working. can someone help.

Re: truncating subject line in index

2013-02-10 Thread James Griffin
- dexter dexter.i...@gmail.com [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

Re: truncating subject line in index

2013-02-10 Thread dexter
* James Griffin jmz.grif...@kode5.net [2013-02-10 13:29:55 +]: i want the subject line in the index to be truncated. -dexter - dexter dexter.i...@gmail.com [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

Re: truncating subject line in index

2013-02-10 Thread James Griffin
- dexter dexter.i...@gmail.com [2013-02-10 19:54:33 +0530] - : * James Griffin jmz.grif...@kode5.net [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

Re: truncating subject line in index

2013-02-10 Thread mutt
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