Re: Float in some europe locale.

2012-02-23 Fir de Conversatie mattn
I updated patch above. Currently, It behave same as strtod(). -- 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

Help with runtimefiles (was: Re: Suggestion for sshconfig.vim)

2012-02-23 Fir de Conversatie Thilo Six
Tom Ryder wrote the following on 23.02.2012 11:18 I would be interested in helping out for known problems in other syntax files; I've been wanting to contribute to Vim for quite a while. That would be appreciated. There are quite a number runtimefiles which use linecontinuation but are known

Re: Float in some europe locale.

2012-02-23 Fir de Conversatie Bram Moolenaar
Yasuhiro Matsumoto wrote: I found bug in string2float(). In some europe locale, it uses comma to display floating point value. So str2float('1.2') return 1.0 . https://github.com/Shougo/neocomplcache/issues/142#issuecomment-4104445 Vim parse 'type(1.2)' to tokens like following.

Re: [patch] removed obsolete errors E290 E291 E292 from doc mbyte.txt

2012-02-23 Fir de Conversatie Bram Moolenaar
Dominique Pelle wrote: Errors E290 E291 E292 are still mentioned in runtime/doc/mbyte.txt and yet they are no longer used in Vim's source code. There were removed in changeset 2272:e4d849f4df03. Attach patch removes them from the doc. Thanks! -- Momento mori, ergo carpe diem ///

Bug in :help: no v:cmdbang examples in $VIMRUNTIME

2012-02-23 Fir de Conversatie Gary Johnson
:help Cmd-event says: For file read and write commands the |v:cmdarg| variable holds the ++enc= and ++ff= argument that are effective. These should be used for the command that reads/writes the file. The |v:cmdbang| variable is one when ! was used, zero otherwise. See the

possible syntax bug: mixing contained and not contained rules in one group

2012-02-23 Fir de Conversatie Ruslan Zakirov
Hi, The following syntax rules behave differently when included into other syntax: syn keyword barKey X contained syn keyword barKey Y Attached archive that makes it easy to reproduce. More details you can find below. syntax/bar.vim file: ... syn cluster barTop contains=TOP syn keyword barKey

Re: Patch 7.3.447

2012-02-23 Fir de Conversatie mattn
Well, I just tried the async grep idea with /b. The only problem (with 7.3.434, so before any of the 'shellxquote' patches) is with the echo statement in the command (which with /b is never displayed anyway). So I retract my statement about redirection not working. Can we make the help

Re: Patch 7.3.450

2012-02-23 Fir de Conversatie nanashi
system() is not working with multibyte character. gvim7.3.450.exe -u NONE :set encoding=utf-8 :echo system('C:\cygwin-1.7\bin\curl -L -s -k -i http://vim.g.hatena.ne.jp/keyword/選択されたテキストの取得;') E484: Can't open file c:/cygwin-1.7/tmp/VIo1614.tmp :echo system('C:\cygwin-1.7\bin\curl -L -s -k -i

Re: Patch 7.3.447

2012-02-23 Fir de Conversatie Ben Fritz
On Feb 23, 8:01 pm, mattn mattn...@gmail.com wrote: What exactly does that 'stdout and stderr' comment actually mean? This is sub-shell. In unix meanings, \\.\NUL is /dev/null. (ls output.txt) 21 /dev/null As you know, ':!start' is imitation of 'start' command in cmd.exe. So I'm

Re: Patch 7.3.447

2012-02-23 Fir de Conversatie Ben Fritz
On Feb 23, 8:01 pm, mattn mattn...@gmail.com wrote: As you know, ':!start' is imitation of 'start' command in cmd.exe. So I'm thinking vim's behavor should be same as cmd's one. If typing below in cmd.exe, it works correctly. I agree. Now, note, with 7.3.456: C:\start cmd /k (echo A^^^B ^

Re: Patch 7.3.450

2012-02-23 Fir de Conversatie mattn
Your command does not work on cmd.exe. The multi-byte text are treated as DBCS(double byte character set). Last was treated trailing byte of DBCS. You should convert text to ACP(active code page) which uses in cmd.exe If you are using windows japanese version, it's cp932. :let command =