Hi Bram,
':help menu.vim' mentions the 'skip_syntax_sel_menu' variable to avoid creating
entries for all available syntax files; in fact, the Syntax menu loads those
on-demand, and this variable isn't used anywhere anymore.
Please either remove this obsolete paragraph or use the attached patch (against
latest runtime files) to document the variable 'do_syntax_sel_menu', which is
now used to force creation of all filetypes (at startup) instead.
-- best regards, ingo
--
-- Ingo Karkat -- /^-- /^-- /^-- /^-- /^-- /^-- http://ingo-karkat.de/ --
--
What is written without effort is in general read without pleasure.
-- Samuel
Johnson
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---
*** doc/gui.txt.orig 2009-01-21 17:59:35.000000000 +0100
--- doc/gui.txt 2009-01-21 18:11:31.000000000 +0100
***************
*** 473,481 ****
:let did_install_default_menus = 1
If you also want to avoid the Syntax menu: >
:let did_install_syntax_menu = 1
! If you do want the Syntax menu but not all the entries for each available
! syntax file (which take quite a bit of time to load): >
! :let skip_syntax_sel_menu = 1
<
*console-menus*
Although this documentation is in the GUI section, you can actually use menus
--- 473,482 ----
:let did_install_default_menus = 1
If you also want to avoid the Syntax menu: >
:let did_install_syntax_menu = 1
! The first item in the Syntax menu offers to show all available filetypes in
! the menu (which can take a bit of time to load). If you want to have all
! filetypes already present at startup, add: >
! :let do_syntax_sel_menu = 1
<
*console-menus*
Although this documentation is in the GUI section, you can actually use menus