comparison runtime/doc/gui.txt @ 12499:d91cf2e26ef0

Update runtime files. commit https://github.com/vim/vim/commit/37c64c78fd87e086b5a945ad7032787c274e2dcb Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 19 22:06:03 2017 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Sep 2017 22:15:06 +0200
parents 3f16cf18386c
children 34c8ec888122
comparison
equal deleted inserted replaced
12498:bf98d339b568 12499:d91cf2e26ef0
1 *gui.txt* For Vim version 8.0. Last change: 2017 Sep 16 1 *gui.txt* For Vim version 8.0. Last change: 2017 Sep 19
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
782 *hidden-menus* *win32-hidden-menus* 782 *hidden-menus* *win32-hidden-menus*
783 In the Win32 and GTK+ GUI, starting a menu name with ']' excludes that menu 783 In the Win32 and GTK+ GUI, starting a menu name with ']' excludes that menu
784 from the main menu bar. You must then use the |:popup| or |:tearoff| command 784 from the main menu bar. You must then use the |:popup| or |:tearoff| command
785 to display it. 785 to display it.
786 786
787 *window-toolbar* 787 *window-toolbar* *WinBar*
788 Each window can have a local toolbar. This uses the first line of the window, 788 Each window can have a local toolbar. This uses the first line of the window,
789 thus reduces the space for the text by one line. 789 thus reduces the space for the text by one line. The items in the toolbar
790 790 must start with "WinBar".
791 Only text can be used. When using Unicode special characters can be used to 791
792 Only text can be used. When using Unicode, special characters can be used to
792 make the items look like icons. 793 make the items look like icons.
793 794
794 If the items do not fit then the last ones cannot be used. The toolbar does 795 If the items do not fit then the last ones cannot be used. The toolbar does
795 not wrap. 796 not wrap.
796 797
799 amenu 1.20 WinBar.Next :Next<CR> 800 amenu 1.20 WinBar.Next :Next<CR>
800 amenu 1.30 WinBar.Finish :Finish<CR> 801 amenu 1.30 WinBar.Finish :Finish<CR>
801 amenu 1.40 WinBar.Cont :Continue<CR> 802 amenu 1.40 WinBar.Cont :Continue<CR>
802 < 803 <
803 The window toolbar uses the ToolbarLine and ToolbarButton highlight groups. 804 The window toolbar uses the ToolbarLine and ToolbarButton highlight groups.
805
806 When splitting the window the window toolbar is not copied to the new window.
804 807
805 *popup-menu* 808 *popup-menu*
806 In the Win32, GTK+, Motif, Athena and Photon GUI, you can define the 809 In the Win32, GTK+, Motif, Athena and Photon GUI, you can define the
807 special menu "PopUp". This is the menu that is displayed when the right mouse 810 special menu "PopUp". This is the menu that is displayed when the right mouse
808 button is pressed, if 'mousemodel' is set to popup or popup_setpos. 811 button is pressed, if 'mousemodel' is set to popup or popup_setpos.