blob: b3b0dd92bc81f977627aeefc1c6563187cd64df1 [file] [log] [blame]
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001*gui.txt* For Vim version 7.0aa. Last change: 2006 Feb 27
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|
146. Extras |gui-extras|
157. Shell Commands |gui-shell|
16
17Other GUI documentation:
18|gui_x11.txt| For specific items of the X11 GUI.
19|gui_w32.txt| For specific items of the Win32 GUI.
20
21{Vi does not have any of these commands}
22
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
28GUI", where "xxx" is X11-Motif, X11-Athena, Photon, GTK, GTK2, etc., or
29"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
38 *gui-init* *gvimrc* *.gvimrc* *_gvimrc*
39When the GUI starts up initializations are carried out, in this order:
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000040- The 'term' option is set to "builgin_gui" and terminal options are reset to
41 their default value for the GUI |terminal-options|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042- If the system menu file exists, it is sourced. The name of this file is
43 normally "$VIMRUNTIME/menu.vim". You can check this with ":version". Also
44 see |$VIMRUNTIME|. To skip loading the system menu include 'M' in
45 'guioptions'. *buffers-menu* *no_buffers_menu*
46 The system menu file includes a "Buffers" menu. If you don't want this, set
47 the "no_buffers_menu" variable in your .vimrc (not .gvimrc!): >
48 :let no_buffers_menu = 1
49< NOTE: Switching on syntax highlighting also loads the menu file, thus
50 disabling the Buffers menu must be done before ":syntax on".
51 The path names are truncated to 35 characters. You can truncate them at a
52 different length, for example 50, like this: >
53 :let bmenu_max_pathlen = 50
54- If the "-U {gvimrc}" command-line option has been used when starting Vim,
55 the {gvimrc} file will be read for initializations. The following
Bram Moolenaar81695252004-12-29 20:58:21 +000056 initializations are skipped. When {gvimrc} is "NONE" no file will be read
57 for initializations.
Bram Moolenaar071d4272004-06-13 20:20:40 +000058- For Unix and MS-Windows, if the system gvimrc exists, it is sourced. The
59 name of this file is normally "$VIM/gvimrc". You can check this with
60 ":version". Also see |$VIM|.
61- The following are tried, and only the first one that exists is used:
62 - If the GVIMINIT environment variable exists and is not empty, it is
63 executed as an Ex command.
64 - If the user gvimrc file exists, it is sourced. The name of this file is
65 normally "$HOME/.gvimrc". You can check this with ":version".
66 - For Win32, when $HOME is not set, "$VIM\_gvimrc" is used.
67 - When a "_gvimrc" file is not found, ".gvimrc" is tried too. And vice
68 versa.
69- If the 'exrc' option is set (which is NOT the default) the file ./.gvimrc
70 is sourced, if it exists and isn't the same file as the system or user
71 gvimrc file. If this file is not owned by you, some security restrictions
72 apply. When ".gvimrc" is not found, "_gvimrc" is tried too. For Macintosh
73 and DOS/Win32 "_gvimrc" is tried first.
74
75NOTE: All but the first one are not carried out if Vim was started with
76"-u NONE" and no "-U" argument was given, or when started with "-U NONE".
77
78All this happens AFTER the normal Vim initializations, like reading your
79.vimrc file. See |initialization|.
80But the GUI window is only opened after all the initializations have been
81carried out. If you want some commands to be executed just after opening the
82GUI window, use the |GUIEnter| autocommand event. Example: >
Bram Moolenaar648120b2005-08-08 21:57:35 +000083 :autocmd GUIEnter * winpos 100 50
Bram Moolenaar071d4272004-06-13 20:20:40 +000084
85You can use the gvimrc files to set up your own customized menus (see |:menu|)
86and initialize other things that you may want to set up differently from the
87terminal version.
88
89Recommended place for your personal GUI initializations:
90 Unix $HOME/.gvimrc
91 OS/2 $HOME/.gvimrc or $VIM/.gvimrc
92 MS-DOS and Win32 $HOME/_gvimrc or $VIM/_gvimrc
93 Amiga s:.gvimrc or $VIM/.gvimrc
94
95There are a number of options which only have meaning in the GUI version of
96Vim. These are 'guicursor', 'guifont', 'guipty' and 'guioptions'. They are
97documented in |options.txt| with all the other options.
98
Bram Moolenaar843ee412004-06-30 16:16:41 +000099If using the Motif or Athena version of the GUI (but not for the KDE, GTK+ or
100Win32 version), a number of X resources are available. See |gui-resources|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
102Another way to set the colors for different occasions is with highlight
103groups. The "Normal" group is used to set the background and foreground
104colors. Example (which looks nice): >
105
106 :highlight Normal guibg=grey90
107
108The "guibg" and "guifg" settings override the normal background and
109foreground settings. The other settings for the Normal highlight group are
110not used. Use the 'guifont' option to set the font.
111
112Also check out the 'guicursor' option, to set the colors for the cursor in
113various modes.
114
115Vim tries to make the window fit on the screen when it starts up. This avoids
116that you can't see part of it. On the X Window System this requires a bit of
117guesswork. You can change the height that is used for the window title and a
118task bar with the 'guiheadroom' option.
119
120 *:winp* *:winpos* *E188*
121:winp[os]
122 Display current position of the top left corner of the GUI vim
123 window in pixels. Does not work in all versions.
124
125:winp[os] {X} {Y} *E466*
126 Put the GUI vim window at the given {X} and {Y} coordinates.
127 The coordinates should specify the position in pixels of the
128 top left corner of the window. Does not work in all versions.
129 Does work in an (new) xterm |xterm-color|.
130 When the GUI window has not been opened yet, the values are
131 remembered until the window is opened. The position is
132 adjusted to make the window fit on the screen (if possible).
133
134 *:win* *:winsize* *E465*
135:win[size] {width} {height}
136 Set the window height to {width} by {height} characters.
137 Obsolete, use ":set lines=11 columns=22".
138 If you get less lines than expected, check the 'guiheadroom'
139 option.
140
141If you are running the X Window System, you can get information about the
142window Vim is running in with this command: >
143 :!xwininfo -id $WINDOWID
144
145==============================================================================
1462. Scrollbars *gui-scrollbars*
147
Bram Moolenaarfd371682005-01-14 21:42:54 +0000148There are vertical scrollbars and a horizontal scrollbar. You may
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149configure which ones appear with the 'guioptions' option.
150
151The interface looks like this (with ":set guioptions=mlrb"):
152
153 +------------------------------+
154 | File Edit Help | <- Menu bar (m)
155 +-+--------------------------+-+
156 |^| |^|
157 |#| Text area. |#|
158 | | | |
159 |v|__________________________|v|
160 Normal status line -> |-+ File.c 5,2 +-|
161 between Vim windows |^|""""""""""""""""""""""""""|^|
162 | | | |
163 | | Another file buffer. | |
164 | | | |
165 |#| |#|
166 Left scrollbar (l) -> |#| |#| <- Right
167 |#| |#| scrollbar (r)
168 | | | |
169 |v| |v|
170 +-+--------------------------+-+
171 | |< #### >| | <- Bottom
172 +-+--------------------------+-+ scrollbar (b)
173
174Any of the scrollbar or menu components may be turned off by not putting the
175appropriate letter in the 'guioptions' string. The bottom scrollbar is
176only useful when 'nowrap' is set.
177
178
179VERTICAL SCROLLBARS *gui-vert-scroll*
180
181Each Vim window has a scrollbar next to it which may be scrolled up and down
182to move through the text in that buffer. The size of the scrollbar-thumb
183indicates the fraction of the buffer which can be seen in the window.
184When the scrollbar is dragged all the way down, the last line of the file
185will appear in the top of the window.
186
187If a window is shrunk to zero height (by the growth of another window) its
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000188scrollbar disappears. It reappears when the window is restored.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189
190If a window is vertically split, it will get a scrollbar when it is the
191current window and when, taking the middle of the current window and drawing a
192vertical line, this line goes through the window.
193When there are scrollbars on both sides, and the middle of the current window
194is on the left half, the right scrollbar column will contain scrollbars for
195the rightmost windows. The same happens on the other side.
196
197
198HORIZONTAL SCROLLBARS *gui-horiz-scroll*
199
200The horizontal scrollbar (at the bottom of the Vim GUI) may be used to
201scroll text sideways when the 'wrap' option is turned off. The
202scrollbar-thumb size is such that the text of the longest visible line may be
203scrolled as far as possible left and right. The cursor is moved when
204necessary, it must remain on a visible character (unless 'virtualedit' is
205set).
206
Bram Moolenaarfd371682005-01-14 21:42:54 +0000207Computing the length of the longest visible line takes quite a bit of
208computation, and it has to be done every time something changes. If this
209takes too much time or you don't like the cursor jumping to another line,
210include the 'h' flag in 'guioptions'. Then the scrolling is limited by the
211text of the current cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212
213 *athena-intellimouse*
214If you have an Intellimouse and an X server that supports using the wheel,
215then you can use the wheel to scroll the text up and down in gvim. This works
216with XFree86 4.0 and later, and with some older versions when you add patches.
217See |scroll-mouse-wheel|.
218
219For older versions of XFree86 you must patch your X server. The following
220page has a bit of information about using the Intellimouse on Linux as well as
221links to the patches and X server binaries (may not have the one you need
222though):
223 http://www.inria.fr/koala/colas/mouse-wheel-scroll/
224
225==============================================================================
2263. Mouse Control *gui-mouse*
227
228The mouse only works if the appropriate flag in the 'mouse' option is set.
229When the GUI is switched on, and 'mouse' wasn't set yet, the 'mouse' option is
230automatically set to "a", enabling it for all modes except for the
231|hit-enter| prompt. If you don't want this, a good place to change the
232'mouse' option is the "gvimrc" file.
233
234Other options that are relevant:
235'mousefocus' window focus follows mouse pointer |gui-mouse-focus|
236'mousemodel' what mouse button does which action
237'mousehide' hide mouse pointer while typing text
238'selectmode' whether to start Select mode or Visual mode
239
240A quick way to set these is with the ":behave" command.
241 *:behave* *:be*
242:be[have] {model} Set behavior for mouse and selection. Valid
243 arguments are:
244 mswin MS-Windows behavior
245 xterm Xterm behavior
246
247 Using ":behave" changes these options:
248 option mswin xterm ~
249 'selectmode' "mouse,key" ""
250 'mousemodel' "popup" "extend"
251 'keymodel' "startsel,stopsel" ""
252 'selection' "exclusive" "inclusive"
253
254In the $VIMRUNTIME directory, there is a script called |mswin.vim|, which will
255also map a few keys to the MS-Windows cut/copy/paste commands. This is NOT
256compatible, since it uses the CTRL-V, CTRL-X and CTRL-C keys. If you don't
257mind, use this command: >
258 :so $VIMRUNTIME/mswin.vim
259
260For scrolling with a wheel on a mouse, see |scroll-mouse-wheel|.
261
262
2633.1 Moving Cursor with Mouse *gui-mouse-move*
264
265Click the left mouse button somewhere in a text buffer where you want the
266cursor to go, and it does!
267This works in when 'mouse' contains ~
268Normal mode 'n' or 'a'
269Visual mode 'v' or 'a'
270Insert mode 'i' or 'a'
271
272Select mode is handled like Visual mode.
273
274You may use this with an operator such as 'd' to delete text from the current
275cursor position to the position you point to with the mouse. That is, you hit
276'd' and then click the mouse somewhere.
277
278 *gui-mouse-focus*
279The 'mousefocus' option can be set to make the keyboard focus follow the
280mouse pointer. This means that the window where the mouse pointer is, is the
281active window. Warning: this doesn't work very well when using a menu,
282because the menu command will always be applied to the top window.
283
284If you are on the ':' line (or '/' or '?'), then clicking the left or right
285mouse button will position the cursor on the ':' line (if 'mouse' contains
286'c', 'a' or 'A').
287
288In any situation the middle mouse button may be clicked to paste the current
289selection.
290
291
2923.2 Selection with Mouse *gui-mouse-select*
293
294The mouse can be used to start a selection. How depends on the 'mousemodel'
295option:
296'mousemodel' is "extend": use the right mouse button
297'mousemodel' is "popup": use the left mouse button, while keeping the Shift
298key pressed.
299
300If there was no selection yet, this starts a selection from the old cursor
301position to the position pointed to with the mouse. If there already is a
302selection then the closest end will be extended.
303
304If 'selectmode' contains "mouse", then the selection will be in Select mode.
305This means that typing normal text will replace the selection. See
306|Select-mode|. Otherwise, the selection will be in Visual mode.
307
308Double clicking may be done to make the selection word-wise, triple clicking
309makes it line-wise, and quadruple clicking makes it rectangular block-wise.
310
311See |gui-selections| on how the selection is used.
312
313
3143.3 Other Text Selection with Mouse *gui-mouse-modeless*
315 *modeless-selection*
316A different kind of selection is used when:
317- in Command-line mode
318- in the Command-line window and pointing in another window
319- at the |hit-enter| prompt
320- whenever the current mode is not in the 'mouse' option
321- when holding the CTRL and SHIFT keys in the GUI
322Since Vim continues like the selection isn't there, and there is no mode
323associated with the selection, this is called modeless selection. Any text in
324the Vim window can be selected. Select the text by pressing the left mouse
325button at the start, drag to the end and release. To extend the selection,
326use the right mouse button when 'mousemodel' is "extend", or the left mouse
327button with the shift key pressed when 'mousemodel' is "popup".
328The middle mouse button pastes the text.
329The selection is removed when the selected text is scrolled or changed.
330On the command line CTRL-Y can be used to copy the selection into the
331clipboard. To do this from Insert mode, use CTRL-O : CTRL-Y <CR>.
332
333
3343.4 Using Mouse on Status Lines *gui-mouse-status*
335
336Clicking the left or right mouse button on the status line below a Vim
337window makes that window the current window. This actually happens on button
338release (to be able to distinguish a click from a drag action).
339
340With the left mouse button a status line can be dragged up and down, thus
341resizing the windows above and below it. This does not change window focus.
342
343The same can be used on the vertical separator: click to give the window left
344of it focus, drag left and right to make windows wider and narrower.
345
346
3473.5 Various Mouse Clicks *gui-mouse-various*
348
349 <S-LeftMouse> Search forward for the word under the mouse click.
350 When 'mousemodel' is "popup" this starts or extends a
351 selection.
352 <S-RightMouse> Search backward for the word under the mouse click.
353 <C-LeftMouse> Jump to the tag name under the mouse click.
354 <C-RightMouse> Jump back to position before the previous tag jump
355 (same as "CTRL-T")
356
357
3583.6 Mouse Mappings *gui-mouse-mapping*
359
360The mouse events, complete with modifiers, may be mapped. Eg: >
361 :map <S-LeftMouse> <RightMouse>
362 :map <S-LeftDrag> <RightDrag>
363 :map <S-LeftRelease> <RightRelease>
364 :map <2-S-LeftMouse> <2-RightMouse>
365 :map <2-S-LeftDrag> <2-RightDrag>
366 :map <2-S-LeftRelease> <2-RightRelease>
367 :map <3-S-LeftMouse> <3-RightMouse>
368 :map <3-S-LeftDrag> <3-RightDrag>
369 :map <3-S-LeftRelease> <3-RightRelease>
370 :map <4-S-LeftMouse> <4-RightMouse>
371 :map <4-S-LeftDrag> <4-RightDrag>
372 :map <4-S-LeftRelease> <4-RightRelease>
373These mappings make selection work the way it probably should in a Motif
374application, with shift-left mouse allowing for extending the visual area
375rather than the right mouse button.
376
377Mouse mapping with modifiers does not work for modeless selection.
378
379
3803.7 Drag and drop *drag-n-drop*
381
382You can drag and drop one or more files into the Vim window, where they will
383be opened as if a |:drop| command was used.
384
385If you hold down Shift while doing this, Vim changes to the first dropped
386file's directory. If you hold Ctrl Vim will always split a new window for the
387file. Otherwise it's only done if the current buffer has been changed.
388
389You can also drop a directory on Vim. This starts the explorer plugin for
390that directory (assuming it was enabled, otherwise you'll get an error
391message). Keep Shift pressed to change to the directory instead.
392
393If Vim happens to be editing a command line, the names of the dropped files
394and directories will be inserted at the cursor. This allows you to use these
395names with any Ex command. Special characters (space, tab, double quote and
396'|'; backslash on non-MS-Windows systems) will be escaped.
397
398==============================================================================
3994. Making GUI Selections *gui-selections*
400
401 *quotestar*
402You may make selections with the mouse (see |gui-mouse-select|), or by using
403Vim's Visual mode (see |v|). If 'a' is present in 'guioptions', then
404whenever a selection is started (Visual or Select mode), or when the selection
405is changed, Vim becomes the owner of the windowing system's primary selection
406(on MS-Windows the |gui-clipboard| is used; under X11, the |x11-selection| is
407used - you should read whichever of these is appropriate now).
408
409 *clipboard*
410There is a special register for storing this selection, it is the "*
411register. Nothing is put in here unless the information about what text is
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000412selected is about to change (e.g. with a left mouse click somewhere), or when
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413another application wants to paste the selected text. Then the text is put
414in the "* register. For example, to cut a line and make it the current
415selection/put it on the clipboard: >
416
417 "*dd
418
419Similarly, when you want to paste a selection from another application, e.g.,
420by clicking the middle mouse button, the selection is put in the "* register
421first, and then 'put' like any other register. For example, to put the
422selection (contents of the clipboard): >
423
424 "*p
425
426When using this register under X11, also see |x11-selection|. This also
427explains the related "+ register.
428
429Note that when pasting text from one Vim into another separate Vim, the type
430of selection (character, line, or block) will also be copied. For other
431applications the type is always character. However, if the text gets
432transferred via the |x11-cut-buffer|, the selection type is ALWAYS lost.
433
434When the "unnamed" string is included in the 'clipboard' option, the unnamed
435register is the same as the "* register. Thus you can yank to and paste the
436selection without prepending "* to commands.
437
438==============================================================================
4395. Menus *menus*
440
441For an introduction see |usr_42.txt| in the user manual.
442
443
4445.1 Using Menus *using-menus*
445
446Basically, menus can be used just like mappings. You can define your own
447menus, as many as you like.
448Long-time Vim users won't use menus much. But the power is in adding your own
449menus and menu items. They are most useful for things that you can't remember
450what the key sequence was.
451
452For creating menus in a different language, see |:menutrans|.
453
454 *menu.vim*
455The default menus are read from the file "$VIMRUNTIME/menu.vim". See
456|$VIMRUNTIME| for where the path comes from. You can set up your own menus.
457Starting off with the default set is a good idea. You can add more items, or,
458if you don't like the defaults at all, start with removing all menus
459|:unmenu-all|. You can also avoid the default menus being loaded by adding
460this line to your .vimrc file (NOT your .gvimrc file!): >
461 :let did_install_default_menus = 1
462If you also want to avoid the Syntax menu: >
463 :let did_install_syntax_menu = 1
464If you do want the Syntax menu but not all the entries for each available
465syntax file (which take quite a bit of time to load): >
466 :let skip_syntax_sel_menu = 1
467<
468 *console-menus*
469Although this documentation is in the GUI section, you can actually use menus
470in console mode too. You will have to load |menu.vim| explicitly then, it is
471not done by default. You can use the |:emenu| command and command-line
472completion with 'wildmenu' to access the menu entries almost like a real menu
473system. To do this, put these commands in your .vimrc file: >
474 :source $VIMRUNTIME/menu.vim
475 :set wildmenu
476 :set cpo-=<
477 :set wcm=<C-Z>
478 :map <F4> :emenu <C-Z>
479Pressing <F4> will start the menu. You can now use the cursor keys to select
480a menu entry. Hit <Enter> to execute it. Hit <Esc> if you want to cancel.
481This does require the |+menu| feature enabled at compile time.
482
483 *tear-off-menus*
Bram Moolenaar843ee412004-06-30 16:16:41 +0000484KDE, GTK+ and Motif support Tear-off menus. These are sort of sticky menus or
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485pop-up menus that are present all the time. If the resizing does not work
486correctly, this may be caused by using something like "Vim*geometry" in the
487defaults. Use "Vim.geometry" instead.
488
489The Win32 GUI version emulates Motif's tear-off menus. Actually, a Motif user
490will spot the differences easily, but hopefully they're just as useful. You
491can also use the |:tearoff| command together with |hidden-menus| to create
492floating menus that do not appear on the main menu bar.
493
494
4955.2 Creating New Menus *creating-menus*
496
497 *:me* *:menu* *:noreme* *:noremenu*
498 *:am* *:amenu* *:an* *:anoremenu*
499 *:nme* *:nmenu* *:nnoreme* *:nnoremenu*
500 *:ome* *:omenu* *:onoreme* *:onoremenu*
501 *:vme* *:vmenu* *:vnoreme* *:vnoremenu*
502 *:ime* *:imenu* *:inoreme* *:inoremenu*
503 *:cme* *:cmenu* *:cnoreme* *:cnoremenu*
504 *E330* *E327* *E331* *E336* *E333*
505 *E328* *E329* *E337*
506To create a new menu item, use the ":menu" commands. They are mostly like
507the ":map" set of commands but the first argument is a menu item name, given
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000508as a path of menus and submenus with a '.' between them, e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509
510 :menu File.Save :w<CR>
511 :inoremenu File.Save <C-O>:w<CR>
512 :menu Edit.Big\ Changes.Delete\ All\ Spaces :%s/[ ^I]//g<CR>
513
514This last one will create a new item in the menu bar called "Edit", holding
515the mouse button down on this will pop up a menu containing the item
516"Big Changes", which is a sub-menu containing the item "Delete All Spaces",
517which when selected, performs the operation.
518
519Special characters in a menu name:
520
521 & The next character is the shortcut key. Make sure each
522 shortcut key is only used once in a (sub)menu. If you want to
523 insert a literal "&" in the menu name use "&&".
524 <Tab> Separates the menu name from right-aligned text. This can be
525 used to show the equivalent typed command. The text "<Tab>"
526 can be used here for convenience. If you are using a real
527 Tab, don't forget to put a backslash before it!
528Example: >
529
530 :amenu &File.&Open<Tab>:e :browse e<CR>
531
532[typed literally]
533With the shortcut "F" (while keeping the <Alt> key pressed), and then "O",
534this menu can be used. The second part is shown as "Open :e". The ":e"
535is right aligned, and the "O" is underlined, to indicate it is the shortcut.
536
537The ":amenu" command can be used to define menu entries for all modes at once.
538To make the command work correctly, a character is automatically inserted for
539some modes:
540 mode inserted appended ~
541 Normal nothing nothing
542 Visual <C-C> <C-\><C-G>
543 Insert <C-O>
544 Cmdline <C-C> <C-\><C-G>
545 Op-pending <C-C> <C-\><C-G>
546
547Appending CTRL-\ CTRL-G is for going back to insert mode when 'insertmode' is
548set. |CTRL-\_CTRL-G|
549
550Example: >
551
552 :amenu File.Next :next^M
553
554is equal to: >
555
556 :nmenu File.Next :next^M
557 :vmenu File.Next ^C:next^M^\^G
558 :imenu File.Next ^O:next^M
559 :cmenu File.Next ^C:next^M^\^G
560 :omenu File.Next ^C:next^M^\^G
561
562Careful: In Insert mode this only works for a SINGLE Normal mode command,
563because of the CTRL-O. If you have two or more commands, you will need to use
564the ":imenu" command. For inserting text in any mode, you can use the
565expression register: >
566
567 :amenu Insert.foobar "='foobar'<CR>P
568
569Note that the '<' and 'k' flags in 'cpoptions' also apply here (when
570included they make the <> form and raw key codes not being recognized).
571
572Note that <Esc> in Cmdline mode executes the command, like in a mapping. This
573is Vi compatible. Use CTRL-C to quit Cmdline mode.
574
575 *:menu-<silent>* *:menu-silent*
576To define a menu which will not be echoed on the command line, add
577"<silent>" as the first argument. Example: >
578 :menu <silent> Settings.Ignore\ case :set ic<CR>
579The ":set ic" will not be echoed when using this menu. Messages from the
580executed command are still given though. To shut them up too, add a ":silent"
581in the executed command: >
582 :menu <silent> Search.Header :exe ":silent normal /Header\r"<CR>
583<
584 *:menu-<script>* *:menu-script*
585The "to" part of the menu will be inspected for mappings. If you don't want
586this, use the ":noremenu" command (or the similar one for a specific mode).
587If you do want to use script-local mappings, add "<script>" as the very first
588argument to the ":menu" command or after "<silent>".
589
590 *menu-priority*
591You can give a priority to a menu. Menus with a higher priority go more to
592the right. The priority is given as a number before the ":menu" command.
593Example: >
594 :80menu Buffer.next :bn<CR>
595
596The default menus have these priorities:
597 File 10
598 Edit 20
599 Tools 40
600 Syntax 50
601 Buffers 60
602 Window 70
603 Help 9999
604
605When no or zero priority is given, 500 is used.
606The priority for the PopUp menu is not used.
607
608The Help menu will be placed on the far right side of the menu bar on systems
609which support this (Motif and GTK+). For GTK+ 2, this is not done anymore
610because right-aligning the Help menu is now discouraged UI design.
611
612You can use a priority higher than 9999, to make it go after the Help menu,
613but that is non-standard and is discouraged. The highest possible priority is
614about 32000. The lowest is 1.
615
616 *sub-menu-priority*
617The same mechanism can be used to position a sub-menu. The priority is then
618given as a dot-separated list of priorities, before the menu name: >
619 :menu 80.500 Buffer.next :bn<CR>
620Giving the sub-menu priority is only needed when the item is not to be put
621in a normal position. For example, to put a sub-menu before the other items: >
622 :menu 80.100 Buffer.first :brew<CR>
623Or to put a sub-menu after the other items, and further items with default
624priority will be put before it: >
625 :menu 80.900 Buffer.last :blast<CR>
626When a number is missing, the default value 500 will be used: >
627 :menu .900 myMenu.test :echo "text"<CR>
628The menu priority is only used when creating a new menu. When it already
629existed, e.g., in another mode, the priority will not change. Thus, the
630priority only needs to be given the first time a menu is used.
631An exception is the PopUp menu. There is a separate menu for each mode
632(Normal, Op-pending, Visual, Insert, Cmdline). The order in each of these
633menus can be different. This is different from menu-bar menus, which have
634the same order for all modes.
635NOTE: sub-menu priorities currently don't work for all versions of the GUI.
636
637 *menu-separator* *E332*
638Menu items can be separated by a special item that inserts some space between
639items. Depending on the system this is displayed as a line or a dotted line.
640These items must start with a '-' and end in a '-'. The part in between is
641used to give it a unique name. Priorities can be used as with normal items.
642Example: >
643 :menu Example.item1 :do something
644 :menu Example.-Sep- :
645 :menu Example.item2 :do something different
646Note that the separator also requires a rhs. It doesn't matter what it is,
647because the item will never be selected. Use a single colon to keep it
648simple.
649
650 *gui-toolbar*
Bram Moolenaar843ee412004-06-30 16:16:41 +0000651The toolbar is currently available in the Win32, Athena, Motif, GTK+ (X11),
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000652KDE and Photon GUI. It should turn up in other GUIs in due course. The
653default toolbar is setup in menu.vim.
654The display of the toolbar is controlled by the 'guioptions' letter 'T'. You
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655can thus have menu & toolbar together, or either on its own, or neither.
656The appearance is controlled by the 'toolbar' option. You can chose between
657an image, text or both.
658
659 *toolbar-icon*
660The toolbar is defined as a special menu called ToolBar, which only has one
661level. Vim interprets the items in this menu as follows:
6621) If an "icon=" argument was specified, the file with this name is used.
663 The file can either be specified with the full path or with the base name.
664 In the last case it is searched for in the "bitmaps" directory in
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000665 'runtimepath', like in point 3. Examples: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 :amenu icon=/usr/local/pixmaps/foo_icon.xpm ToolBar.Foo :echo "Foo"<CR>
667 :amenu icon=FooIcon ToolBar.Foo :echo "Foo"<CR>
668< Note that in the first case the extension is included, while in the second
669 case it is omitted.
670 If the file cannot be opened the next points are tried.
671 A space in the file name must be escaped with a backslash.
672 A menu priority must come _after_ the icon argument: >
673 :amenu icon=foo 1.42 ToolBar.Foo :echo "42!"<CR>
6742) An item called 'BuiltIn##', where ## is a number, is taken as number ## of
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000675 the built-in bitmaps available in Vim. Currently there are 31 numbered
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 from 0 to 30 which cover most common editing operations |builtin-tools|. >
677 :amenu ToolBar.BuiltIn22 :call SearchNext("back")<CR>
6783) An item with another name is first searched for in the directory
679 "bitmaps" in 'runtimepath'. If found, the bitmap file is used as the
680 toolbar button image. Note that the exact filename is OS-specific: For
681 example, under Win32 the command >
682 :amenu ToolBar.Hello :echo "hello"<CR>
683< would find the file 'hello.bmp'. Under GTK+/X11 it is 'Hello.xpm'. With
684 GTK+ 2 the files 'Hello.png', 'Hello.xpm' and 'Hello.bmp' are checked for
685 existence, and the first one found would be used.
686 For MS-Windows and GTK+ 2 the bitmap is scaled to fit the button. For
687 MS-Windows a size of 18 by 18 pixels works best.
688 For MS-Windows the bitmap should have 16 colors with the standard palette.
689 The light grey pixels will be changed to the Window frame color and the
690 dark grey pixels to the window shadow color. More colors might also work,
691 depending on your system.
6924) If the bitmap is still not found, Vim checks for a match against its list
693 of built-in names. Each built-in button image has a name.
694 So the command >
695 :amenu ToolBar.Open :e
696< will show the built-in "open a file" button image if no open.bmp exists.
697 All the built-in names can be seen used in menu.vim.
6985) If all else fails, a blank, but functioning, button is displayed.
699
700 *builtin-tools*
701nr Name Normal action ~
70200 New open new window
70301 Open browse for file to open in current window
70402 Save write buffer to file
70503 Undo undo last change
70604 Redo redo last undone change
70705 Cut delete selected text to clipboard
70806 Copy copy selected text to clipboard
70907 Paste paste text from clipboard
71008 Print print current buffer
71109 Help open a buffer on Vim's builtin help
71210 Find start a search command
71311 SaveAll write all modified buffers to file
71412 SaveSesn write session file for current situation
71513 NewSesn write new session file
71614 LoadSesn load session file
71715 RunScript browse for file to run as a Vim script
71816 Replace prompt for substitute command
71917 WinClose close current window
72018 WinMax make current window use many lines
72119 WinMin make current window use few lines
72220 WinSplit split current window
72321 Shell start a shell
72422 FindPrev search again, backward
72523 FindNext search again, forward
72624 FindHelp prompt for word to search help for
72725 Make run make and jump to first error
72826 TagJump jump to tag under the cursor
72927 RunCtags build tags for files in current directory
73028 WinVSplit split current window vertically
73129 WinMaxWidth make current window use many columns
73230 WinMinWidth make current window use few columns
733
734 *hidden-menus* *win32-hidden-menus*
735In the Win32 and GTK+ GUI, starting a menu name with ']' excludes that menu
736from the main menu bar. You must then use the |:popup| or |:tearoff| command
737to display it.
738
739 *popup-menu*
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000740In the Win32, KDE, GTK+, Motif, Athena and Photon GUI, you can define the
741special menu "PopUp". This is the menu that is displayed when the right mouse
742button is pressed, if 'mousemodel' is set to popup or popup_setpos.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
744
7455.3 Showing What Menus Are Mapped To *showing-menus*
746
747To see what an existing menu is mapped to, use just one argument after the
748menu commands (just like you would with the ":map" commands). If the menu
749specified is a submenu, then all menus under that hierarchy will be shown.
750If no argument is given after :menu at all, then ALL menu items are shown
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000751for the appropriate mode (e.g., Command-line mode for :cmenu).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752
753Special characters in the list, just before the rhs:
754* The menu was defined with "nore" to disallow remapping.
755& The menu was defined with "<script>" to allow remapping script-local
756 mappings only.
757- The menu was disabled.
758
759Note that hitting <Tab> while entering a menu name after a menu command may
760be used to complete the name of the menu item.
761
762
7635.4 Executing Menus *execute-menus*
764
765 *:em* *:emenu* *E334* *E335*
766:[range]em[enu] {menu} Execute {menu} from the command line.
767 The default is to execute the Normal mode
768 menu. If a range is specified, it executes
769 the Visual mode menu.
770 If used from <c-o>, it executes the
771 insert-mode menu Eg: >
772 :emenu File.Exit
773
774If the console-mode vim has been compiled with WANT_MENU defined, you can
775use :emenu to access useful menu items you may have got used to from GUI
776mode. See 'wildmenu' for an option that works well with this. See
777|console-menus| for an example.
778
779When using a range, if the lines match with '<,'>, then the menu is executed
780using the last visual selection.
781
782
7835.5 Deleting Menus *delete-menus*
784
785 *:unme* *:unmenu*
786 *:aun* *:aunmenu*
787 *:nunme* *:nunmenu*
788 *:ounme* *:ounmenu*
789 *:vunme* *:vunmenu*
790 *:iunme* *:iunmenu*
791 *:cunme* *:cunmenu*
792To delete a menu item or a whole submenu, use the unmenu commands, which are
793analogous to the unmap commands. Eg: >
794 :unmenu! Edit.Paste
795
796This will remove the Paste item from the Edit menu for Insert and
797Command-line modes.
798
799Note that hitting <Tab> while entering a menu name after an umenu command
800may be used to complete the name of the menu item for the appropriate mode.
801
802To remove all menus use: *:unmenu-all* >
803 :unmenu * " remove all menus in Normal and visual mode
804 :unmenu! * " remove all menus in Insert and Command-line mode
805 :aunmenu * " remove all menus in all modes
806
807If you want to get rid of the menu bar: >
808 :set guioptions-=m
809
810
8115.6 Disabling Menus *disable-menus*
812
813 *:menu-disable* *:menu-enable*
814If you do not want to remove a menu, but disable it for a moment, this can be
815done by adding the "enable" or "disable" keyword to a ":menu" command.
816Examples: >
817 :menu disable &File.&Open\.\.\.
818 :amenu enable *
819 :amenu disable &Tools.*
820
821The command applies to the modes as used with all menu commands. Note that
822characters like "&" need to be included for translated names to be found.
823When the argument is "*", all menus are affected. Otherwise the given menu
824name and all existing submenus below it are affected.
825
826
8275.7 Examples for Menus *menu-examples*
828
829Here is an example on how to add menu items with menu's! You can add a menu
830item for the keyword under the cursor. The register "z" is used. >
831
832 :nmenu Words.Add\ Var wb"zye:menu! Words.<C-R>z <C-R>z<CR>
833 :nmenu Words.Remove\ Var wb"zye:unmenu! Words.<C-R>z<CR>
834 :vmenu Words.Add\ Var "zy:menu! Words.<C-R>z <C-R>z <CR>
835 :vmenu Words.Remove\ Var "zy:unmenu! Words.<C-R>z<CR>
836 :imenu Words.Add\ Var <Esc>wb"zye:menu! Words.<C-R>z <C-R>z<CR>a
837 :imenu Words.Remove\ Var <Esc>wb"zye:unmenu! Words.<C-R>z<CR>a
838
839(the rhs is in <> notation, you can copy/paste this text to try out the
840mappings, or put these lines in your gvimrc; "<C-R>" is CTRL-R, "<CR>" is
841the <CR> key. |<>|)
842
843
8445.8 Tooltips & Menu tips
845
846See section |42.4| in the user manual.
847
848 *:tmenu* *:tm*
849:tm[enu] {menupath} {rhs} Define a tip for a menu or tool. {only in
850 X11 and Win32 GUI}
851
852:tm[enu] [menupath] List menu tips. {only in X11 and Win32 GUI}
853
854 *:tunmenu* *:tu*
855:tu[nmenu] {menupath} Remove a tip for a menu or tool.
856 {only in X11 and Win32 GUI}
857
858When a tip is defined for a menu item, it appears in the command-line area
859when the mouse is over that item, much like a standard Windows menu hint in
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000860the status bar. (Except when Vim is in Command-line mode, when of course
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861nothing is displayed.)
862When a tip is defined for a ToolBar item, it appears as a tooltip when the
863mouse pauses over that button, in the usual fashion. Use the |hl-Tooltip|
864highlight group to change its colors.
865
866A "tip" can be defined for each menu item. For example, when defining a menu
867item like this: >
868 :amenu MyMenu.Hello :echo "Hello"<CR>
869The tip is defined like this: >
870 :tmenu MyMenu.Hello Displays a greeting.
871And delete it with: >
872 :tunmenu MyMenu.Hello
873
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000874Tooltips are currently only supported for the X11 and Win32 GUI. However, they
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875should appear for the other gui platforms in the not too distant future.
876
877The ":tmenu" command works just like other menu commands, it uses the same
878arguments. ":tunmenu" deletes an existing menu tip, in the same way as the
879other unmenu commands.
880
881If a menu item becomes invalid (i.e. its actions in all modes are deleted) Vim
882deletes the menu tip (and the item) for you. This means that :aunmenu deletes
883a menu item - you don't need to do a :tunmenu as well.
884
885
8865.9 Popup Menus
887
888In the Win32 and GTK+ GUI, you can cause a menu to popup at the cursor.
889This behaves similarly to the PopUp menus except that any menu tree can
890be popped up.
891
892This command is for backwards compatibility, using it is discouraged, because
893it behaves in a strange way.
894
895 *:popup* *:popu*
896:popu[p] {name} Popup the menu {name}. The menu named must
897 have at least one subentry, but need not
898 appear on the menu-bar (see |hidden-menus|).
899 {only available for Win32 and GTK GUI}
900
Bram Moolenaar97409f12005-07-08 22:17:29 +0000901:popu[p]! {name} Like above, but use the position of the mouse
902 pointer instead of the cursor.
903
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904Example: >
905 :popup File
Bram Moolenaar97409f12005-07-08 22:17:29 +0000906will make the "File" menu (if there is one) appear at the text cursor (mouse
907pointer if ! was used). >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908
909 :amenu ]Toolbar.Make :make<CR>
910 :popup ]Toolbar
911This creates a popup menu that doesn't exist on the main menu-bar.
912
913Note that a menu that starts with ']' will not be displayed.
914
915==============================================================================
9166. Extras *gui-extras*
917
918This section describes other features which are related to the GUI.
919
920- With the GUI, there is no wait for one second after hitting escape, because
921 the key codes don't start with <Esc>.
922
923- Typing ^V followed by a special key in the GUI will insert "<Key>", since
924 the internal string used is meaningless. Modifiers may also be held down to
925 get "<Modifiers-Key>".
926
927- In the GUI, the modifiers SHIFT, CTRL, and ALT (or META) may be used within
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000928 mappings of special keys and mouse events. E.g.: :map <M-LeftDrag> <LeftDrag>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929
930- In the GUI, several normal keys may have modifiers in mappings etc, these
931 are <Space>, <Tab>, <NL>, <CR>, <Esc>.
932
933- To check in a Vim script if the GUI is being used, you can use something
934 like this: >
935
936 if has("gui_running")
937 echo "yes, we have a GUI"
938 else
939 echo "Boring old console"
940 endif
Bram Moolenaared203462004-06-16 11:19:22 +0000941< *setting-guifont*
942- When you use the same vimrc file on various systems, you can use something
943 like this to set options specifically for each type of GUI: >
944
945 if has("gui_running")
946 if has("gui_gtk2")
947 :set guifont=Luxi\ Mono\ 12
948 elseif has("gui_kde")
949 :set guifont=Luxi\ Mono/12/-1/5/50/0/0/0/1/0
950 elseif has("x11")
951 " Also for GTK 1
952 :set guifont=*-lucidatypewriter-medium-r-normal-*-*-180-*-*-m-*-*
953 elseif has("gui_win32")
954 :set guifont=Luxi_Mono:h12:cANSI
955 endif
956 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000958A recommended Japanese font is MS Mincho. You can find info here:
959http://www.lexikan.com/mincho.htm
960
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961==============================================================================
9627. Shell Commands *gui-shell*
963
964For the X11 GUI the external commands are executed inside the gvim window.
965See |gui-pty|.
966
967WARNING: Executing an external command from the X11 GUI will not always
968work. "normal" commands like "ls", "grep" and "make" mostly work fine.
969Commands that require an intelligent terminal like "less" and "ispell" won't
970work. Some may even hang and need to be killed from another terminal. So be
971careful!
972
973For the Win32 GUI the external commands are executed in a separate window.
974See |gui-shell-win32|.
975
976 vim:tw=78:sw=4:ts=8:ft=help:norl: