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
2
2
3
3
4
4
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,
498
498
if you don't like the defaults at all, start with removing all menus
499
499
| :unmenu-all | . You can also avoid the default menus being loaded by adding
500
500
this line to your .vimrc file (NOT your .gvimrc file!): >
501
- :let g: did_install_default_menus = 1
501
+ :let did_install_default_menus = 1
502
502
If you also want to avoid the Syntax menu: >
503
- :let g: did_install_syntax_menu = 1
503
+ :let did_install_syntax_menu = 1
504
504
The first item in the Syntax menu can be used to show all available filetypes
505
505
in the menu (which can take a bit of time to load). If you want to have all
506
506
filetypes 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
+
509
509
The following menuitems show all available color schemes, keymaps and compiler
510
510
settings:
511
511
Edit > Color Scheme ~
@@ -515,7 +515,7 @@ However, they can also take a bit of time to load, because they search all
515
515
related files from the directories in 'runtimepath' . Therefore they are
516
516
loaded lazily (by the | CursorHold | event), or you can also load them manually.
517
517
If 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
519
519
520
520
Note that the menu.vim is sourced when `:syntax on` or `:filetype on` is
521
521
executed or after your .vimrc file is sourced. This means that the 'encoding'
0 commit comments