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

Re: Single-File Vim?

2006-09-26 Thread Christian MICHON
On 9/26/06, Gene Kwiecinski [EMAIL PROTECTED] wrote: Hope you don't mind if I pass along your critique above (name/email redacted, natch; I try to respect other peoples' privacy) to another private list, as U3 was a topic about a month or so ago. Someone liked the idea of being able to put

Re: Single-File Vim?

2006-09-25 Thread Christian MICHON
I created a 7-zip self-extractable executable for Windows. When it executes, it extract runtime files in %temp%, it gives you the full power of gvim, and when you close it, the 7z.tmp directory is removed. This is the most portable solution I found/created for Windows. I'll send you the

Re: Single-File Vim?

2006-09-25 Thread Christian MICHON
I created a new gvim7 sfx for windows. It's ready for mass testing. Feedback is welcome. (I've no other hosting capability for this file yet) http://www.sharebigfile.com/file/9444/gvim7.exe.html fill up the number section and submit to start the download. Happy vimming! On 9/25/06, Christian

Re: Single-File Vim?

2006-09-25 Thread Christian MICHON
never had one in my pocket. But what I heard is bad: it leaves plenty of stuff in the registry and you need house cleaning when removing u3. On top of this, it's proprietary and not opensource. At least, with 7-zip sfx, it's clean by construction: when you close gvim, unless the process was

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: Hiding lines

2006-09-19 Thread Christian MICHON
Interesting discussion. Wouldn't it be easier to: 1st: fold the lines you do not want to see 2nd: conceal all folded lines (using conceal patch) I know how to do the 1st point, how can I go around the 2nd, knowing conceal is mostly a syntax add-on ? Keep vimming! 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

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

Is it possible to get CVS version numbers in file-explorer ?

2006-08-16 Thread Christian MICHON
Hi vimmers, I would like to know if such script already exists: fire up a file-explorer, and if it is a check-out from a CVS repository, highlight version numbers and file change, if any. All in vim (native, if possible vim-6.x). Actually, today, I have no solution else than java to get to do

Re: how to fold lines not containing a pattern ?

2006-06-06 Thread Christian MICHON
excellent trick! (as usual) thanks a lot! On 6/5/06, Tim Chase [EMAIL PROTECTED] wrote: and how do I do if I want it to be case insensitive ? ie I want to detect Warning WARNING warning :help expr-=~? set foldmethod=expr foldexpr=getline(v:lnum)=~?'warning'?0:1 I also tried another