blob: 93e01ef6c5134a2f72233ec7fe02d2c843a05b37 [file] [log] [blame]
Bram Moolenaar98056532019-12-12 14:18:35 +01001*gui.txt* For Vim version 8.2. Last change: 2019 Nov 16
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Vim's Graphical User Interface *gui* *GUI*
8
91. Starting the GUI |gui-start|
102. Scrollbars |gui-scrollbars|
113. Mouse Control |gui-mouse|
124. Making GUI Selections |gui-selections|
135. Menus |menus|
Bram Moolenaarf720d0a2019-04-28 14:02:47 +0200146. Font |gui-font|
157. Extras |gui-extras|
168. Shell Commands |gui-shell|
Bram Moolenaar071d4272004-06-13 20:20:40 +000017
18Other GUI documentation:
19|gui_x11.txt| For specific items of the X11 GUI.
20|gui_w32.txt| For specific items of the Win32 GUI.
21
Bram Moolenaar071d4272004-06-13 20:20:40 +000022
23==============================================================================
241. Starting the GUI *gui-start* *E229* *E233*
25
26First you must make sure you actually have a version of Vim with the GUI code
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000027included. You can check this with the ":version" command, it says "with xxx
Bram Moolenaar98921892016-02-23 17:14:37 +010028GUI", where "xxx" is X11-Motif, X11-Athena, Photon, GTK2, GTK3, etc., or
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000029"MS-Windows 32 bit GUI version".
Bram Moolenaar071d4272004-06-13 20:20:40 +000030
31How to start the GUI depends on the system used. Mostly you can run the
32GUI version of Vim with:
33 gvim [options] [files...]
34
35The X11 version of Vim can run both in GUI and in non-GUI mode. See
36|gui-x11-start|.
37
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010038 *gui-init* *gvimrc* *.gvimrc* *_gvimrc* *$MYGVIMRC*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000039The gvimrc file is where GUI-specific startup commands should be placed. It
40is always sourced after the |vimrc| file. If you have one then the $MYGVIMRC
41environment variable has its name.
42
Bram Moolenaar071d4272004-06-13 20:20:40 +000043When the GUI starts up initializations are carried out, in this order:
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010044- The 'term' option is set to "builtin_gui" and terminal options are reset to
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000045 their default value for the GUI |terminal-options|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000046- If the system menu file exists, it is sourced. The name of this file is
47 normally "$VIMRUNTIME/menu.vim". You can check this with ":version". Also
48 see |$VIMRUNTIME|. To skip loading the system menu include 'M' in
49 'guioptions'. *buffers-menu* *no_buffers_menu*
50 The system menu file includes a "Buffers" menu. If you don't want this, set
51 the "no_buffers_menu" variable in your .vimrc (not .gvimrc!): >
52 :let no_buffers_menu = 1
53< NOTE: Switching on syntax highlighting also loads the menu file, thus
54 disabling the Buffers menu must be done before ":syntax on".
55 The path names are truncated to 35 characters. You can truncate them at a
56 different length, for example 50, like this: >
57 :let bmenu_max_pathlen = 50
58- If the "-U {gvimrc}" command-line option has been used when starting Vim,
59 the {gvimrc} file will be read for initializations. The following
Bram Moolenaar81695252004-12-29 20:58:21 +000060 initializations are skipped. When {gvimrc} is "NONE" no file will be read
61 for initializations.
Bram Moolenaar071d4272004-06-13 20:20:40 +000062- For Unix and MS-Windows, if the system gvimrc exists, it is sourced. The
63 name of this file is normally "$VIM/gvimrc". You can check this with
64 ":version". Also see |$VIM|.
65- The following are tried, and only the first one that exists is used:
66 - If the GVIMINIT environment variable exists and is not empty, it is
67 executed as an Ex command.
68 - If the user gvimrc file exists, it is sourced. The name of this file is
69 normally "$HOME/.gvimrc". You can check this with ":version".
Bram Moolenaarc572da52017-08-27 16:52:01 +020070 - For Win32, $HOME is set by Vim if needed, see |$HOME-windows|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000071 - When a "_gvimrc" file is not found, ".gvimrc" is tried too. And vice
72 versa.
Bram Moolenaar910f66f2006-04-05 20:41:53 +000073 The name of the first file found is stored in $MYGVIMRC, unless it was
74 already set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000075- If the 'exrc' option is set (which is NOT the default) the file ./.gvimrc
76 is sourced, if it exists and isn't the same file as the system or user
77 gvimrc file. If this file is not owned by you, some security restrictions
78 apply. When ".gvimrc" is not found, "_gvimrc" is tried too. For Macintosh
79 and DOS/Win32 "_gvimrc" is tried first.
80
81NOTE: All but the first one are not carried out if Vim was started with
Bram Moolenaarb6e0ec62017-07-23 22:12:20 +020082"-u NONE" or "-u DEFAULTS" and no "-U" argument was given, or when started
83with "-U NONE".
Bram Moolenaar071d4272004-06-13 20:20:40 +000084
85All this happens AFTER the normal Vim initializations, like reading your
86.vimrc file. See |initialization|.
87But the GUI window is only opened after all the initializations have been
88carried out. If you want some commands to be executed just after opening the
89GUI window, use the |GUIEnter| autocommand event. Example: >
Bram Moolenaar648120b2005-08-08 21:57:35 +000090 :autocmd GUIEnter * winpos 100 50
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
92You can use the gvimrc files to set up your own customized menus (see |:menu|)
93and initialize other things that you may want to set up differently from the
94terminal version.
95
96Recommended place for your personal GUI initializations:
Bram Moolenaar22971aa2013-06-12 20:35:58 +020097 Unix $HOME/.gvimrc or $HOME/.vim/gvimrc
Bram Moolenaar6f345a12019-12-17 21:27:18 +010098 Win32 $HOME/_gvimrc, $HOME/vimfiles/gvimrc
Bram Moolenaar22971aa2013-06-12 20:35:58 +020099 or $VIM/_gvimrc
100 Amiga s:.gvimrc, home:.gvimrc, home:vimfiles:gvimrc
101 or $VIM/.gvimrc
102
103The personal initialization files are searched in the order specified above
104and only the first one that is found is read.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105
106There are a number of options which only have meaning in the GUI version of
107Vim. These are 'guicursor', 'guifont', 'guipty' and 'guioptions'. They are
108documented in |options.txt| with all the other options.
109
Bram Moolenaara9587612006-05-04 21:47:50 +0000110If using the Motif or Athena version of the GUI (but not for the GTK+ or
Bram Moolenaar843ee412004-06-30 16:16:41 +0000111Win32 version), a number of X resources are available. See |gui-resources|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112
113Another way to set the colors for different occasions is with highlight
114groups. The "Normal" group is used to set the background and foreground
115colors. Example (which looks nice): >
116
117 :highlight Normal guibg=grey90
118
119The "guibg" and "guifg" settings override the normal background and
120foreground settings. The other settings for the Normal highlight group are
121not used. Use the 'guifont' option to set the font.
122
123Also check out the 'guicursor' option, to set the colors for the cursor in
124various modes.
125
126Vim tries to make the window fit on the screen when it starts up. This avoids
127that you can't see part of it. On the X Window System this requires a bit of
128guesswork. You can change the height that is used for the window title and a
129task bar with the 'guiheadroom' option.
130
131 *:winp* *:winpos* *E188*
132:winp[os]
133 Display current position of the top left corner of the GUI vim
134 window in pixels. Does not work in all versions.
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100135 Also see |getwinpos()|, |getwinposx()| and |getwinposy()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137:winp[os] {X} {Y} *E466*
138 Put the GUI vim window at the given {X} and {Y} coordinates.
139 The coordinates should specify the position in pixels of the
140 top left corner of the window. Does not work in all versions.
141 Does work in an (new) xterm |xterm-color|.
142 When the GUI window has not been opened yet, the values are
143 remembered until the window is opened. The position is
144 adjusted to make the window fit on the screen (if possible).
145
146 *:win* *:winsize* *E465*
147:win[size] {width} {height}
148 Set the window height to {width} by {height} characters.
149 Obsolete, use ":set lines=11 columns=22".
150 If you get less lines than expected, check the 'guiheadroom'
151 option.
152
153If you are running the X Window System, you can get information about the
Bram Moolenaar08589172014-03-08 18:38:28 +0100154window Vim is running in with these commands: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155 :!xwininfo -id $WINDOWID
Bram Moolenaar08589172014-03-08 18:38:28 +0100156 :!xprop -id $WINDOWID
157 :execute '!xwininfo -id ' . v:windowid
158 :execute '!xprop -id ' . v:windowid
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200159<
160 *gui-IME* *iBus*
161Input methods for international characters in X that rely on the XIM
162framework, most notably iBus, have been known to produce undesirable results
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100163in gvim. These may include an inability to enter spaces, or long delays
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200164between typing a character and it being recognized by the application.
165
166One workaround that has been successful, for unknown reasons, is to prevent
167gvim from forking into the background by starting it with the |-f| argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168
169==============================================================================
1702. Scrollbars *gui-scrollbars*
171
Bram Moolenaarfd371682005-01-14 21:42:54 +0000172There are vertical scrollbars and a horizontal scrollbar. You may
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173configure which ones appear with the 'guioptions' option.
174
175The interface looks like this (with ":set guioptions=mlrb"):
176
Bram Moolenaar166af9b2010-11-16 20:34:40 +0100177 +------------------------------+ `
178 | File Edit Help | <- Menu bar (m) `
179 +-+--------------------------+-+ `
180 |^| |^| `
181 |#| Text area. |#| `
182 | | | | `
183 |v|__________________________|v| `
184 Normal status line -> |-+ File.c 5,2 +-| `
185 between Vim windows |^|""""""""""""""""""""""""""|^| `
186 | | | | `
187 | | Another file buffer. | | `
188 | | | | `
189 |#| |#| `
190 Left scrollbar (l) -> |#| |#| <- Right `
191 |#| |#| scrollbar (r) `
192 | | | | `
193 |v| |v| `
194 +-+--------------------------+-+ `
195 | |< #### >| | <- Bottom `
196 +-+--------------------------+-+ scrollbar (b) `
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197
198Any of the scrollbar or menu components may be turned off by not putting the
199appropriate letter in the 'guioptions' string. The bottom scrollbar is
200only useful when 'nowrap' is set.
201
202
203VERTICAL SCROLLBARS *gui-vert-scroll*
204
205Each Vim window has a scrollbar next to it which may be scrolled up and down
206to move through the text in that buffer. The size of the scrollbar-thumb
207indicates the fraction of the buffer which can be seen in the window.
208When the scrollbar is dragged all the way down, the last line of the file
209will appear in the top of the window.
210
211If a window is shrunk to zero height (by the growth of another window) its
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000212scrollbar disappears. It reappears when the window is restored.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213
214If a window is vertically split, it will get a scrollbar when it is the
215current window and when, taking the middle of the current window and drawing a
216vertical line, this line goes through the window.
217When there are scrollbars on both sides, and the middle of the current window
218is on the left half, the right scrollbar column will contain scrollbars for
219the rightmost windows. The same happens on the other side.
220
221
222HORIZONTAL SCROLLBARS *gui-horiz-scroll*
223
224The horizontal scrollbar (at the bottom of the Vim GUI) may be used to
225scroll text sideways when the 'wrap' option is turned off. The
226scrollbar-thumb size is such that the text of the longest visible line may be
227scrolled as far as possible left and right. The cursor is moved when
228necessary, it must remain on a visible character (unless 'virtualedit' is
229set).
230
Bram Moolenaarfd371682005-01-14 21:42:54 +0000231Computing the length of the longest visible line takes quite a bit of
232computation, and it has to be done every time something changes. If this
233takes too much time or you don't like the cursor jumping to another line,
234include the 'h' flag in 'guioptions'. Then the scrolling is limited by the
235text of the current cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236
237 *athena-intellimouse*
238If you have an Intellimouse and an X server that supports using the wheel,
239then you can use the wheel to scroll the text up and down in gvim. This works
240with XFree86 4.0 and later, and with some older versions when you add patches.
241See |scroll-mouse-wheel|.
242
243For older versions of XFree86 you must patch your X server. The following
244page has a bit of information about using the Intellimouse on Linux as well as
245links to the patches and X server binaries (may not have the one you need
246though):
247 http://www.inria.fr/koala/colas/mouse-wheel-scroll/
248
249==============================================================================
2503. Mouse Control *gui-mouse*
251
252The mouse only works if the appropriate flag in the 'mouse' option is set.
253When the GUI is switched on, and 'mouse' wasn't set yet, the 'mouse' option is
254automatically set to "a", enabling it for all modes except for the
255|hit-enter| prompt. If you don't want this, a good place to change the
256'mouse' option is the "gvimrc" file.
257
258Other options that are relevant:
259'mousefocus' window focus follows mouse pointer |gui-mouse-focus|
260'mousemodel' what mouse button does which action
261'mousehide' hide mouse pointer while typing text
262'selectmode' whether to start Select mode or Visual mode
263
264A quick way to set these is with the ":behave" command.
265 *:behave* *:be*
266:be[have] {model} Set behavior for mouse and selection. Valid
267 arguments are:
268 mswin MS-Windows behavior
269 xterm Xterm behavior
270
271 Using ":behave" changes these options:
272 option mswin xterm ~
273 'selectmode' "mouse,key" ""
274 'mousemodel' "popup" "extend"
275 'keymodel' "startsel,stopsel" ""
276 'selection' "exclusive" "inclusive"
277
278In the $VIMRUNTIME directory, there is a script called |mswin.vim|, which will
279also map a few keys to the MS-Windows cut/copy/paste commands. This is NOT
280compatible, since it uses the CTRL-V, CTRL-X and CTRL-C keys. If you don't
281mind, use this command: >
282 :so $VIMRUNTIME/mswin.vim
283
284For scrolling with a wheel on a mouse, see |scroll-mouse-wheel|.
285
286
2873.1 Moving Cursor with Mouse *gui-mouse-move*
288
289Click the left mouse button somewhere in a text buffer where you want the
290cursor to go, and it does!
291This works in when 'mouse' contains ~
292Normal mode 'n' or 'a'
293Visual mode 'v' or 'a'
294Insert mode 'i' or 'a'
295
296Select mode is handled like Visual mode.
297
298You may use this with an operator such as 'd' to delete text from the current
299cursor position to the position you point to with the mouse. That is, you hit
300'd' and then click the mouse somewhere.
301
302 *gui-mouse-focus*
303The 'mousefocus' option can be set to make the keyboard focus follow the
304mouse pointer. This means that the window where the mouse pointer is, is the
305active window. Warning: this doesn't work very well when using a menu,
306because the menu command will always be applied to the top window.
307
308If you are on the ':' line (or '/' or '?'), then clicking the left or right
309mouse button will position the cursor on the ':' line (if 'mouse' contains
Bram Moolenaar09c6f262019-11-17 15:55:14 +0100310'c' or 'a').
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311
312In any situation the middle mouse button may be clicked to paste the current
313selection.
314
315
3163.2 Selection with Mouse *gui-mouse-select*
317
318The mouse can be used to start a selection. How depends on the 'mousemodel'
319option:
320'mousemodel' is "extend": use the right mouse button
321'mousemodel' is "popup": use the left mouse button, while keeping the Shift
322key pressed.
323
324If there was no selection yet, this starts a selection from the old cursor
325position to the position pointed to with the mouse. If there already is a
326selection then the closest end will be extended.
327
328If 'selectmode' contains "mouse", then the selection will be in Select mode.
329This means that typing normal text will replace the selection. See
330|Select-mode|. Otherwise, the selection will be in Visual mode.
331
332Double clicking may be done to make the selection word-wise, triple clicking
333makes it line-wise, and quadruple clicking makes it rectangular block-wise.
334
335See |gui-selections| on how the selection is used.
336
337
3383.3 Other Text Selection with Mouse *gui-mouse-modeless*
339 *modeless-selection*
340A different kind of selection is used when:
341- in Command-line mode
342- in the Command-line window and pointing in another window
343- at the |hit-enter| prompt
344- whenever the current mode is not in the 'mouse' option
345- when holding the CTRL and SHIFT keys in the GUI
Bram Moolenaara7241f52008-06-24 20:39:31 +0000346
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347Since Vim continues like the selection isn't there, and there is no mode
348associated with the selection, this is called modeless selection. Any text in
349the Vim window can be selected. Select the text by pressing the left mouse
350button at the start, drag to the end and release. To extend the selection,
351use the right mouse button when 'mousemodel' is "extend", or the left mouse
352button with the shift key pressed when 'mousemodel' is "popup".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353The selection is removed when the selected text is scrolled or changed.
Bram Moolenaara7241f52008-06-24 20:39:31 +0000354
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355On the command line CTRL-Y can be used to copy the selection into the
Bram Moolenaara7241f52008-06-24 20:39:31 +0000356clipboard. To do this from Insert mode, use CTRL-O : CTRL-Y <CR>. When
357'guioptions' contains a or A (default on X11), the selection is automatically
358copied to the "* register.
359
360The middle mouse button can then paste the text. On non-X11 systems, you can
361use CTRL-R +.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362
363
3643.4 Using Mouse on Status Lines *gui-mouse-status*
365
366Clicking the left or right mouse button on the status line below a Vim
367window makes that window the current window. This actually happens on button
368release (to be able to distinguish a click from a drag action).
369
370With the left mouse button a status line can be dragged up and down, thus
371resizing the windows above and below it. This does not change window focus.
372
373The same can be used on the vertical separator: click to give the window left
374of it focus, drag left and right to make windows wider and narrower.
375
376
3773.5 Various Mouse Clicks *gui-mouse-various*
378
379 <S-LeftMouse> Search forward for the word under the mouse click.
380 When 'mousemodel' is "popup" this starts or extends a
381 selection.
382 <S-RightMouse> Search backward for the word under the mouse click.
383 <C-LeftMouse> Jump to the tag name under the mouse click.
384 <C-RightMouse> Jump back to position before the previous tag jump
385 (same as "CTRL-T")
386
387
3883.6 Mouse Mappings *gui-mouse-mapping*
389
390The mouse events, complete with modifiers, may be mapped. Eg: >
391 :map <S-LeftMouse> <RightMouse>
392 :map <S-LeftDrag> <RightDrag>
393 :map <S-LeftRelease> <RightRelease>
394 :map <2-S-LeftMouse> <2-RightMouse>
395 :map <2-S-LeftDrag> <2-RightDrag>
396 :map <2-S-LeftRelease> <2-RightRelease>
397 :map <3-S-LeftMouse> <3-RightMouse>
398 :map <3-S-LeftDrag> <3-RightDrag>
399 :map <3-S-LeftRelease> <3-RightRelease>
400 :map <4-S-LeftMouse> <4-RightMouse>
401 :map <4-S-LeftDrag> <4-RightDrag>
402 :map <4-S-LeftRelease> <4-RightRelease>
403These mappings make selection work the way it probably should in a Motif
404application, with shift-left mouse allowing for extending the visual area
405rather than the right mouse button.
406
407Mouse mapping with modifiers does not work for modeless selection.
408
409
4103.7 Drag and drop *drag-n-drop*
411
412You can drag and drop one or more files into the Vim window, where they will
413be opened as if a |:drop| command was used.
414
415If you hold down Shift while doing this, Vim changes to the first dropped
416file's directory. If you hold Ctrl Vim will always split a new window for the
417file. Otherwise it's only done if the current buffer has been changed.
418
419You can also drop a directory on Vim. This starts the explorer plugin for
420that directory (assuming it was enabled, otherwise you'll get an error
421message). Keep Shift pressed to change to the directory instead.
422
423If Vim happens to be editing a command line, the names of the dropped files
424and directories will be inserted at the cursor. This allows you to use these
425names with any Ex command. Special characters (space, tab, double quote and
426'|'; backslash on non-MS-Windows systems) will be escaped.
427
428==============================================================================
4294. Making GUI Selections *gui-selections*
430
431 *quotestar*
432You may make selections with the mouse (see |gui-mouse-select|), or by using
433Vim's Visual mode (see |v|). If 'a' is present in 'guioptions', then
434whenever a selection is started (Visual or Select mode), or when the selection
435is changed, Vim becomes the owner of the windowing system's primary selection
436(on MS-Windows the |gui-clipboard| is used; under X11, the |x11-selection| is
437used - you should read whichever of these is appropriate now).
438
439 *clipboard*
440There is a special register for storing this selection, it is the "*
441register. Nothing is put in here unless the information about what text is
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000442selected is about to change (e.g. with a left mouse click somewhere), or when
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443another application wants to paste the selected text. Then the text is put
444in the "* register. For example, to cut a line and make it the current
445selection/put it on the clipboard: >
446
447 "*dd
448
449Similarly, when you want to paste a selection from another application, e.g.,
450by clicking the middle mouse button, the selection is put in the "* register
451first, and then 'put' like any other register. For example, to put the
452selection (contents of the clipboard): >
453
454 "*p
455
456When using this register under X11, also see |x11-selection|. This also
457explains the related "+ register.
458
459Note that when pasting text from one Vim into another separate Vim, the type
460of selection (character, line, or block) will also be copied. For other
461applications the type is always character. However, if the text gets
462transferred via the |x11-cut-buffer|, the selection type is ALWAYS lost.
463
464When the "unnamed" string is included in the 'clipboard' option, the unnamed
465register is the same as the "* register. Thus you can yank to and paste the
466selection without prepending "* to commands.
467
468==============================================================================
4695. Menus *menus*
470
471For an introduction see |usr_42.txt| in the user manual.
472
473
4745.1 Using Menus *using-menus*
475
476Basically, menus can be used just like mappings. You can define your own
477menus, as many as you like.
478Long-time Vim users won't use menus much. But the power is in adding your own
479menus and menu items. They are most useful for things that you can't remember
480what the key sequence was.
481
482For creating menus in a different language, see |:menutrans|.
Bram Moolenaar01164a62017-11-02 22:58:42 +0100483If you don't want to use menus at all, see |'go-M'|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
485 *menu.vim*
486The default menus are read from the file "$VIMRUNTIME/menu.vim". See
487|$VIMRUNTIME| for where the path comes from. You can set up your own menus.
488Starting off with the default set is a good idea. You can add more items, or,
489if you don't like the defaults at all, start with removing all menus
490|:unmenu-all|. You can also avoid the default menus being loaded by adding
491this line to your .vimrc file (NOT your .gvimrc file!): >
492 :let did_install_default_menus = 1
493If you also want to avoid the Syntax menu: >
494 :let did_install_syntax_menu = 1
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100495The first item in the Syntax menu can be used to show all available filetypes
496in the menu (which can take a bit of time to load). If you want to have all
497filetypes already present at startup, add: >
498 :let do_syntax_sel_menu = 1
499
Bram Moolenaar040c1fe2017-11-09 19:45:48 +0100500The following menuitems show all available color schemes, keymaps and compiler
501settings:
502 Edit > Color Scheme ~
503 Edit > Keymap ~
504 Tools > Set Compiler ~
505However, they can also take a bit of time to load, because they search all
506related files from the directories in 'runtimepath'. Therefore they are
507loaded lazily (by the |CursorHold| event), or you can also load them manually.
508If you want to have all these items already present at startup, add: >
509 :let do_no_lazyload_menus = 1
510
Bram Moolenaar01164a62017-11-02 22:58:42 +0100511Note that the menu.vim is sourced when `:syntax on` or `:filetype on` is
512executed or after your .vimrc file is sourced. This means that the 'encoding'
513option and the language of messages (`:language messages`) must be set before
514that (if you want to change them).
515
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 *console-menus*
517Although this documentation is in the GUI section, you can actually use menus
518in console mode too. You will have to load |menu.vim| explicitly then, it is
519not done by default. You can use the |:emenu| command and command-line
520completion with 'wildmenu' to access the menu entries almost like a real menu
521system. To do this, put these commands in your .vimrc file: >
522 :source $VIMRUNTIME/menu.vim
523 :set wildmenu
524 :set cpo-=<
525 :set wcm=<C-Z>
526 :map <F4> :emenu <C-Z>
527Pressing <F4> will start the menu. You can now use the cursor keys to select
528a menu entry. Hit <Enter> to execute it. Hit <Esc> if you want to cancel.
529This does require the |+menu| feature enabled at compile time.
530
531 *tear-off-menus*
Bram Moolenaar98921892016-02-23 17:14:37 +0100532GTK+ 2 and Motif support Tear-off menus. These are sort of sticky menus or
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533pop-up menus that are present all the time. If the resizing does not work
534correctly, this may be caused by using something like "Vim*geometry" in the
535defaults. Use "Vim.geometry" instead.
536
Bram Moolenaar98921892016-02-23 17:14:37 +0100537As to GTK+ 3, tear-off menus have been deprecated since GTK+ 3.4.
538Accordingly, they are disabled if gvim is linked against GTK+ 3.4 or later.
539
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540The Win32 GUI version emulates Motif's tear-off menus. Actually, a Motif user
541will spot the differences easily, but hopefully they're just as useful. You
542can also use the |:tearoff| command together with |hidden-menus| to create
543floating menus that do not appear on the main menu bar.
544
545
5465.2 Creating New Menus *creating-menus*
547
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200548 *:me* *:menu* *:noreme* *:noremenu*
549 *:am* *:amenu* *:an* *:anoremenu*
550 *:nme* *:nmenu* *:nnoreme* *:nnoremenu*
551 *:ome* *:omenu* *:onoreme* *:onoremenu*
552 *:vme* *:vmenu* *:vnoreme* *:vnoremenu*
553 *:xme* *:xmenu* *:xnoreme* *:xnoremenu*
554 *:sme* *:smenu* *:snoreme* *:snoremenu*
555 *:ime* *:imenu* *:inoreme* *:inoremenu*
556 *:cme* *:cmenu* *:cnoreme* *:cnoremenu*
557 *:tlm* *:tlmenu* *:tln* *:tlnoremenu*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 *E330* *E327* *E331* *E336* *E333*
Bram Moolenaard5ab34b2007-05-05 17:15:44 +0000559 *E328* *E329* *E337* *E792*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560To create a new menu item, use the ":menu" commands. They are mostly like
Bram Moolenaar5ef1c6a2019-11-10 22:09:11 +0100561the ":map" set of commands (see |map-modes|), but the first argument is a menu
562item name, given as a path of menus and submenus with a '.' between them,
563e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
565 :menu File.Save :w<CR>
566 :inoremenu File.Save <C-O>:w<CR>
567 :menu Edit.Big\ Changes.Delete\ All\ Spaces :%s/[ ^I]//g<CR>
568
569This last one will create a new item in the menu bar called "Edit", holding
570the mouse button down on this will pop up a menu containing the item
571"Big Changes", which is a sub-menu containing the item "Delete All Spaces",
572which when selected, performs the operation.
573
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200574To create a menu for terminal mode, use |:tlmenu| instead of |:tmenu| unlike
575key mapping (|:tmap|). This is because |:tmenu| is already used for defining
576tooltips for menus. See |terminal-typing|.
577
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578Special characters in a menu name:
579
580 & The next character is the shortcut key. Make sure each
581 shortcut key is only used once in a (sub)menu. If you want to
582 insert a literal "&" in the menu name use "&&".
583 <Tab> Separates the menu name from right-aligned text. This can be
584 used to show the equivalent typed command. The text "<Tab>"
585 can be used here for convenience. If you are using a real
Bram Moolenaarb5ba0022007-05-12 13:06:29 +0000586 tab, don't forget to put a backslash before it!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587Example: >
588
589 :amenu &File.&Open<Tab>:e :browse e<CR>
590
591[typed literally]
592With the shortcut "F" (while keeping the <Alt> key pressed), and then "O",
593this menu can be used. The second part is shown as "Open :e". The ":e"
594is right aligned, and the "O" is underlined, to indicate it is the shortcut.
595
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200596The ":amenu" command can be used to define menu entries for all modes at once,
597except for Terminal mode. To make the command work correctly, a character is
598automatically inserted for some modes:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 mode inserted appended ~
600 Normal nothing nothing
601 Visual <C-C> <C-\><C-G>
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200602 Insert <C-\><C-O>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 Cmdline <C-C> <C-\><C-G>
604 Op-pending <C-C> <C-\><C-G>
605
606Appending CTRL-\ CTRL-G is for going back to insert mode when 'insertmode' is
607set. |CTRL-\_CTRL-G|
608
609Example: >
610
611 :amenu File.Next :next^M
612
613is equal to: >
614
615 :nmenu File.Next :next^M
616 :vmenu File.Next ^C:next^M^\^G
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200617 :imenu File.Next ^\^O:next^M
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 :cmenu File.Next ^C:next^M^\^G
619 :omenu File.Next ^C:next^M^\^G
620
621Careful: In Insert mode this only works for a SINGLE Normal mode command,
622because of the CTRL-O. If you have two or more commands, you will need to use
623the ":imenu" command. For inserting text in any mode, you can use the
624expression register: >
625
626 :amenu Insert.foobar "='foobar'<CR>P
627
628Note that the '<' and 'k' flags in 'cpoptions' also apply here (when
629included they make the <> form and raw key codes not being recognized).
630
631Note that <Esc> in Cmdline mode executes the command, like in a mapping. This
632is Vi compatible. Use CTRL-C to quit Cmdline mode.
633
634 *:menu-<silent>* *:menu-silent*
635To define a menu which will not be echoed on the command line, add
636"<silent>" as the first argument. Example: >
637 :menu <silent> Settings.Ignore\ case :set ic<CR>
638The ":set ic" will not be echoed when using this menu. Messages from the
639executed command are still given though. To shut them up too, add a ":silent"
640in the executed command: >
641 :menu <silent> Search.Header :exe ":silent normal /Header\r"<CR>
Bram Moolenaar9c102382006-05-03 21:26:49 +0000642"<silent>" may also appear just after "<special>" or "<script>".
643
644 *:menu-<special>* *:menu-special*
645Define a menu with <> notation for special keys, even though the "<" flag
646may appear in 'cpoptions'. This is useful if the side effect of setting
647'cpoptions' is not desired. Example: >
648 :menu <special> Search.Header /Header<CR>
649"<special>" must appear as the very first argument to the ":menu" command or
650just after "<silent>" or "<script>".
651
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 *:menu-<script>* *:menu-script*
653The "to" part of the menu will be inspected for mappings. If you don't want
654this, use the ":noremenu" command (or the similar one for a specific mode).
655If you do want to use script-local mappings, add "<script>" as the very first
Bram Moolenaar9c102382006-05-03 21:26:49 +0000656argument to the ":menu" command or just after "<silent>" or "<special>".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657
658 *menu-priority*
659You can give a priority to a menu. Menus with a higher priority go more to
660the right. The priority is given as a number before the ":menu" command.
661Example: >
662 :80menu Buffer.next :bn<CR>
663
664The default menus have these priorities:
665 File 10
666 Edit 20
667 Tools 40
668 Syntax 50
669 Buffers 60
670 Window 70
671 Help 9999
672
673When no or zero priority is given, 500 is used.
674The priority for the PopUp menu is not used.
675
676The Help menu will be placed on the far right side of the menu bar on systems
Bram Moolenaar98921892016-02-23 17:14:37 +0100677which support this (Motif and GTK+). For GTK+ 2 and 3, this is not done
678anymore because right-aligning the Help menu is now discouraged UI design.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679
680You can use a priority higher than 9999, to make it go after the Help menu,
681but that is non-standard and is discouraged. The highest possible priority is
682about 32000. The lowest is 1.
683
684 *sub-menu-priority*
685The same mechanism can be used to position a sub-menu. The priority is then
686given as a dot-separated list of priorities, before the menu name: >
687 :menu 80.500 Buffer.next :bn<CR>
688Giving the sub-menu priority is only needed when the item is not to be put
689in a normal position. For example, to put a sub-menu before the other items: >
690 :menu 80.100 Buffer.first :brew<CR>
691Or to put a sub-menu after the other items, and further items with default
692priority will be put before it: >
693 :menu 80.900 Buffer.last :blast<CR>
694When a number is missing, the default value 500 will be used: >
695 :menu .900 myMenu.test :echo "text"<CR>
696The menu priority is only used when creating a new menu. When it already
697existed, e.g., in another mode, the priority will not change. Thus, the
698priority only needs to be given the first time a menu is used.
699An exception is the PopUp menu. There is a separate menu for each mode
700(Normal, Op-pending, Visual, Insert, Cmdline). The order in each of these
701menus can be different. This is different from menu-bar menus, which have
702the same order for all modes.
703NOTE: sub-menu priorities currently don't work for all versions of the GUI.
704
705 *menu-separator* *E332*
706Menu items can be separated by a special item that inserts some space between
707items. Depending on the system this is displayed as a line or a dotted line.
708These items must start with a '-' and end in a '-'. The part in between is
709used to give it a unique name. Priorities can be used as with normal items.
710Example: >
711 :menu Example.item1 :do something
712 :menu Example.-Sep- :
713 :menu Example.item2 :do something different
714Note that the separator also requires a rhs. It doesn't matter what it is,
715because the item will never be selected. Use a single colon to keep it
716simple.
717
718 *gui-toolbar*
Bram Moolenaar843ee412004-06-30 16:16:41 +0000719The toolbar is currently available in the Win32, Athena, Motif, GTK+ (X11),
Bram Moolenaara9587612006-05-04 21:47:50 +0000720and Photon GUI. It should turn up in other GUIs in due course. The
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000721default toolbar is setup in menu.vim.
722The display of the toolbar is controlled by the 'guioptions' letter 'T'. You
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723can thus have menu & toolbar together, or either on its own, or neither.
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200724The appearance is controlled by the 'toolbar' option. You can choose between
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725an image, text or both.
726
727 *toolbar-icon*
728The toolbar is defined as a special menu called ToolBar, which only has one
729level. Vim interprets the items in this menu as follows:
7301) If an "icon=" argument was specified, the file with this name is used.
731 The file can either be specified with the full path or with the base name.
732 In the last case it is searched for in the "bitmaps" directory in
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000733 'runtimepath', like in point 3. Examples: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 :amenu icon=/usr/local/pixmaps/foo_icon.xpm ToolBar.Foo :echo "Foo"<CR>
735 :amenu icon=FooIcon ToolBar.Foo :echo "Foo"<CR>
736< Note that in the first case the extension is included, while in the second
737 case it is omitted.
738 If the file cannot be opened the next points are tried.
739 A space in the file name must be escaped with a backslash.
740 A menu priority must come _after_ the icon argument: >
741 :amenu icon=foo 1.42 ToolBar.Foo :echo "42!"<CR>
7422) An item called 'BuiltIn##', where ## is a number, is taken as number ## of
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000743 the built-in bitmaps available in Vim. Currently there are 31 numbered
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 from 0 to 30 which cover most common editing operations |builtin-tools|. >
745 :amenu ToolBar.BuiltIn22 :call SearchNext("back")<CR>
7463) An item with another name is first searched for in the directory
747 "bitmaps" in 'runtimepath'. If found, the bitmap file is used as the
748 toolbar button image. Note that the exact filename is OS-specific: For
749 example, under Win32 the command >
750 :amenu ToolBar.Hello :echo "hello"<CR>
751< would find the file 'hello.bmp'. Under GTK+/X11 it is 'Hello.xpm'. With
752 GTK+ 2 the files 'Hello.png', 'Hello.xpm' and 'Hello.bmp' are checked for
753 existence, and the first one found would be used.
754 For MS-Windows and GTK+ 2 the bitmap is scaled to fit the button. For
755 MS-Windows a size of 18 by 18 pixels works best.
756 For MS-Windows the bitmap should have 16 colors with the standard palette.
757 The light grey pixels will be changed to the Window frame color and the
758 dark grey pixels to the window shadow color. More colors might also work,
759 depending on your system.
7604) If the bitmap is still not found, Vim checks for a match against its list
761 of built-in names. Each built-in button image has a name.
762 So the command >
763 :amenu ToolBar.Open :e
764< will show the built-in "open a file" button image if no open.bmp exists.
765 All the built-in names can be seen used in menu.vim.
7665) If all else fails, a blank, but functioning, button is displayed.
767
768 *builtin-tools*
769nr Name Normal action ~
77000 New open new window
77101 Open browse for file to open in current window
77202 Save write buffer to file
77303 Undo undo last change
77404 Redo redo last undone change
77505 Cut delete selected text to clipboard
77606 Copy copy selected text to clipboard
77707 Paste paste text from clipboard
77808 Print print current buffer
77909 Help open a buffer on Vim's builtin help
78010 Find start a search command
78111 SaveAll write all modified buffers to file
78212 SaveSesn write session file for current situation
78313 NewSesn write new session file
78414 LoadSesn load session file
78515 RunScript browse for file to run as a Vim script
78616 Replace prompt for substitute command
78717 WinClose close current window
78818 WinMax make current window use many lines
78919 WinMin make current window use few lines
79020 WinSplit split current window
79121 Shell start a shell
79222 FindPrev search again, backward
79323 FindNext search again, forward
79424 FindHelp prompt for word to search help for
79525 Make run make and jump to first error
79626 TagJump jump to tag under the cursor
79727 RunCtags build tags for files in current directory
79828 WinVSplit split current window vertically
79929 WinMaxWidth make current window use many columns
80030 WinMinWidth make current window use few columns
801
802 *hidden-menus* *win32-hidden-menus*
803In the Win32 and GTK+ GUI, starting a menu name with ']' excludes that menu
804from the main menu bar. You must then use the |:popup| or |:tearoff| command
805to display it.
806
Bram Moolenaar37c64c72017-09-19 22:06:03 +0200807 *window-toolbar* *WinBar*
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200808Each window can have a local toolbar. This uses the first line of the window,
Bram Moolenaar37c64c72017-09-19 22:06:03 +0200809thus reduces the space for the text by one line. The items in the toolbar
810must start with "WinBar".
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200811
Bram Moolenaar37c64c72017-09-19 22:06:03 +0200812Only text can be used. When using Unicode, special characters can be used to
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200813make the items look like icons.
814
815If the items do not fit then the last ones cannot be used. The toolbar does
816not wrap.
817
Bram Moolenaar24a98a02017-09-27 22:23:55 +0200818Note that Vim may be in any mode when executing these commands. The menu
819should be defined for Normal mode and will be executed without changing the
820current mode. Thus if the current window is in Visual mode and the menu
821command does not intentionally change the mode, Vim will remain in Visual
822mode. Best is to use `:nnoremenu` to avoid side effects.
823
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200824Example for debugger tools: >
Bram Moolenaar24a98a02017-09-27 22:23:55 +0200825 nnoremenu 1.10 WinBar.Step :Step<CR>
826 nnoremenu 1.20 WinBar.Next :Next<CR>
827 nnoremenu 1.30 WinBar.Finish :Finish<CR>
828 nnoremenu 1.40 WinBar.Cont :Continue<CR>
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200829<
830The window toolbar uses the ToolbarLine and ToolbarButton highlight groups.
831
Bram Moolenaar37c64c72017-09-19 22:06:03 +0200832When splitting the window the window toolbar is not copied to the new window.
833
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 *popup-menu*
Bram Moolenaara9587612006-05-04 21:47:50 +0000835In the Win32, GTK+, Motif, Athena and Photon GUI, you can define the
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000836special menu "PopUp". This is the menu that is displayed when the right mouse
837button is pressed, if 'mousemodel' is set to popup or popup_setpos.
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200838Example: >
839 nnoremenu 1.40 PopUp.&Paste "+gP
840 menu PopUp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841
842
8435.3 Showing What Menus Are Mapped To *showing-menus*
844
845To see what an existing menu is mapped to, use just one argument after the
846menu commands (just like you would with the ":map" commands). If the menu
847specified is a submenu, then all menus under that hierarchy will be shown.
848If no argument is given after :menu at all, then ALL menu items are shown
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000849for the appropriate mode (e.g., Command-line mode for :cmenu).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
851Special characters in the list, just before the rhs:
852* The menu was defined with "nore" to disallow remapping.
853& The menu was defined with "<script>" to allow remapping script-local
854 mappings only.
855- The menu was disabled.
856
857Note that hitting <Tab> while entering a menu name after a menu command may
858be used to complete the name of the menu item.
859
860
8615.4 Executing Menus *execute-menus*
862
863 *:em* *:emenu* *E334* *E335*
864:[range]em[enu] {menu} Execute {menu} from the command line.
865 The default is to execute the Normal mode
866 menu. If a range is specified, it executes
867 the Visual mode menu.
868 If used from <c-o>, it executes the
869 insert-mode menu Eg: >
870 :emenu File.Exit
871
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200872:[range]em[enu] {mode} {menu} Like above, but execute the menu for {mode}:
873 'n': |:nmenu| Normal mode
874 'v': |:vmenu| Visual mode
875 's': |:smenu| Select mode
876 'o': |:omenu| Operator-pending mode
877 't': |:tlmenu| Terminal mode
878 'i': |:imenu| Insert mode
879 'c': |:cmenu| Cmdline mode
Bram Moolenaarf0d58ef2018-11-16 16:13:44 +0100880
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200881
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882If the console-mode vim has been compiled with WANT_MENU defined, you can
883use :emenu to access useful menu items you may have got used to from GUI
884mode. See 'wildmenu' for an option that works well with this. See
885|console-menus| for an example.
886
887When using a range, if the lines match with '<,'>, then the menu is executed
888using the last visual selection.
889
890
8915.5 Deleting Menus *delete-menus*
892
893 *:unme* *:unmenu*
894 *:aun* *:aunmenu*
895 *:nunme* *:nunmenu*
896 *:ounme* *:ounmenu*
897 *:vunme* *:vunmenu*
Bram Moolenaar371d5402006-03-20 21:47:49 +0000898 *:xunme* *:xunmenu*
899 *:sunme* *:sunmenu*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 *:iunme* *:iunmenu*
901 *:cunme* *:cunmenu*
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200902 *:tlu* *:tlunmenu*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903To delete a menu item or a whole submenu, use the unmenu commands, which are
904analogous to the unmap commands. Eg: >
905 :unmenu! Edit.Paste
906
907This will remove the Paste item from the Edit menu for Insert and
908Command-line modes.
909
910Note that hitting <Tab> while entering a menu name after an umenu command
911may be used to complete the name of the menu item for the appropriate mode.
912
913To remove all menus use: *:unmenu-all* >
914 :unmenu * " remove all menus in Normal and visual mode
915 :unmenu! * " remove all menus in Insert and Command-line mode
Bram Moolenaarf42b45d2019-01-06 13:11:05 +0100916 :aunmenu * " remove all menus in all modes, except for Terminal
917 " mode
918 :tlunmenu * " remove all menus in Terminal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919
920If you want to get rid of the menu bar: >
921 :set guioptions-=m
922
923
9245.6 Disabling Menus *disable-menus*
925
926 *:menu-disable* *:menu-enable*
927If you do not want to remove a menu, but disable it for a moment, this can be
928done by adding the "enable" or "disable" keyword to a ":menu" command.
929Examples: >
930 :menu disable &File.&Open\.\.\.
931 :amenu enable *
932 :amenu disable &Tools.*
933
934The command applies to the modes as used with all menu commands. Note that
935characters like "&" need to be included for translated names to be found.
936When the argument is "*", all menus are affected. Otherwise the given menu
937name and all existing submenus below it are affected.
938
939
9405.7 Examples for Menus *menu-examples*
941
942Here is an example on how to add menu items with menu's! You can add a menu
943item for the keyword under the cursor. The register "z" is used. >
944
945 :nmenu Words.Add\ Var wb"zye:menu! Words.<C-R>z <C-R>z<CR>
946 :nmenu Words.Remove\ Var wb"zye:unmenu! Words.<C-R>z<CR>
947 :vmenu Words.Add\ Var "zy:menu! Words.<C-R>z <C-R>z <CR>
948 :vmenu Words.Remove\ Var "zy:unmenu! Words.<C-R>z<CR>
949 :imenu Words.Add\ Var <Esc>wb"zye:menu! Words.<C-R>z <C-R>z<CR>a
950 :imenu Words.Remove\ Var <Esc>wb"zye:unmenu! Words.<C-R>z<CR>a
951
952(the rhs is in <> notation, you can copy/paste this text to try out the
953mappings, or put these lines in your gvimrc; "<C-R>" is CTRL-R, "<CR>" is
954the <CR> key. |<>|)
955
956
9575.8 Tooltips & Menu tips
958
959See section |42.4| in the user manual.
960
961 *:tmenu* *:tm*
962:tm[enu] {menupath} {rhs} Define a tip for a menu or tool. {only in
963 X11 and Win32 GUI}
964
965:tm[enu] [menupath] List menu tips. {only in X11 and Win32 GUI}
966
967 *:tunmenu* *:tu*
968:tu[nmenu] {menupath} Remove a tip for a menu or tool.
969 {only in X11 and Win32 GUI}
970
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200971Note: To create menus for terminal mode, use |:tlmenu| instead.
972
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973When a tip is defined for a menu item, it appears in the command-line area
974when the mouse is over that item, much like a standard Windows menu hint in
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000975the status bar. (Except when Vim is in Command-line mode, when of course
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976nothing is displayed.)
977When a tip is defined for a ToolBar item, it appears as a tooltip when the
978mouse pauses over that button, in the usual fashion. Use the |hl-Tooltip|
979highlight group to change its colors.
980
981A "tip" can be defined for each menu item. For example, when defining a menu
982item like this: >
983 :amenu MyMenu.Hello :echo "Hello"<CR>
984The tip is defined like this: >
985 :tmenu MyMenu.Hello Displays a greeting.
986And delete it with: >
987 :tunmenu MyMenu.Hello
988
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000989Tooltips are currently only supported for the X11 and Win32 GUI. However, they
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990should appear for the other gui platforms in the not too distant future.
991
992The ":tmenu" command works just like other menu commands, it uses the same
993arguments. ":tunmenu" deletes an existing menu tip, in the same way as the
994other unmenu commands.
995
996If a menu item becomes invalid (i.e. its actions in all modes are deleted) Vim
997deletes the menu tip (and the item) for you. This means that :aunmenu deletes
998a menu item - you don't need to do a :tunmenu as well.
999
1000
10015.9 Popup Menus
1002
1003In the Win32 and GTK+ GUI, you can cause a menu to popup at the cursor.
1004This behaves similarly to the PopUp menus except that any menu tree can
1005be popped up.
1006
1007This command is for backwards compatibility, using it is discouraged, because
1008it behaves in a strange way.
1009
1010 *:popup* *:popu*
1011:popu[p] {name} Popup the menu {name}. The menu named must
1012 have at least one subentry, but need not
1013 appear on the menu-bar (see |hidden-menus|).
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001014 {only available for Win32 and GTK GUI or in
Bram Moolenaar06fe74a2019-08-31 16:20:32 +02001015 the terminal}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016
Bram Moolenaar97409f12005-07-08 22:17:29 +00001017:popu[p]! {name} Like above, but use the position of the mouse
1018 pointer instead of the cursor.
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001019 In the terminal this is the last known
1020 position, which is usually at the last click
Bram Moolenaar0b0f0992018-05-22 21:41:30 +02001021 or release (mouse movement is irrelevant).
Bram Moolenaar97409f12005-07-08 22:17:29 +00001022
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023Example: >
1024 :popup File
Bram Moolenaar97409f12005-07-08 22:17:29 +00001025will make the "File" menu (if there is one) appear at the text cursor (mouse
1026pointer if ! was used). >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027
1028 :amenu ]Toolbar.Make :make<CR>
1029 :popup ]Toolbar
1030This creates a popup menu that doesn't exist on the main menu-bar.
1031
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001032Note that in the GUI the :popup command will return immediately, before a
1033selection has been made. In the terminal the commands waits for the user to
1034make a selection.
1035
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036Note that a menu that starts with ']' will not be displayed.
1037
1038==============================================================================
Bram Moolenaarf720d0a2019-04-28 14:02:47 +020010396. Font
1040
1041This section describes font related options.
1042
1043GUIFONT *gui-font*
1044
1045'guifont' is the option that tells Vim what font to use. In its simplest form
1046the value is just one font name. It can also be a list of font names
1047separated with commas. The first valid font is used. When no valid font can
Bram Moolenaar68e65602019-05-26 21:33:31 +02001048be found you will get an error message.
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001049
1050On systems where 'guifontset' is supported (X11) and 'guifontset' is not
1051empty, then 'guifont' is not used. See |xfontset|.
1052
1053Note: As to the GTK GUIs, no error is given against any invalid names, and the
1054first element of the list is always picked up and made use of. This is
1055because, instead of identifying a given name with a font, the GTK GUIs use it
1056to construct a pattern and try to look up a font which best matches the
1057pattern among available fonts, and this way, the matching never fails. An
1058invalid name doesn't matter because a number of font properties other than
1059name will do to get the matching done.
1060
1061Spaces after a comma are ignored. To include a comma in a font name precede
1062it with a backslash. Setting an option requires an extra backslash before a
1063space and a backslash. See also |option-backslash|. For example: >
1064 :set guifont=Screen15,\ 7x13,font\\,with\\,commas
1065will make Vim try to use the font "Screen15" first, and if it fails it will
1066try to use "7x13" and then "font,with,commas" instead.
1067
1068If none of the fonts can be loaded, Vim will keep the current setting. If an
1069empty font list is given, Vim will try using other resource settings (for X,
1070it will use the Vim.font resource), and finally it will try some builtin
1071default which should always be there ("7x13" in the case of X). The font
1072names given should be "normal" fonts. Vim will try to find the related bold
1073and italic fonts.
1074
1075For Win32, GTK, Motif, Mac OS and Photon: >
1076 :set guifont=*
1077will bring up a font requester, where you can pick the font you want.
1078
1079The font name depends on the GUI used. See |setting-guifont| for a way to set
1080'guifont' for various systems.
1081
1082For the GTK+ 2 and 3 GUIs, the font name looks like this: >
1083 :set guifont=Andale\ Mono\ 11
1084That's all. XLFDs are not used. For Chinese this is reported to work well: >
1085 if has("gui_gtk2")
1086 set guifont=Bitstream\ Vera\ Sans\ Mono\ 12,Fixed\ 12
1087 set guifontwide=Microsoft\ Yahei\ 12,WenQuanYi\ Zen\ Hei\ 12
1088 endif
1089<
1090(Replace gui_gtk2 with gui_gtk3 for the GTK+ 3 GUI)
1091
1092For Mac OSX you can use something like this: >
1093 :set guifont=Monaco:h10
1094Also see 'macatsui', it can help fix display problems.
1095 *E236*
1096Note that the fonts must be mono-spaced (all characters have the same width).
1097An exception is GTK: all fonts are accepted, but mono-spaced fonts look best.
1098
1099To preview a font on X11, you might be able to use the "xfontsel" program.
1100The "xlsfonts" program gives a list of all available fonts.
1101
1102For the Win32 GUI *E244* *E245*
1103- Takes these options in the font name (use a ':' to separate the options):
1104 hXX - height is XX (points, can be floating-point)
1105 wXX - width is XX (points, can be floating-point)
1106 WXX - weight is XX (see Note on Weights below)
1107 b - bold. This is equivalent to setting the weight to 700.
1108 i - italic
1109 u - underline
1110 s - strikeout
1111 cXX - character set XX. Valid charsets are: ANSI, ARABIC, BALTIC,
1112 CHINESEBIG5, DEFAULT, EASTEUROPE, GB2312, GREEK, HANGEUL,
1113 HEBREW, JOHAB, MAC, OEM, RUSSIAN, SHIFTJIS, SYMBOL, THAI,
Bram Moolenaar68e65602019-05-26 21:33:31 +02001114 TURKISH and VIETNAMESE. Normally you would use "cDEFAULT".
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001115 qXX - quality XX. Valid quality names are: PROOF, DRAFT, ANTIALIASED,
Bram Moolenaar68e65602019-05-26 21:33:31 +02001116 NONANTIALIASED, CLEARTYPE and DEFAULT. Normally you would use
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001117 "qDEFAULT".
1118 Some quality values are not supported in legacy OSs.
1119- A '_' can be used in the place of a space, so you don't need to use
1120 backslashes to escape the spaces.
1121Examples: >
1122 :set guifont=courier_new:h12:w5:b:cRUSSIAN
1123 :set guifont=Andale_Mono:h7.5:w4.5
1124
1125See also |font-sizes|.
1126
1127Note on Weights: Fonts often come with a variety of weights. "Normal" weights
1128in Windows have a value of 400 and, left unspecified, this is the value that
1129will be used when attempting to find fonts. Windows will often match fonts
1130based on their weight with higher priority than the font name which means a
1131Book or Medium variant of a font might be used despite specifying a Light or
1132ExtraLight variant. If you are experiencing heavier weight substitution, then
1133explicitly setting a lower weight value may mitigate against this unwanted
1134substitution.
1135
1136
1137GUIFONTWIDE *gui-fontwide*
1138
1139When not empty, 'guifontwide' specifies a comma-separated list of fonts to be
Bram Moolenaar68e65602019-05-26 21:33:31 +02001140used for double-width characters. The first font that can be loaded is used.
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001141
1142Note: The size of these fonts must be exactly twice as wide as the one
Bram Moolenaar68e65602019-05-26 21:33:31 +02001143specified with 'guifont' and the same height. If there is a mismatch then the
1144text will not be drawn correctly.
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001145
1146All GUI versions but GTK+:
1147
Bram Moolenaar68e65602019-05-26 21:33:31 +02001148'guifontwide' is only used when 'encoding' is set to "utf-8" and 'guifontset'
1149is empty or invalid.
1150When 'guifont' is set and a valid font is found in it and 'guifontwide' is
1151empty Vim will attempt to find a matching double-width font and set
1152'guifontwide' to it.
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001153
1154GTK+ GUI only: *guifontwide_gtk*
1155
Bram Moolenaar68e65602019-05-26 21:33:31 +02001156If set and valid, 'guifontwide' is always used for double width characters,
1157even if 'encoding' is not set to "utf-8".
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001158Vim does not attempt to find an appropriate value for 'guifontwide'
Bram Moolenaar68e65602019-05-26 21:33:31 +02001159automatically. If 'guifontwide' is empty Pango/Xft will choose the font for
1160characters not available in 'guifont'. Thus you do not need to set
1161'guifontwide' at all unless you want to override the choice made by Pango/Xft.
Bram Moolenaarf720d0a2019-04-28 14:02:47 +02001162
1163Windows +multibyte only: *guifontwide_win_mbyte*
1164
1165If set and valid, 'guifontwide' is used for IME instead of 'guifont'.
1166
1167==============================================================================
11687. Extras *gui-extras*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169
1170This section describes other features which are related to the GUI.
1171
1172- With the GUI, there is no wait for one second after hitting escape, because
1173 the key codes don't start with <Esc>.
1174
1175- Typing ^V followed by a special key in the GUI will insert "<Key>", since
1176 the internal string used is meaningless. Modifiers may also be held down to
1177 get "<Modifiers-Key>".
1178
1179- In the GUI, the modifiers SHIFT, CTRL, and ALT (or META) may be used within
Bram Moolenaar68e65602019-05-26 21:33:31 +02001180 mappings of special keys and mouse events.
1181 E.g.: :map <M-LeftDrag> <LeftDrag>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182
1183- In the GUI, several normal keys may have modifiers in mappings etc, these
1184 are <Space>, <Tab>, <NL>, <CR>, <Esc>.
1185
1186- To check in a Vim script if the GUI is being used, you can use something
1187 like this: >
1188
1189 if has("gui_running")
1190 echo "yes, we have a GUI"
1191 else
1192 echo "Boring old console"
1193 endif
Bram Moolenaared203462004-06-16 11:19:22 +00001194< *setting-guifont*
1195- When you use the same vimrc file on various systems, you can use something
1196 like this to set options specifically for each type of GUI: >
1197
1198 if has("gui_running")
1199 if has("gui_gtk2")
1200 :set guifont=Luxi\ Mono\ 12
Bram Moolenaared203462004-06-16 11:19:22 +00001201 elseif has("x11")
1202 " Also for GTK 1
1203 :set guifont=*-lucidatypewriter-medium-r-normal-*-*-180-*-*-m-*-*
1204 elseif has("gui_win32")
1205 :set guifont=Luxi_Mono:h12:cANSI
1206 endif
1207 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001209A recommended Japanese font is MS Mincho. You can find info here:
1210http://www.lexikan.com/mincho.htm
1211
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212==============================================================================
Bram Moolenaarf720d0a2019-04-28 14:02:47 +020012138. Shell Commands *gui-shell*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214
1215For the X11 GUI the external commands are executed inside the gvim window.
1216See |gui-pty|.
1217
Bram Moolenaar68e65602019-05-26 21:33:31 +02001218WARNING: Executing an external command from the X11 GUI will not always work.
1219"normal" commands like "ls", "grep" and "make" mostly work fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220Commands that require an intelligent terminal like "less" and "ispell" won't
1221work. Some may even hang and need to be killed from another terminal. So be
1222careful!
1223
1224For the Win32 GUI the external commands are executed in a separate window.
1225See |gui-shell-win32|.
1226
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001227 vim:tw=78:sw=4:ts=8:noet:ft=help:norl: