comparison runtime/doc/gui.txt @ 18594:e9a47bcf7b94

Update runtime files Commit: https://github.com/vim/vim/commit/5ef1c6a4838a9629b793f3ae676f72a764171b00 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 10 22:09:11 2019 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 10 Nov 2019 22:15:04 +0100
parents cc953757ed2a
children cb3163d590a1
comparison
equal deleted inserted replaced
18593:89a359d7bcd2 18594:e9a47bcf7b94
1 *gui.txt* For Vim version 8.1. Last change: 2019 Aug 21 1 *gui.txt* For Vim version 8.1. Last change: 2019 Nov 10
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
558 *:cme* *:cmenu* *:cnoreme* *:cnoremenu* 558 *:cme* *:cmenu* *:cnoreme* *:cnoremenu*
559 *:tlm* *:tlmenu* *:tln* *:tlnoremenu* 559 *:tlm* *:tlmenu* *:tln* *:tlnoremenu*
560 *E330* *E327* *E331* *E336* *E333* 560 *E330* *E327* *E331* *E336* *E333*
561 *E328* *E329* *E337* *E792* 561 *E328* *E329* *E337* *E792*
562 To create a new menu item, use the ":menu" commands. They are mostly like 562 To create a new menu item, use the ":menu" commands. They are mostly like
563 the ":map" set of commands but the first argument is a menu item name, given 563 the ":map" set of commands (see |map-modes|), but the first argument is a menu
564 as a path of menus and submenus with a '.' between them, e.g.: > 564 item name, given as a path of menus and submenus with a '.' between them,
565 e.g.: >
565 566
566 :menu File.Save :w<CR> 567 :menu File.Save :w<CR>
567 :inoremenu File.Save <C-O>:w<CR> 568 :inoremenu File.Save <C-O>:w<CR>
568 :menu Edit.Big\ Changes.Delete\ All\ Spaces :%s/[ ^I]//g<CR> 569 :menu Edit.Big\ Changes.Delete\ All\ Spaces :%s/[ ^I]//g<CR>
569 570