Re: any git developper using gvimdiff ?

2006-08-21 Thread A.J.Mechelynck
Christian MICHON wrote: Hi vim-devers, I'm currently trying out "git" (linux scm) and I have not found yet how to perform a gvimdiff on a file locally modified with the latest commit. Is there a simple/easy way out for this issue ? Any "git" specialist amond vim-dev who could give me a hint ?

Re: any git developper using gvimdiff ?

2006-08-21 Thread Christian MICHON
which was the logical conclusion I also came too! Thanks for confirming :) I now proceed thru a shell script to checkout previous version and perform gvimdiff asynchronously to git. works like a charm :) On 8/21/06, A.J.Mechelynck <[EMAIL PROTECTED]> wrote: Christian MICHON wrote: > Hi vim-dev

Re: any git developper using gvimdiff ?

2006-08-21 Thread Pierre Habouzit
Le lun 21 août 2006 17:31, Christian MICHON a écrit : > which was the logical conclusion I also came too! > Thanks for confirming :) > > I now proceed thru a shell script to checkout previous > version and perform gvimdiff asynchronously to git. in decent shells you can do: (g)vimdiff \ <(cat $

Re: any git developper using gvimdiff ?

2006-08-25 Thread Christian MICHON
nice madcoding :) work in bash, but not tcsh. Thanks anyway: I learned something new from it On 8/21/06, Pierre Habouzit <[EMAIL PROTECTED]> wrote: Le lun 21 août 2006 17:31, Christian MICHON a écrit : > which was the logical conclusion I also came too! > Thanks for confirming :) > > I now proce

Re: any git developper using gvimdiff ?

2006-08-25 Thread Stefano Zacchiroli
On Mon, Aug 21, 2006 at 04:07:21PM +0200, Christian MICHON wrote: > I'm currently trying out "git" (linux scm) and I have not found yet > how to perform a gvimdiff on a file locally modified with the latest > commit. Maybe you can adapt this to your needs: http://vim.sourceforge.net/scripts/scr

Re: any git developper using gvimdiff ?

2006-08-25 Thread Pierre Habouzit
Le ven 25 août 2006 17:38, Christian MICHON a écrit : > nice madcoding :) > work in bash, but not tcsh. I said *decent* shell :P > Thanks anyway: I learned something new from it you're welcome. -- ·O· Pierre Habouzit ··O[EMAIL PROTECTED] OOO

Re: any git developper using gvimdiff ?

2006-08-25 Thread A.J.Mechelynck
Pierre Habouzit wrote: Le ven 25 août 2006 17:38, Christian MICHON a écrit : nice madcoding :) work in bash, but not tcsh. I said *decent* shell :P Thanks anyway: I learned something new from it you're welcome. Oh, so tcsh is an indecent shell then... :-Þ Best regards, Tony.

Re: any git developper using gvimdiff ?

2006-08-26 Thread Christian MICHON
On 8/25/06, Pierre Habouzit <[EMAIL PROTECTED]> wrote: I said *decent* shell :P oops. I indecently opened a fifo using mkfifo in tcsh, and it works fine too :) I might need/do a plugin for this soon: git is truly intoxicating! :) -- Christian