1- *gui.txt* For Vim version 9.1. Last change: 2024 May 01
1+ *gui.txt* For Vim version 9.1. Last change: 2024 Apr 17
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -498,14 +498,14 @@ Starting off with the default set is a good idea. You can add more items, or,
498498if you don't like the defaults at all, start with removing all menus
499499| :unmenu-all | . You can also avoid the default menus being loaded by adding
500500this line to your .vimrc file (NOT your .gvimrc file!): >
501- :let g: did_install_default_menus = 1
501+ :let did_install_default_menus = 1
502502 If you also want to avoid the Syntax menu: >
503- :let g: did_install_syntax_menu = 1
503+ :let did_install_syntax_menu = 1
504504 The first item in the Syntax menu can be used to show all available filetypes
505505in the menu (which can take a bit of time to load). If you want to have all
506506filetypes already present at startup, add: >
507- :let g: do_syntax_sel_menu = 1
508- < *menu-lazyload* *g:do_no_lazyload_menus*
507+ :let do_syntax_sel_menu = 1
508+
509509 The following menuitems show all available color schemes, keymaps and compiler
510510settings:
511511 Edit > Color Scheme ~
@@ -515,7 +515,7 @@ However, they can also take a bit of time to load, because they search all
515515related files from the directories in 'runtimepath' . Therefore they are
516516loaded lazily (by the | CursorHold | event), or you can also load them manually.
517517If you want to have all these items already present at startup, add: >
518- :let g: do_no_lazyload_menus = 1
518+ :let do_no_lazyload_menus = 1
519519
520520 Note that the menu.vim is sourced when `:syntax on` or `:filetype on` is
521521executed or after your .vimrc file is sourced. This means that the 'encoding'
0 commit comments