Well the version I've directed you to is a "standard" vim compiled
with the latest patches from the vim mailing list, there's no language
specific bits into it. I've tested the test against the latest vim's
build (7.2.264) and I still get the bug, it may be worth reporting it
to vim_dev .
If nobody wanna report it, I can do it
On 29 sep, 17:56, dr-dr xp <
drdr...@gmail.com> wrote:
> I didn't get this bug, except within a (French?) version of vim Vincent sent
> me. And it is not the latest patched version.
>
> Not sure if it's been fixed in the latest version.
>
> 2009/9/29 tyru <
tyru....@gmail.com>
>
>
>
>
>
> > Very slow response but I could reproduce the bug.
>
> > ----- code -----
> > func! s:foo()
> > throw 'exception'
> > endfunc
>
> > func! Foo()
> > try
> > silent s:foo()
> > catch
> > " nop.
> > endtry
> > endfunc
> > ----- code -----
>
> > ":call Foo()" makes Vim stay 'silent mode' as you said.
> > you can decide whether you send the bug report to vim_dev group as
> > 'hidden command line bug' with this code, or not :)
>
> > 2009/9/28 dr-dr xp <
drdr...@gmail.com>:
> > > 'silent some-command' throws an error but it is caught by try-catch. It
> > > seems like that vim keeps staying in "silent mode".
>
> > > 2009/9/28 Vincent B. <
twins...@gmail.com>