Build broken -- Undefined references -- MinGW, vim with perl

2007-08-24 Fir de Conversatie Suresh Govindachar
Hello, Attached below is the result of issuing the following command (command has been written in multiple lines to make it easy to read): C:\home\suresh\develop\vim\vim7\src c:\opt\mingw\bin\mingw32-make.exe -f Make_ming.mak FEATURES=HUGE DEBUG=no GUI=yes

Make clean does not remove if_perl.c

2007-08-24 Fir de Conversatie Suresh Govindachar
Hello, make -f Make_ming.mak clean does not remove if_perl.c Thanks, --Suresh --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php

Bug report: '%' jumps problem

2007-08-24 Fir de Conversatie Edward L. Fox
Reporter id: chenkw Community: newsmth Hi developers, Steps to reproduce: Vim 7.0 has a problem jumping between matching brackets in the following case: Foo() { // { } The % command jumps between the close bracket and the open one in the comment rather than at the right beginning of

Re: Build broken -- Undefined references -- MinGW, vim with perl

2007-08-24 Fir de Conversatie Suresh Govindachar
[Yongwei Wu drew attention to if_perl.c] Make clean was not removing an earlier, bad if_perl.c. In the output I reported, if_perl.c was size 0. I manually deleted if_perl.c, and now get other errors. Before telling what the errors were, here's more background info: It is a

Re: Bug report: '%' jumps problem

2007-08-24 Fir de Conversatie Bram Moolenaar
Edward L. Fox wrote: Hi developers, Steps to reproduce: Vim 7.0 has a problem jumping between matching brackets in the following case: Foo() { // { } The % command jumps between the close bracket and the open one in the comment rather than at the right beginning of function

Re: Make clean does not remove if_perl.c

2007-08-24 Fir de Conversatie Edward L. Fox
On 8/25/07, Bram Moolenaar [EMAIL PROTECTED] wrote: Suresh Govindachar wrote: make -f Make_ming.mak clean does not remove if_perl.c You are supposed to use: make -f Make_ming.mak -D PERL clean You also need to add the choices for GUI or not and debugging or not,

Re: win32 vim and file mode in CYGWIN

2007-08-24 Fir de Conversatie Tony Mechelynck
Fuzzy Logic wrote: Not possible. Win32 vim uses the standard Windows APIs for creating files. It has no knowledge of cygwin at all. It might be possible to change cygwin's configuration, but I doubt that. Fuzzy On 8/24/07, SungHyun Nam [EMAIL PROTECTED] wrote: Hello, If I edit a

Re: win32 vim and file mode in CYGWIN

2007-08-24 Fir de Conversatie Frodak Baksik
On 8/24/07, Tony Mechelynck [EMAIL PROTECTED] wrote: Fuzzy Logic wrote: Not possible. Win32 vim uses the standard Windows APIs for creating files. It has no knowledge of cygwin at all. It might be possible to change cygwin's configuration, but I doubt that. Fuzzy On 8/24/07,

RE: Build broken -- Undefined references -- MinGW, vim with perl

2007-08-24 Fir de Conversatie Suresh Govindachar
Tony suggested looking at other builds -- however, I have been getting sources and building by own vim for over a year. My hard-drive crashed; have a new hard-drive. I am doing the exact same thing I used to do -- expcept I now have the latest release of ActiveState perl and

Re: win32 vim and file mode in CYGWIN

2007-08-24 Fir de Conversatie Tony Mechelynck
Frodak Baksik wrote: [...] These types of issues have been discussed before on the Cygwin mailing list. Essentially the issue is with win32 vim only using the default file permissions (i.e. Inherit permissions from parent) when writing the updated file. For the behavior you desire win32

Re: win32 vim and file mode in CYGWIN

2007-08-24 Fir de Conversatie Frodak Baksik
On 8/24/07, Tony Mechelynck [EMAIL PROTECTED] wrote: Sorry if you see this twice: after more than 3 hours I'm not seeing it (nor any reply to it) on the group. Frodak Baksik wrote: [...] These types of issues have been discussed before on the Cygwin mailing list. Essentially the issue

Re: win32 vim and file mode in CYGWIN

2007-08-24 Fir de Conversatie Tony Mechelynck
Frodak Baksik wrote: On 8/24/07, Tony Mechelynck [EMAIL PROTECTED] wrote: Sorry if you see this twice: after more than 3 hours I'm not seeing it (nor any reply to it) on the group. Frodak Baksik wrote: [...] These types of issues have been discussed before on the Cygwin mailing list.

Complete with Funcref?

2007-08-24 Fir de Conversatie Andy Wokula
I'd like to have a Funcref provide completions, but this seems not to be supported yet: function! TestComplete(arglead, cmdline, curpos) return foo\nbar endfunction let TestFuncref = function(TestComplete) command! -nargs=1 -complete=custom,TestFuncref Testcmd :Testcmd Tab E117: Unknown

Re: Complete with Funcref?

2007-08-24 Fir de Conversatie Tony Mechelynck
Andy Wokula wrote: I'd like to have a Funcref provide completions, but this seems not to be supported yet: function! TestComplete(arglead, cmdline, curpos) return foo\nbar endfunction let TestFuncref = function(TestComplete) command! -nargs=1 -complete=custom,TestFuncref