blob: d838680f897df9c6493b5bd57ab8bf729e7d41ea [file] [log] [blame]
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001*gui.txt* For Vim version 7.0c. Last change: 2006 Mar 20
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*
Bram Moolenaar371d5402006-03-20 21:47:49 +0000502 *:xme* *:xmenu* *:xnoreme* *:xnoremenu*
503 *:sme* *:smenu* *:snoreme* *:snoremenu*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 *:ime* *:imenu* *:inoreme* *:inoremenu*
505 *:cme* *:cmenu* *:cnoreme* *:cnoremenu*
506 *E330* *E327* *E331* *E336* *E333*
507 *E328* *E329* *E337*
508To create a new menu item, use the ":menu" commands. They are mostly like
509the ":map" set of commands but the first argument is a menu item name, given
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000510as a path of menus and submenus with a '.' between them, e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511
512 :menu File.Save :w<CR>
513 :inoremenu File.Save <C-O>:w<CR>
514 :menu Edit.Big\ Changes.Delete\ All\ Spaces :%s/[ ^I]//g<CR>
515
516This last one will create a new item in the menu bar called "Edit", holding
517the mouse button down on this will pop up a menu containing the item
518"Big Changes", which is a sub-menu containing the item "Delete All Spaces",
519which when selected, performs the operation.
520
521Special characters in a menu name:
522
523 & The next character is the shortcut key. Make sure each
524 shortcut key is only used once in a (sub)menu. If you want to
525 insert a literal "&" in the menu name use "&&".
526 <Tab> Separates the menu name from right-aligned text. This can be
527 used to show the equivalent typed command. The text "<Tab>"
528 can be used here for convenience. If you are using a real
529 Tab, don't forget to put a backslash before it!
530Example: >
531
532 :amenu &File.&Open<Tab>:e :browse e<CR>
533
534[typed literally]
535With the shortcut "F" (while keeping the <Alt> key pressed), and then "O",
536this menu can be used. The second part is shown as "Open :e". The ":e"
537is right aligned, and the "O" is underlined, to indicate it is the shortcut.
538
539The ":amenu" command can be used to define menu entries for all modes at once.
540To make the command work correctly, a character is automatically inserted for
541some modes:
542 mode inserted appended ~
543 Normal nothing nothing
544 Visual <C-C> <C-\><C-G>
545 Insert <C-O>
546 Cmdline <C-C> <C-\><C-G>
547 Op-pending <C-C> <C-\><C-G>
548
549Appending CTRL-\ CTRL-G is for going back to insert mode when 'insertmode' is
550set. |CTRL-\_CTRL-G|
551
552Example: >
553
554 :amenu File.Next :next^M
555
556is equal to: >
557
558 :nmenu File.Next :next^M
559 :vmenu File.Next ^C:next^M^\^G
560 :imenu File.Next ^O:next^M
561 :cmenu File.Next ^C:next^M^\^G
562 :omenu File.Next ^C:next^M^\^G
563
564Careful: In Insert mode this only works for a SINGLE Normal mode command,
565because of the CTRL-O. If you have two or more commands, you will need to use
566the ":imenu" command. For inserting text in any mode, you can use the
567expression register: >
568
569 :amenu Insert.foobar "='foobar'<CR>P
570
571Note that the '<' and 'k' flags in 'cpoptions' also apply here (when
572included they make the <> form and raw key codes not being recognized).
573
574Note that <Esc> in Cmdline mode executes the command, like in a mapping. This
575is Vi compatible. Use CTRL-C to quit Cmdline mode.
576
577 *:menu-<silent>* *:menu-silent*
578To define a menu which will not be echoed on the command line, add
579"<silent>" as the first argument. Example: >
580 :menu <silent> Settings.Ignore\ case :set ic<CR>
581The ":set ic" will not be echoed when using this menu. Messages from the
582executed command are still given though. To shut them up too, add a ":silent"
583in the executed command: >
584 :menu <silent> Search.Header :exe ":silent normal /Header\r"<CR>
585<
586 *:menu-<script>* *:menu-script*
587The "to" part of the menu will be inspected for mappings. If you don't want
588this, use the ":noremenu" command (or the similar one for a specific mode).
589If you do want to use script-local mappings, add "<script>" as the very first
590argument to the ":menu" command or after "<silent>".
591
592 *menu-priority*
593You can give a priority to a menu. Menus with a higher priority go more to
594the right. The priority is given as a number before the ":menu" command.
595Example: >
596 :80menu Buffer.next :bn<CR>
597
598The default menus have these priorities:
599 File 10
600 Edit 20
601 Tools 40
602 Syntax 50
603 Buffers 60
604 Window 70
605 Help 9999
606
607When no or zero priority is given, 500 is used.
608The priority for the PopUp menu is not used.
609
610The Help menu will be placed on the far right side of the menu bar on systems
611which support this (Motif and GTK+). For GTK+ 2, this is not done anymore
612because right-aligning the Help menu is now discouraged UI design.
613
614You can use a priority higher than 9999, to make it go after the Help menu,
615but that is non-standard and is discouraged. The highest possible priority is
616about 32000. The lowest is 1.
617
618 *sub-menu-priority*
619The same mechanism can be used to position a sub-menu. The priority is then
620given as a dot-separated list of priorities, before the menu name: >
621 :menu 80.500 Buffer.next :bn<CR>
622Giving the sub-menu priority is only needed when the item is not to be put
623in a normal position. For example, to put a sub-menu before the other items: >
624 :menu 80.100 Buffer.first :brew<CR>
625Or to put a sub-menu after the other items, and further items with default
626priority will be put before it: >
627 :menu 80.900 Buffer.last :blast<CR>
628When a number is missing, the default value 500 will be used: >
629 :menu .900 myMenu.test :echo "text"<CR>
630The menu priority is only used when creating a new menu. When it already
631existed, e.g., in another mode, the priority will not change. Thus, the
632priority only needs to be given the first time a menu is used.
633An exception is the PopUp menu. There is a separate menu for each mode
634(Normal, Op-pending, Visual, Insert, Cmdline). The order in each of these
635menus can be different. This is different from menu-bar menus, which have
636the same order for all modes.
637NOTE: sub-menu priorities currently don't work for all versions of the GUI.
638
639 *menu-separator* *E332*
640Menu items can be separated by a special item that inserts some space between
641items. Depending on the system this is displayed as a line or a dotted line.
642These items must start with a '-' and end in a '-'. The part in between is
643used to give it a unique name. Priorities can be used as with normal items.
644Example: >
645 :menu Example.item1 :do something
646 :menu Example.-Sep- :
647 :menu Example.item2 :do something different
648Note that the separator also requires a rhs. It doesn't matter what it is,
649because the item will never be selected. Use a single colon to keep it
650simple.
651
652 *gui-toolbar*
Bram Moolenaar843ee412004-06-30 16:16:41 +0000653The toolbar is currently available in the Win32, Athena, Motif, GTK+ (X11),
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000654KDE and Photon GUI. It should turn up in other GUIs in due course. The
655default toolbar is setup in menu.vim.
656The display of the toolbar is controlled by the 'guioptions' letter 'T'. You
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657can thus have menu & toolbar together, or either on its own, or neither.
658The appearance is controlled by the 'toolbar' option. You can chose between
659an image, text or both.
660
661 *toolbar-icon*
662The toolbar is defined as a special menu called ToolBar, which only has one
663level. Vim interprets the items in this menu as follows:
6641) If an "icon=" argument was specified, the file with this name is used.
665 The file can either be specified with the full path or with the base name.
666 In the last case it is searched for in the "bitmaps" directory in
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000667 'runtimepath', like in point 3. Examples: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 :amenu icon=/usr/local/pixmaps/foo_icon.xpm ToolBar.Foo :echo "Foo"<CR>
669 :amenu icon=FooIcon ToolBar.Foo :echo "Foo"<CR>
670< Note that in the first case the extension is included, while in the second
671 case it is omitted.
672 If the file cannot be opened the next points are tried.
673 A space in the file name must be escaped with a backslash.
674 A menu priority must come _after_ the icon argument: >
675 :amenu icon=foo 1.42 ToolBar.Foo :echo "42!"<CR>
6762) An item called 'BuiltIn##', where ## is a number, is taken as number ## of
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000677 the built-in bitmaps available in Vim. Currently there are 31 numbered
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 from 0 to 30 which cover most common editing operations |builtin-tools|. >
679 :amenu ToolBar.BuiltIn22 :call SearchNext("back")<CR>
6803) An item with another name is first searched for in the directory
681 "bitmaps" in 'runtimepath'. If found, the bitmap file is used as the
682 toolbar button image. Note that the exact filename is OS-specific: For
683 example, under Win32 the command >
684 :amenu ToolBar.Hello :echo "hello"<CR>
685< would find the file 'hello.bmp'. Under GTK+/X11 it is 'Hello.xpm'. With
686 GTK+ 2 the files 'Hello.png', 'Hello.xpm' and 'Hello.bmp' are checked for
687 existence, and the first one found would be used.
688 For MS-Windows and GTK+ 2 the bitmap is scaled to fit the button. For
689 MS-Windows a size of 18 by 18 pixels works best.
690 For MS-Windows the bitmap should have 16 colors with the standard palette.
691 The light grey pixels will be changed to the Window frame color and the
692 dark grey pixels to the window shadow color. More colors might also work,
693 depending on your system.
6944) If the bitmap is still not found, Vim checks for a match against its list
695 of built-in names. Each built-in button image has a name.
696 So the command >
697 :amenu ToolBar.Open :e
698< will show the built-in "open a file" button image if no open.bmp exists.
699 All the built-in names can be seen used in menu.vim.
7005) If all else fails, a blank, but functioning, button is displayed.
701
702 *builtin-tools*
703nr Name Normal action ~
70400 New open new window
70501 Open browse for file to open in current window
70602 Save write buffer to file
70703 Undo undo last change
70804 Redo redo last undone change
70905 Cut delete selected text to clipboard
71006 Copy copy selected text to clipboard
71107 Paste paste text from clipboard
71208 Print print current buffer
71309 Help open a buffer on Vim's builtin help
71410 Find start a search command
71511 SaveAll write all modified buffers to file
71612 SaveSesn write session file for current situation
71713 NewSesn write new session file
71814 LoadSesn load session file
71915 RunScript browse for file to run as a Vim script
72016 Replace prompt for substitute command
72117 WinClose close current window
72218 WinMax make current window use many lines
72319 WinMin make current window use few lines
72420 WinSplit split current window
72521 Shell start a shell
72622 FindPrev search again, backward
72723 FindNext search again, forward
72824 FindHelp prompt for word to search help for
72925 Make run make and jump to first error
73026 TagJump jump to tag under the cursor
73127 RunCtags build tags for files in current directory
73228 WinVSplit split current window vertically
73329 WinMaxWidth make current window use many columns
73430 WinMinWidth make current window use few columns
735
736 *hidden-menus* *win32-hidden-menus*
737In the Win32 and GTK+ GUI, starting a menu name with ']' excludes that menu
738from the main menu bar. You must then use the |:popup| or |:tearoff| command
739to display it.
740
741 *popup-menu*
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000742In the Win32, KDE, GTK+, Motif, Athena and Photon GUI, you can define the
743special menu "PopUp". This is the menu that is displayed when the right mouse
744button is pressed, if 'mousemodel' is set to popup or popup_setpos.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745
746
7475.3 Showing What Menus Are Mapped To *showing-menus*
748
749To see what an existing menu is mapped to, use just one argument after the
750menu commands (just like you would with the ":map" commands). If the menu
751specified is a submenu, then all menus under that hierarchy will be shown.
752If no argument is given after :menu at all, then ALL menu items are shown
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000753for the appropriate mode (e.g., Command-line mode for :cmenu).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755Special characters in the list, just before the rhs:
756* The menu was defined with "nore" to disallow remapping.
757& The menu was defined with "<script>" to allow remapping script-local
758 mappings only.
759- The menu was disabled.
760
761Note that hitting <Tab> while entering a menu name after a menu command may
762be used to complete the name of the menu item.
763
764
7655.4 Executing Menus *execute-menus*
766
767 *:em* *:emenu* *E334* *E335*
768:[range]em[enu] {menu} Execute {menu} from the command line.
769 The default is to execute the Normal mode
770 menu. If a range is specified, it executes
771 the Visual mode menu.
772 If used from <c-o>, it executes the
773 insert-mode menu Eg: >
774 :emenu File.Exit
775
776If the console-mode vim has been compiled with WANT_MENU defined, you can
777use :emenu to access useful menu items you may have got used to from GUI
778mode. See 'wildmenu' for an option that works well with this. See
779|console-menus| for an example.
780
781When using a range, if the lines match with '<,'>, then the menu is executed
782using the last visual selection.
783
784
7855.5 Deleting Menus *delete-menus*
786
787 *:unme* *:unmenu*
788 *:aun* *:aunmenu*
789 *:nunme* *:nunmenu*
790 *:ounme* *:ounmenu*
791 *:vunme* *:vunmenu*
Bram Moolenaar371d5402006-03-20 21:47:49 +0000792 *:xunme* *:xunmenu*
793 *:sunme* *:sunmenu*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 *:iunme* *:iunmenu*
795 *:cunme* *:cunmenu*
796To delete a menu item or a whole submenu, use the unmenu commands, which are
797analogous to the unmap commands. Eg: >
798 :unmenu! Edit.Paste
799
800This will remove the Paste item from the Edit menu for Insert and
801Command-line modes.
802
803Note that hitting <Tab> while entering a menu name after an umenu command
804may be used to complete the name of the menu item for the appropriate mode.
805
806To remove all menus use: *:unmenu-all* >
807 :unmenu * " remove all menus in Normal and visual mode
808 :unmenu! * " remove all menus in Insert and Command-line mode
809 :aunmenu * " remove all menus in all modes
810
811If you want to get rid of the menu bar: >
812 :set guioptions-=m
813
814
8155.6 Disabling Menus *disable-menus*
816
817 *:menu-disable* *:menu-enable*
818If you do not want to remove a menu, but disable it for a moment, this can be
819done by adding the "enable" or "disable" keyword to a ":menu" command.
820Examples: >
821 :menu disable &File.&Open\.\.\.
822 :amenu enable *
823 :amenu disable &Tools.*
824
825The command applies to the modes as used with all menu commands. Note that
826characters like "&" need to be included for translated names to be found.
827When the argument is "*", all menus are affected. Otherwise the given menu
828name and all existing submenus below it are affected.
829
830
8315.7 Examples for Menus *menu-examples*
832
833Here is an example on how to add menu items with menu's! You can add a menu
834item for the keyword under the cursor. The register "z" is used. >
835
836 :nmenu Words.Add\ Var wb"zye:menu! Words.<C-R>z <C-R>z<CR>
837 :nmenu Words.Remove\ Var wb"zye:unmenu! Words.<C-R>z<CR>
838 :vmenu Words.Add\ Var "zy:menu! Words.<C-R>z <C-R>z <CR>
839 :vmenu Words.Remove\ Var "zy:unmenu! Words.<C-R>z<CR>
840 :imenu Words.Add\ Var <Esc>wb"zye:menu! Words.<C-R>z <C-R>z<CR>a
841 :imenu Words.Remove\ Var <Esc>wb"zye:unmenu! Words.<C-R>z<CR>a
842
843(the rhs is in <> notation, you can copy/paste this text to try out the
844mappings, or put these lines in your gvimrc; "<C-R>" is CTRL-R, "<CR>" is
845the <CR> key. |<>|)
846
847
8485.8 Tooltips & Menu tips
849
850See section |42.4| in the user manual.
851
852 *:tmenu* *:tm*
853:tm[enu] {menupath} {rhs} Define a tip for a menu or tool. {only in
854 X11 and Win32 GUI}
855
856:tm[enu] [menupath] List menu tips. {only in X11 and Win32 GUI}
857
858 *:tunmenu* *:tu*
859:tu[nmenu] {menupath} Remove a tip for a menu or tool.
860 {only in X11 and Win32 GUI}
861
862When a tip is defined for a menu item, it appears in the command-line area
863when the mouse is over that item, much like a standard Windows menu hint in
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000864the status bar. (Except when Vim is in Command-line mode, when of course
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865nothing is displayed.)
866When a tip is defined for a ToolBar item, it appears as a tooltip when the
867mouse pauses over that button, in the usual fashion. Use the |hl-Tooltip|
868highlight group to change its colors.
869
870A "tip" can be defined for each menu item. For example, when defining a menu
871item like this: >
872 :amenu MyMenu.Hello :echo "Hello"<CR>
873The tip is defined like this: >
874 :tmenu MyMenu.Hello Displays a greeting.
875And delete it with: >
876 :tunmenu MyMenu.Hello
877
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000878Tooltips are currently only supported for the X11 and Win32 GUI. However, they
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879should appear for the other gui platforms in the not too distant future.
880
881The ":tmenu" command works just like other menu commands, it uses the same
882arguments. ":tunmenu" deletes an existing menu tip, in the same way as the
883other unmenu commands.
884
885If a menu item becomes invalid (i.e. its actions in all modes are deleted) Vim
886deletes the menu tip (and the item) for you. This means that :aunmenu deletes
887a menu item - you don't need to do a :tunmenu as well.
888
889
8905.9 Popup Menus
891
892In the Win32 and GTK+ GUI, you can cause a menu to popup at the cursor.
893This behaves similarly to the PopUp menus except that any menu tree can
894be popped up.
895
896This command is for backwards compatibility, using it is discouraged, because
897it behaves in a strange way.
898
899 *:popup* *:popu*
900:popu[p] {name} Popup the menu {name}. The menu named must
901 have at least one subentry, but need not
902 appear on the menu-bar (see |hidden-menus|).
903 {only available for Win32 and GTK GUI}
904
Bram Moolenaar97409f12005-07-08 22:17:29 +0000905:popu[p]! {name} Like above, but use the position of the mouse
906 pointer instead of the cursor.
907
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908Example: >
909 :popup File
Bram Moolenaar97409f12005-07-08 22:17:29 +0000910will make the "File" menu (if there is one) appear at the text cursor (mouse
911pointer if ! was used). >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912
913 :amenu ]Toolbar.Make :make<CR>
914 :popup ]Toolbar
915This creates a popup menu that doesn't exist on the main menu-bar.
916
917Note that a menu that starts with ']' will not be displayed.
918
919==============================================================================
9206. Extras *gui-extras*
921
922This section describes other features which are related to the GUI.
923
924- With the GUI, there is no wait for one second after hitting escape, because
925 the key codes don't start with <Esc>.
926
927- Typing ^V followed by a special key in the GUI will insert "<Key>", since
928 the internal string used is meaningless. Modifiers may also be held down to
929 get "<Modifiers-Key>".
930
931- In the GUI, the modifiers SHIFT, CTRL, and ALT (or META) may be used within
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000932 mappings of special keys and mouse events. E.g.: :map <M-LeftDrag> <LeftDrag>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933
934- In the GUI, several normal keys may have modifiers in mappings etc, these
935 are <Space>, <Tab>, <NL>, <CR>, <Esc>.
936
937- To check in a Vim script if the GUI is being used, you can use something
938 like this: >
939
940 if has("gui_running")
941 echo "yes, we have a GUI"
942 else
943 echo "Boring old console"
944 endif
Bram Moolenaared203462004-06-16 11:19:22 +0000945< *setting-guifont*
946- When you use the same vimrc file on various systems, you can use something
947 like this to set options specifically for each type of GUI: >
948
949 if has("gui_running")
950 if has("gui_gtk2")
951 :set guifont=Luxi\ Mono\ 12
952 elseif has("gui_kde")
953 :set guifont=Luxi\ Mono/12/-1/5/50/0/0/0/1/0
954 elseif has("x11")
955 " Also for GTK 1
956 :set guifont=*-lucidatypewriter-medium-r-normal-*-*-180-*-*-m-*-*
957 elseif has("gui_win32")
958 :set guifont=Luxi_Mono:h12:cANSI
959 endif
960 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000962A recommended Japanese font is MS Mincho. You can find info here:
963http://www.lexikan.com/mincho.htm
964
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965==============================================================================
9667. Shell Commands *gui-shell*
967
968For the X11 GUI the external commands are executed inside the gvim window.
969See |gui-pty|.
970
971WARNING: Executing an external command from the X11 GUI will not always
972work. "normal" commands like "ls", "grep" and "make" mostly work fine.
973Commands that require an intelligent terminal like "less" and "ispell" won't
974work. Some may even hang and need to be killed from another terminal. So be
975careful!
976
977For the Win32 GUI the external commands are executed in a separate window.
978See |gui-shell-win32|.
979
980 vim:tw=78:sw=4:ts=8:ft=help:norl: