* Sven Guckes <[EMAIL PROTECTED]> [2002-09-05 20:47]:
> * darren chamberlain <[EMAIL PROTECTED]> [2002-09-05 15:37]:
> > Look at display_filter, section 6.3.36 in the manual
> > (<http://www.mutt.org/doc/manual/manual-6.html#display_filter>).
> > Set it to a script that does something like:
> >   cat | sed -e "s/^\t/> /g"
> 
> uh.  UUCA.

D'oh!

> if using "sed" then stuff all the changes into
> a file and let sed use for the filtering:

Yes, that's what I said (sed?): "Set it [display_filter] to a script..."

>   $ grep display_filter ~/.muttrc
>   set display_filter="/path/sed -f mutt.sed"
> 
>   $ cat mutt.sed
>   s/^\t/> /

Yep:

  $ grep display_filter ~/.mutt/muttrc 
  set display_filter="~/.mutt/bin/display-filter"

  $ cat ~/.mutt/bin/display-filter
  #!/usr/bin/sed -f

  s/[!]\{2,\}/!/g
  s/[?]\{2,\}/?/g
  s/^--$/--\ /g
  s/^\ --$/--\ /g
  s/^[_]\{30,\}$/--\ /g

I'll take the UUCA for my example, though.  :)

(darren)

-- 
Always keep a song in your heart -- it's like karaoke for the
voices in your head.
    -- Robert Fulton Abernethy

Reply via email to