On Sun, Oct 15, 2000 at 05:48:38AM +0100 or so it is rumoured hereabouts,
David T-G thought:
> Conor --
>
> ...and then Conor Daly said...
> % On Fri, Oct 13, 2000 at 09:00:05AM +0800 or thereabouts, Bevan Broun
> wrote:
> % > on Wed, Oct 11, 2000 at 12:39:46PM -0400, Peter Solodov
> <[EMAIL PRO
Conor --
...and then Conor Daly said...
% On Fri, Oct 13, 2000 at 09:00:05AM +0800 or thereabouts, Bevan Broun wrote:
% > on Wed, Oct 11, 2000 at 12:39:46PM -0400, Peter Solodov <[EMAIL PROTECTED]>
wrote:
% > >
% > > Is it useful for someone besides me? :-)
% >
% > Im using it. I modified the
On Fri, Oct 13, 2000 at 09:00:05AM +0800 or thereabouts, Bevan Broun wrote:
> on Wed, Oct 11, 2000 at 12:39:46PM -0400, Peter Solodov <[EMAIL PROTECTED]> wrote:
> >
> > Is it useful for someone besides me? :-)
>
> Im using it. I modified the first one to include the Subject but then
> the 2nd on
on Wed, Oct 11, 2000 at 12:39:46PM -0400, Peter Solodov <[EMAIL PROTECTED]> wrote:
>
> Is it useful for someone besides me? :-)
Im using it. I modified the first one to include the Subject but then
the 2nd one arrived and I started to modify again but decided to wait
for the finished version. Th
Again, there were some "bugs" in the function. Here's the final version.
No more "set edit_headers" assumption, no quotation problems.
function M_settitle()
let i = 1
let line = getline(i)
while (match(line, "To:") == -1 && line != "")
let i = i + 1
On Tue, Oct 10, 2000 at 09:04:54PM -0400 or thereabouts, Peter Solodov wrote:
> Hi.
>
> I've been using mutt and vim for about a year now and was missing something.
> Namely I wanted to have xterm title to indicate a recipient of a message.
> Finally I came up with a following function:
>
> func
Hi.
I've change a function a little. Now it takes only name of recipient (if it's
there) and its address otherwise. If there are multiple recipients in To:
field, it takes only first one (the title string can be too long).
function M_settitle()
let i = 1
let line = getline(i)
while (
Hi.
I've been using mutt and vim for about a year now and was missing something.
Namely I wanted to have xterm title to indicate a recipient of a message.
Finally I came up with a following function:
function M_settitle()
let line_num = 1
let line = getline(line_num)
whil