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 error happened while sourcing the first sourced script (notice "<SNR>1_"? That's the value of <SID> for script #1). Do it again, and, once Vim has started up, check the output of

:scriptnames

The first line should tell you which script has the offending lines (search it for a function named <SID>BMShow or s:BMShow).

Notice that the standard Vim menus include a &Buffers menu (plural) but no &Buffer menu (singular).


Best regards,
Tony.

Reply via email to