Re: Arbitrary tab stops

2011-01-18 Fir de Conversatie Ben Schmidt
There is a variable tabstops patch by Matthew Winn; it's listed on the Vim patches page (http://groups.google.com/group/vim_dev/web/vim-patches): I notice on this page at the moment there is a THIS IS GOING TO BREAK SOON notice from Google. Is there any replacement page somewhere that takes

Re: Patch 7.3.097

2011-01-18 Fir de Conversatie Yukihiro Nakadaira
The following code causes an error E15: Invalid expression: d[f](). let d = {} function d.f() echo f() endfunction if 0 call d[f]() endif or for i in [1] call d[f]() endfor -- Yukihiro Nakadaira - yukihiro.nakada...@gmail.com -- You received this message from the vim_dev maillist.

[PATCH] C++ namespace indent

2011-01-18 Fir de Conversatie Konstantin Lepa
Hi to all. I wrote patch, that adds cinoptions 's'. sN - indent inside C++ namespace N characters extra. (default 0). For example, you can set cino=s-s, and remove indent level inside C++ namespace (look Google C++ Coding Style). I made patch from Mercurial repo by 'hg diff'. --

Re: [PATCH] C++ namespace indent

2011-01-18 Fir de Conversatie Konstantin Lepa
On 18-Jan-11 18:53, Konstantin Lepa wrote: Hi to all. I wrote patch, that adds cinoptions 's'. sN - indent inside C++ namespace N characters extra. (default 0). For example, you can set cino=s-s, and remove indent level inside C++ namespace (look Google C++ Coding Style). I made patch from

Re: [PATCH] C++ namespace indent

2011-01-18 Fir de Conversatie Konstantin Lepa
On 18-Jan-11 20:17, Konstantin Lepa wrote: On 18-Jan-11 18:53, Konstantin Lepa wrote: Hi to all. I wrote patch, that adds cinoptions 's'. sN - indent inside C++ namespace N characters extra. (default 0). For example, you can set cino=s-s, and remove indent level inside C++ namespace (look

Re: Patch 7.3.097

2011-01-18 Fir de Conversatie Bram Moolenaar
Yukihiro Nakadaira wrote: The following code causes an error E15: Invalid expression: d[f](). let d = {} function d.f() echo f() endfunction if 0 call d[f]() endif or for i in [1] call d[f]() endfor I can reproduce it. Strange, echo d[f]() does work. --