Re: vim bof audio available anyone ?

2006-09-26 Thread Christian MICHON

Thanks in advance then :)

On 9/25/06, Bram Moolenaar [EMAIL PROTECTED] wrote:


Christian Michon wrote:

 I remember there was some audio recording of vim BOF/sane 2004.

 Has anyone attended yesterday's BOF session with an audio
 recording device ? It would be nice to hear it for those/us who
 could not attend.

I have recorded the BOF, but have not had time to hear it back.  If it's
good enough I will make it available.  Hopefully tomorrow.

--
INSPECTOR END OF FILM: Move along.  There's nothing to see!  Keep moving!
  [Suddenly he notices the cameras.]
INSPECTOR END OF FILM: (to Camera) All right, put that away sonny.
  [He walks over to it and puts his hand over the lens.]
Monty Python and the Holy Grail PYTHON (MONTY) PICTURES LTD

 /// Bram Moolenaar -- [EMAIL PROTECTED] -- http://www.Moolenaar.net   \\\
///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\download, build and distribute -- http://www.A-A-P.org///
 \\\help me help AIDS victims -- http://ICCF-Holland.org///




--
Christian


vim bof audio available anyone ?

2006-09-20 Thread Christian MICHON

Hi vimmers,

I remember there was some audio recording of vim BOF/sane 2004.

Has anyone attended yesterday's BOF session with an audio
recording device ? It would be nice to hear it for those/us who
could not attend.

Thanks in advance
--
Christian


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 proceed thru a shell script to checkout previous
 version and perform gvimdiff asynchronously to git.

in decent shells you can do:

(g)vimdiff \
 (cat $FILE | (git diff $REV -- $FILE | patch -Rs -o /dev/stdout)) \
 $FILE

$FILE beeing the file you need to vimdiff and $REV the orginal revision.


 - cat $FILE | (git diff $REV -- $FILE | patch -Rs -o /dev/stdout)

that stanza is just a way to obtain the state of $FILE at revision $REV.
I may have overlooked sth and maybe there is a trivial git command
that can do that, if that's true, then you just need to:

 vimdiff (git that-command $REV $FILE) $FILE

that should work in bash 3+ and zsh of any decent version (like in 4.x I
guess).
--
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org






--
Christian


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-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 ?

 Thanks in advance

gvimdiff takes two versions of the same file as arguments, so the
question boils down to how to get the successive versions of the
file?. I don't know git (and on SuSE 9.3 I have no program of that name
in my $PATH) but the command-line for gvimdiff is typically something like

   gvimdiff filename.ext.old filename.ext

The answer may be as simple as taking backup copies of your files.


Best regards,
Tony.




--
Christian