On Tue, Jun 13, 2006 at 05:37:13PM +0200, Cesar Romani wrote:
> I use vim 7.0 on Windows XP compiled with MS Visual C.
> If I do: gvim -u NONE -U NONE -c "set verbosefile=C:/vim.log"
> I get:
>
> ------------------------------------------------------
> Error detected while processing function <SNR>1_BMShow:
> line 12:
> E329: No menu "&Buffer"
> Error detected while processing function <SNR>1_BMShow:
> line 14:
> E328: Menu only exists in another mode
> Tear off this menu
> -------------------------------------------------------
>
> Many thanks in advance,
>
> Andalou
The <SNR>1_ bit refers to the first script that has been :source'd.
Since you started with -u NONE, this will be the first script in your
plugin directory. In any event, you can see which script is :source'd
first with
:scriptnames
Check this. I am pretty sure that it will not be one of the plugins
from the standard distribution. Look at the plugin and search for the
BMShow function.
HTH --Benji Fisher