strange behavior of filename completion with tab key.

2011-10-27 Fir de Conversatie mattn
Hi bram. Try following. $ ls -1F foo bar/ $ vim --noplugin -i NONE :cnoremap C-p Up :e Tab :e foo/ :e foo/S-Tab :e :e C-p :e ../^I This cause that different behavior between up and down in filename completion in command line. Please check and include. diff -r fb6b43d55773 src/ex_getln.c ---

Re: Patch 7.3.352

2011-10-27 Fir de Conversatie Bram Moolenaar
Yasuhiro Matsumoto wrote: Bram, thanks for working about this patch. But, displaying dict function like '1()' is a bug. it must be fixed. Yes, but your patch didn't do that. Or was there another patch for this? -- hundred-and-one symptoms of being an internet addict: 100. The most exciting

Re: Patch 7.3.352

2011-10-27 Fir de Conversatie mattn
Ah, sorry. See first change in the patch that is in following link. https://groups.google.com/d/msg/vim_dev/RJvzyRk1lP0/q9tQUJx1jI0J diff -r 379a6398d462 src/eval.c --- a/src/eval.c Wed Oct 26 23:48:21 2011 +0200 +++ b/src/eval.c Thu Oct 27 20:30:32 2011 +0900 @@ -21737,6 +21737,9 @@ ++hi;

Vim crashes when loading autoload function is interrupted with CTRL-C.

2011-10-27 Fir de Conversatie Yukihiro Nakadaira
Vim crashes when loading autoload function is interrupted with CTRL-C. Steps to reproduce: $ cat test.vim allocate globvarht.hi_array. for i in range(1000) let g:[x_ . i] = i endfor echo Press CTRL-C after waiting several seconds call xxx#yyy#zzz() $ cat

Re: Vim crashes when loading autoload function is interrupted with CTRL-C.

2011-10-27 Fir de Conversatie mattn
I could reproduce it. My PC's memory space had depletion. g -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php

Re: Patch 7.3.352

2011-10-27 Fir de Conversatie Bram Moolenaar
Yasuhiro Matsumoto wrote: Ah, sorry. See first change in the patch that is in following link. https://groups.google.com/d/msg/vim_dev/RJvzyRk1lP0/q9tQUJx1jI0J diff -r 379a6398d462 src/eval.c --- a/src/eval.c Wed Oct 26 23:48:21 2011 +0200 +++ b/src/eval.c Thu Oct 27 20:30:32 2011

$HOME default on Windows is not well-documented

2011-10-27 Fir de Conversatie Ben Fritz
I suggest adding text like this, to :help $HOME: On Windows, if $HOME is not defined as an environment variable, then at runtime Vim will set it to the expansion of $HOMEDRIVE$HOMEPATH. Further, I would add links like: See |$HOME| for when this is not set as an environment variable on your

VIM freezes with :filetype indent on

2011-10-27 Fir de Conversatie lolilolicon
This bug is tracked down to the line filetype indent on in my ~/.vimrc; I opened the C file with `vim --noplugin foo.c' and reduced my ~/.vimrc to contain only the above line. `:set filetype' outputs `filetype=c'. `:filetype' outputs `filetype detection:ON plugin:OFF indent:ON'. To

Re: cpo-=l

2011-10-27 Fir de Conversatie Thilo Six
Bram Moolenaar wrote the following on 26.10.2011 13:19 Hello Bram, -- snip -- Sourcing those files seems inefficient. Using a function under autoload seems more appropriate. Passing a dictionary to store the values in. That also fixes nested scripts, I don't think that would work with the

Re: $HOME default on Windows is not well-documented

2011-10-27 Fir de Conversatie Tony Mechelynck
On 27/10/11 17:19, Ben Fritz wrote: [...] :help vimrc :help gvimrc (note on these two, it claims when $HOME is unset, $VIM is used, which I don't think is true since $VIM sets $HOME) [...] The way I read it, if $HOME/_vimrc and $HOME/.vimrc are *not found*, Vim looks for $VIM/_vimrc and if

Problem with interpretation of !!

2011-10-27 Fir de Conversatie Axel
The following command :!start !! is evaluated as :!start start start start start start ..., which doesn't seem to be right to me (Windows Server 2003 32bit, GVim 7.3 353). Can anybody confirm this? Axel -- You received this message from the vim_dev maillist. Do not top-post! Type your reply

Re: Problem with interpretation of !!

2011-10-27 Fir de Conversatie Ben Fritz
On Oct 27, 2:45 pm, Axel axel.ben...@cip-kommunal.de wrote: The following command :!start !! is evaluated as :!start start start start start start ..., which doesn't seem to be right to me (Windows Server 2003 32bit, GVim 7.3 353). Can anybody confirm this? I get: E34: No previous command

vimgrep returns lines not matched by regular search

2011-10-27 Fir de Conversatie Anand Hariharan
I wanted to find all the lines in our source code base that has a wide character string literal that is not an input to the CComBSTR constructor. So I did a :vimgrep /\(CComBSTR(\)\@!L[^]\+/ C:\MyFolder\**\*.cpp One of the search results it returned was so: hr =

Re: Vim crashes when loading autoload function is interrupted with CTRL-C.

2011-10-27 Fir de Conversatie Bram Moolenaar
Yukihiro Nakadaira wrote: Vim crashes when loading autoload function is interrupted with CTRL-C. Steps to reproduce: $ cat test.vim allocate globvarht.hi_array. for i in range(1000) let g:[x_ . i] = i endfor echo Press CTRL-C after waiting several seconds call

Re: Update for the ssh_config syntax file

2011-10-27 Fir de Conversatie Leonard Ehrenfried
Bram, As David has said that he is no longer able to keep up the maintainership of the ssh config files, please see the attached files edited by Thilo Six and myself. Leonard 2011/10/26 Bram Moolenaar b...@moolenaar.net Leonard - On Sun, Oct 23, 2011 at 09:10:04PM +0200, Bram Moolenaar

Re: vimgrep returns lines not matched by regular search

2011-10-27 Fir de Conversatie Kana Natsuno
On Fri, Oct 28, 2011 at 6:07 AM, Anand Hariharan mailto.anand.hariha...@gmail.com wrote: Am using 7.3 with patches 1-46 32 bit Windows Big GUI version with OLE support downloaded from vim.org.  I also have smartcase and ignorecase both set. From :help :vimgrep -- 'ignorecase' applies. To

Re: Update for the ssh_config syntax file

2011-10-27 Fir de Conversatie Thilo Six
Leonard Ehrenfried wrote the following on 27.10.2011 23:49 Hello Leonard, Bram, As David has said that he is no longer able to keep up the maintainership of the ssh config files, please see the attached files edited by Thilo Six and myself. Leonard -- snip -- Thank you for taking over

Re: Problem with interpretation of !!

2011-10-27 Fir de Conversatie Jürgen Krämer
Hi, Ben Fritz : On Oct 27, 2:45 pm, Axel axel.ben...@cip-kommunal.de wrote: The following command :!start !! is evaluated as :!start start start start start start ..., which doesn't seem to be right to me (Windows Server 2003 32bit, GVim 7.3 353). Can anybody confirm this? I get:

Re: Problem with interpretation of !!

2011-10-27 Fir de Conversatie mattn
What $shell do you use? Probably, unix like shell? -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php