RE: Executing vimfunctions in background

2007-04-04 Thread dcuaron
> > > -Original Message- > From: A.J.Mechelynck [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 04, 2007 1:42 PM > To: Chuck Mason > Cc: Yakov Lerner; vim@vim.org > Subject: Re: Executing vimfunctions in background > > Chuck Mason wrote: > > Well, th

RE: Executing vimfunctions in background

2007-04-04 Thread Chuck Mason
#x27; repeatedly? Chuck -Original Message- From: A.J.Mechelynck [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 04, 2007 1:42 PM To: Chuck Mason Cc: Yakov Lerner; vim@vim.org Subject: Re: Executing vimfunctions in background Chuck Mason wrote: > Well, that sample 'myFun

Re: Executing vimfunctions in background

2007-04-04 Thread A.J.Mechelynck
Chuck Mason wrote: Well, that sample 'myFunc' was just that- a sample. Imagine now, that it doesn't depend on cursor location but on a daemon running on your system. Chuck There are also the CursorHold and CursorHoldI autocommands (q.v.), which are triggered _once_ when the keyboard has been

RE: Executing vimfunctions in background

2007-04-03 Thread Chuck Mason
Cc: vim@vim.org Subject: Re: Executing vimfunctions in background On 4/3/07, Chuck Mason <[EMAIL PROTECTED]> wrote: > > Yes and no- I think this would work in certain situations, but of course > what happens when I don't move the cursor? If you didn't move the cursor --

Re: Executing vimfunctions in background

2007-04-03 Thread Yakov Lerner
sday, April 03, 2007 11:05 AM To: Chuck Mason Cc: vim@vim.org Subject: Re: Executing vimfunctions in background On 4/3/07, Chuck Mason <[EMAIL PROTECTED]> wrote: > > > I'm interested in writing a plugin that could run in the background as I > do some work in a buffer. For in

RE: Executing vimfunctions in background

2007-04-03 Thread Chuck Mason
2007 11:05 AM To: Chuck Mason Cc: vim@vim.org Subject: Re: Executing vimfunctions in background On 4/3/07, Chuck Mason <[EMAIL PROTECTED]> wrote: > > > I'm interested in writing a plugin that could run in the background as I > do some work in a buffer. For instance I have a

Re: Executing vimfunctions in background

2007-04-03 Thread Yakov Lerner
On 4/3/07, Chuck Mason <[EMAIL PROTECTED]> wrote: I'm interested in writing a plugin that could run in the background as I do some work in a buffer. For instance I have a function that appends a line to :copen. I would like to run it in the background continuously. How could I do this and conti

Executing vimfunctions in background

2007-04-03 Thread Chuck Mason
I'm interested in writing a plugin that could run in the background as I do some work in a buffer. For instance I have a function that appends a line to :copen. I would like to run it in the background continuously. How could I do this and continue working in the foreground? func myFunc()