Bram Moolenaar | b1c9198 | 2018-05-17 17:04:55 +0200 | [diff] [blame] | 1 | *gui.txt* For Vim version 8.1. Last change: 2018 Mar 06 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
| 5 | |
| 6 | |
| 7 | Vim's Graphical User Interface *gui* *GUI* |
| 8 | |
| 9 | 1. Starting the GUI |gui-start| |
| 10 | 2. Scrollbars |gui-scrollbars| |
| 11 | 3. Mouse Control |gui-mouse| |
| 12 | 4. Making GUI Selections |gui-selections| |
| 13 | 5. Menus |menus| |
| 14 | 6. Extras |gui-extras| |
| 15 | 7. Shell Commands |gui-shell| |
| 16 | |
| 17 | Other 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 | ============================================================================== |
| 24 | 1. Starting the GUI *gui-start* *E229* *E233* |
| 25 | |
| 26 | First you must make sure you actually have a version of Vim with the GUI code |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 27 | included. You can check this with the ":version" command, it says "with xxx |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 28 | GUI", where "xxx" is X11-Motif, X11-Athena, Photon, GTK2, GTK3, etc., or |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 29 | "MS-Windows 32 bit GUI version". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 30 | |
| 31 | How to start the GUI depends on the system used. Mostly you can run the |
| 32 | GUI version of Vim with: |
| 33 | gvim [options] [files...] |
| 34 | |
| 35 | The X11 version of Vim can run both in GUI and in non-GUI mode. See |
| 36 | |gui-x11-start|. |
| 37 | |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 38 | *gui-init* *gvimrc* *.gvimrc* *_gvimrc* *$MYGVIMRC* |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 39 | The gvimrc file is where GUI-specific startup commands should be placed. It |
| 40 | is always sourced after the |vimrc| file. If you have one then the $MYGVIMRC |
| 41 | environment variable has its name. |
| 42 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 43 | When the GUI starts up initializations are carried out, in this order: |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 44 | - The 'term' option is set to "builtin_gui" and terminal options are reset to |
Bram Moolenaar | 1d2ba7f | 2006-02-14 22:29:30 +0000 | [diff] [blame] | 45 | their default value for the GUI |terminal-options|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 46 | - 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 Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 60 | initializations are skipped. When {gvimrc} is "NONE" no file will be read |
| 61 | for initializations. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 62 | - 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 Moolenaar | c572da5 | 2017-08-27 16:52:01 +0200 | [diff] [blame] | 70 | - For Win32, $HOME is set by Vim if needed, see |$HOME-windows|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 71 | - When a "_gvimrc" file is not found, ".gvimrc" is tried too. And vice |
| 72 | versa. |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 73 | The name of the first file found is stored in $MYGVIMRC, unless it was |
| 74 | already set. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 75 | - 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 | |
| 81 | NOTE: All but the first one are not carried out if Vim was started with |
Bram Moolenaar | b6e0ec6 | 2017-07-23 22:12:20 +0200 | [diff] [blame] | 82 | "-u NONE" or "-u DEFAULTS" and no "-U" argument was given, or when started |
| 83 | with "-U NONE". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 84 | |
| 85 | All this happens AFTER the normal Vim initializations, like reading your |
| 86 | .vimrc file. See |initialization|. |
| 87 | But the GUI window is only opened after all the initializations have been |
| 88 | carried out. If you want some commands to be executed just after opening the |
| 89 | GUI window, use the |GUIEnter| autocommand event. Example: > |
Bram Moolenaar | 648120b | 2005-08-08 21:57:35 +0000 | [diff] [blame] | 90 | :autocmd GUIEnter * winpos 100 50 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 91 | |
| 92 | You can use the gvimrc files to set up your own customized menus (see |:menu|) |
| 93 | and initialize other things that you may want to set up differently from the |
| 94 | terminal version. |
| 95 | |
| 96 | Recommended place for your personal GUI initializations: |
Bram Moolenaar | 22971aa | 2013-06-12 20:35:58 +0200 | [diff] [blame] | 97 | Unix $HOME/.gvimrc or $HOME/.vim/gvimrc |
| 98 | OS/2 $HOME/.gvimrc, $HOME/vimfiles/gvimrc |
| 99 | or $VIM/.gvimrc |
| 100 | MS-DOS and Win32 $HOME/_gvimrc, $HOME/vimfiles/gvimrc |
| 101 | or $VIM/_gvimrc |
| 102 | Amiga s:.gvimrc, home:.gvimrc, home:vimfiles:gvimrc |
| 103 | or $VIM/.gvimrc |
| 104 | |
| 105 | The personal initialization files are searched in the order specified above |
| 106 | and only the first one that is found is read. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 107 | |
| 108 | There are a number of options which only have meaning in the GUI version of |
| 109 | Vim. These are 'guicursor', 'guifont', 'guipty' and 'guioptions'. They are |
| 110 | documented in |options.txt| with all the other options. |
| 111 | |
Bram Moolenaar | a958761 | 2006-05-04 21:47:50 +0000 | [diff] [blame] | 112 | If using the Motif or Athena version of the GUI (but not for the GTK+ or |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 113 | Win32 version), a number of X resources are available. See |gui-resources|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 114 | |
| 115 | Another way to set the colors for different occasions is with highlight |
| 116 | groups. The "Normal" group is used to set the background and foreground |
| 117 | colors. Example (which looks nice): > |
| 118 | |
| 119 | :highlight Normal guibg=grey90 |
| 120 | |
| 121 | The "guibg" and "guifg" settings override the normal background and |
| 122 | foreground settings. The other settings for the Normal highlight group are |
| 123 | not used. Use the 'guifont' option to set the font. |
| 124 | |
| 125 | Also check out the 'guicursor' option, to set the colors for the cursor in |
| 126 | various modes. |
| 127 | |
| 128 | Vim tries to make the window fit on the screen when it starts up. This avoids |
| 129 | that you can't see part of it. On the X Window System this requires a bit of |
| 130 | guesswork. You can change the height that is used for the window title and a |
| 131 | task bar with the 'guiheadroom' option. |
| 132 | |
| 133 | *:winp* *:winpos* *E188* |
| 134 | :winp[os] |
| 135 | Display current position of the top left corner of the GUI vim |
| 136 | window in pixels. Does not work in all versions. |
Bram Moolenaar | b5b7562 | 2018-03-09 22:22:21 +0100 | [diff] [blame] | 137 | Also see |getwinpos()|, |getwinposx()| and |getwinposy()|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 138 | |
| 139 | :winp[os] {X} {Y} *E466* |
| 140 | Put the GUI vim window at the given {X} and {Y} coordinates. |
| 141 | The coordinates should specify the position in pixels of the |
| 142 | top left corner of the window. Does not work in all versions. |
| 143 | Does work in an (new) xterm |xterm-color|. |
| 144 | When the GUI window has not been opened yet, the values are |
| 145 | remembered until the window is opened. The position is |
| 146 | adjusted to make the window fit on the screen (if possible). |
| 147 | |
| 148 | *:win* *:winsize* *E465* |
| 149 | :win[size] {width} {height} |
| 150 | Set the window height to {width} by {height} characters. |
| 151 | Obsolete, use ":set lines=11 columns=22". |
| 152 | If you get less lines than expected, check the 'guiheadroom' |
| 153 | option. |
| 154 | |
| 155 | If you are running the X Window System, you can get information about the |
Bram Moolenaar | 0858917 | 2014-03-08 18:38:28 +0100 | [diff] [blame] | 156 | window Vim is running in with these commands: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 157 | :!xwininfo -id $WINDOWID |
Bram Moolenaar | 0858917 | 2014-03-08 18:38:28 +0100 | [diff] [blame] | 158 | :!xprop -id $WINDOWID |
| 159 | :execute '!xwininfo -id ' . v:windowid |
| 160 | :execute '!xprop -id ' . v:windowid |
Bram Moolenaar | 5302d9e | 2011-09-14 17:55:08 +0200 | [diff] [blame] | 161 | < |
| 162 | *gui-IME* *iBus* |
| 163 | Input methods for international characters in X that rely on the XIM |
| 164 | framework, most notably iBus, have been known to produce undesirable results |
Bram Moolenaar | b0d45e7 | 2017-11-05 18:19:24 +0100 | [diff] [blame] | 165 | in gvim. These may include an inability to enter spaces, or long delays |
Bram Moolenaar | 5302d9e | 2011-09-14 17:55:08 +0200 | [diff] [blame] | 166 | between typing a character and it being recognized by the application. |
| 167 | |
| 168 | One workaround that has been successful, for unknown reasons, is to prevent |
| 169 | gvim from forking into the background by starting it with the |-f| argument. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 170 | |
| 171 | ============================================================================== |
| 172 | 2. Scrollbars *gui-scrollbars* |
| 173 | |
Bram Moolenaar | fd37168 | 2005-01-14 21:42:54 +0000 | [diff] [blame] | 174 | There are vertical scrollbars and a horizontal scrollbar. You may |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 175 | configure which ones appear with the 'guioptions' option. |
| 176 | |
| 177 | The interface looks like this (with ":set guioptions=mlrb"): |
| 178 | |
Bram Moolenaar | 166af9b | 2010-11-16 20:34:40 +0100 | [diff] [blame] | 179 | +------------------------------+ ` |
| 180 | | File Edit Help | <- Menu bar (m) ` |
| 181 | +-+--------------------------+-+ ` |
| 182 | |^| |^| ` |
| 183 | |#| Text area. |#| ` |
| 184 | | | | | ` |
| 185 | |v|__________________________|v| ` |
| 186 | Normal status line -> |-+ File.c 5,2 +-| ` |
| 187 | between Vim windows |^|""""""""""""""""""""""""""|^| ` |
| 188 | | | | | ` |
| 189 | | | Another file buffer. | | ` |
| 190 | | | | | ` |
| 191 | |#| |#| ` |
| 192 | Left scrollbar (l) -> |#| |#| <- Right ` |
| 193 | |#| |#| scrollbar (r) ` |
| 194 | | | | | ` |
| 195 | |v| |v| ` |
| 196 | +-+--------------------------+-+ ` |
| 197 | | |< #### >| | <- Bottom ` |
| 198 | +-+--------------------------+-+ scrollbar (b) ` |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 199 | |
| 200 | Any of the scrollbar or menu components may be turned off by not putting the |
| 201 | appropriate letter in the 'guioptions' string. The bottom scrollbar is |
| 202 | only useful when 'nowrap' is set. |
| 203 | |
| 204 | |
| 205 | VERTICAL SCROLLBARS *gui-vert-scroll* |
| 206 | |
| 207 | Each Vim window has a scrollbar next to it which may be scrolled up and down |
| 208 | to move through the text in that buffer. The size of the scrollbar-thumb |
| 209 | indicates the fraction of the buffer which can be seen in the window. |
| 210 | When the scrollbar is dragged all the way down, the last line of the file |
| 211 | will appear in the top of the window. |
| 212 | |
| 213 | If a window is shrunk to zero height (by the growth of another window) its |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 214 | scrollbar disappears. It reappears when the window is restored. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 215 | |
| 216 | If a window is vertically split, it will get a scrollbar when it is the |
| 217 | current window and when, taking the middle of the current window and drawing a |
| 218 | vertical line, this line goes through the window. |
| 219 | When there are scrollbars on both sides, and the middle of the current window |
| 220 | is on the left half, the right scrollbar column will contain scrollbars for |
| 221 | the rightmost windows. The same happens on the other side. |
| 222 | |
| 223 | |
| 224 | HORIZONTAL SCROLLBARS *gui-horiz-scroll* |
| 225 | |
| 226 | The horizontal scrollbar (at the bottom of the Vim GUI) may be used to |
| 227 | scroll text sideways when the 'wrap' option is turned off. The |
| 228 | scrollbar-thumb size is such that the text of the longest visible line may be |
| 229 | scrolled as far as possible left and right. The cursor is moved when |
| 230 | necessary, it must remain on a visible character (unless 'virtualedit' is |
| 231 | set). |
| 232 | |
Bram Moolenaar | fd37168 | 2005-01-14 21:42:54 +0000 | [diff] [blame] | 233 | Computing the length of the longest visible line takes quite a bit of |
| 234 | computation, and it has to be done every time something changes. If this |
| 235 | takes too much time or you don't like the cursor jumping to another line, |
| 236 | include the 'h' flag in 'guioptions'. Then the scrolling is limited by the |
| 237 | text of the current cursor line. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 238 | |
| 239 | *athena-intellimouse* |
| 240 | If you have an Intellimouse and an X server that supports using the wheel, |
| 241 | then you can use the wheel to scroll the text up and down in gvim. This works |
| 242 | with XFree86 4.0 and later, and with some older versions when you add patches. |
| 243 | See |scroll-mouse-wheel|. |
| 244 | |
| 245 | For older versions of XFree86 you must patch your X server. The following |
| 246 | page has a bit of information about using the Intellimouse on Linux as well as |
| 247 | links to the patches and X server binaries (may not have the one you need |
| 248 | though): |
| 249 | http://www.inria.fr/koala/colas/mouse-wheel-scroll/ |
| 250 | |
| 251 | ============================================================================== |
| 252 | 3. Mouse Control *gui-mouse* |
| 253 | |
| 254 | The mouse only works if the appropriate flag in the 'mouse' option is set. |
| 255 | When the GUI is switched on, and 'mouse' wasn't set yet, the 'mouse' option is |
| 256 | automatically set to "a", enabling it for all modes except for the |
| 257 | |hit-enter| prompt. If you don't want this, a good place to change the |
| 258 | 'mouse' option is the "gvimrc" file. |
| 259 | |
| 260 | Other options that are relevant: |
| 261 | 'mousefocus' window focus follows mouse pointer |gui-mouse-focus| |
| 262 | 'mousemodel' what mouse button does which action |
| 263 | 'mousehide' hide mouse pointer while typing text |
| 264 | 'selectmode' whether to start Select mode or Visual mode |
| 265 | |
| 266 | A quick way to set these is with the ":behave" command. |
| 267 | *:behave* *:be* |
| 268 | :be[have] {model} Set behavior for mouse and selection. Valid |
| 269 | arguments are: |
| 270 | mswin MS-Windows behavior |
| 271 | xterm Xterm behavior |
| 272 | |
| 273 | Using ":behave" changes these options: |
| 274 | option mswin xterm ~ |
| 275 | 'selectmode' "mouse,key" "" |
| 276 | 'mousemodel' "popup" "extend" |
| 277 | 'keymodel' "startsel,stopsel" "" |
| 278 | 'selection' "exclusive" "inclusive" |
| 279 | |
| 280 | In the $VIMRUNTIME directory, there is a script called |mswin.vim|, which will |
| 281 | also map a few keys to the MS-Windows cut/copy/paste commands. This is NOT |
| 282 | compatible, since it uses the CTRL-V, CTRL-X and CTRL-C keys. If you don't |
| 283 | mind, use this command: > |
| 284 | :so $VIMRUNTIME/mswin.vim |
| 285 | |
| 286 | For scrolling with a wheel on a mouse, see |scroll-mouse-wheel|. |
| 287 | |
| 288 | |
| 289 | 3.1 Moving Cursor with Mouse *gui-mouse-move* |
| 290 | |
| 291 | Click the left mouse button somewhere in a text buffer where you want the |
| 292 | cursor to go, and it does! |
| 293 | This works in when 'mouse' contains ~ |
| 294 | Normal mode 'n' or 'a' |
| 295 | Visual mode 'v' or 'a' |
| 296 | Insert mode 'i' or 'a' |
| 297 | |
| 298 | Select mode is handled like Visual mode. |
| 299 | |
| 300 | You may use this with an operator such as 'd' to delete text from the current |
| 301 | cursor position to the position you point to with the mouse. That is, you hit |
| 302 | 'd' and then click the mouse somewhere. |
| 303 | |
| 304 | *gui-mouse-focus* |
| 305 | The 'mousefocus' option can be set to make the keyboard focus follow the |
| 306 | mouse pointer. This means that the window where the mouse pointer is, is the |
| 307 | active window. Warning: this doesn't work very well when using a menu, |
| 308 | because the menu command will always be applied to the top window. |
| 309 | |
| 310 | If you are on the ':' line (or '/' or '?'), then clicking the left or right |
| 311 | mouse button will position the cursor on the ':' line (if 'mouse' contains |
| 312 | 'c', 'a' or 'A'). |
| 313 | |
| 314 | In any situation the middle mouse button may be clicked to paste the current |
| 315 | selection. |
| 316 | |
| 317 | |
| 318 | 3.2 Selection with Mouse *gui-mouse-select* |
| 319 | |
| 320 | The mouse can be used to start a selection. How depends on the 'mousemodel' |
| 321 | option: |
| 322 | 'mousemodel' is "extend": use the right mouse button |
| 323 | 'mousemodel' is "popup": use the left mouse button, while keeping the Shift |
| 324 | key pressed. |
| 325 | |
| 326 | If there was no selection yet, this starts a selection from the old cursor |
| 327 | position to the position pointed to with the mouse. If there already is a |
| 328 | selection then the closest end will be extended. |
| 329 | |
| 330 | If 'selectmode' contains "mouse", then the selection will be in Select mode. |
| 331 | This means that typing normal text will replace the selection. See |
| 332 | |Select-mode|. Otherwise, the selection will be in Visual mode. |
| 333 | |
| 334 | Double clicking may be done to make the selection word-wise, triple clicking |
| 335 | makes it line-wise, and quadruple clicking makes it rectangular block-wise. |
| 336 | |
| 337 | See |gui-selections| on how the selection is used. |
| 338 | |
| 339 | |
| 340 | 3.3 Other Text Selection with Mouse *gui-mouse-modeless* |
| 341 | *modeless-selection* |
| 342 | A different kind of selection is used when: |
| 343 | - in Command-line mode |
| 344 | - in the Command-line window and pointing in another window |
| 345 | - at the |hit-enter| prompt |
| 346 | - whenever the current mode is not in the 'mouse' option |
| 347 | - when holding the CTRL and SHIFT keys in the GUI |
Bram Moolenaar | a7241f5 | 2008-06-24 20:39:31 +0000 | [diff] [blame] | 348 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 349 | Since Vim continues like the selection isn't there, and there is no mode |
| 350 | associated with the selection, this is called modeless selection. Any text in |
| 351 | the Vim window can be selected. Select the text by pressing the left mouse |
| 352 | button at the start, drag to the end and release. To extend the selection, |
| 353 | use the right mouse button when 'mousemodel' is "extend", or the left mouse |
| 354 | button with the shift key pressed when 'mousemodel' is "popup". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 355 | The selection is removed when the selected text is scrolled or changed. |
Bram Moolenaar | a7241f5 | 2008-06-24 20:39:31 +0000 | [diff] [blame] | 356 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 357 | On the command line CTRL-Y can be used to copy the selection into the |
Bram Moolenaar | a7241f5 | 2008-06-24 20:39:31 +0000 | [diff] [blame] | 358 | clipboard. To do this from Insert mode, use CTRL-O : CTRL-Y <CR>. When |
| 359 | 'guioptions' contains a or A (default on X11), the selection is automatically |
| 360 | copied to the "* register. |
| 361 | |
| 362 | The middle mouse button can then paste the text. On non-X11 systems, you can |
| 363 | use CTRL-R +. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 364 | |
| 365 | |
| 366 | 3.4 Using Mouse on Status Lines *gui-mouse-status* |
| 367 | |
| 368 | Clicking the left or right mouse button on the status line below a Vim |
| 369 | window makes that window the current window. This actually happens on button |
| 370 | release (to be able to distinguish a click from a drag action). |
| 371 | |
| 372 | With the left mouse button a status line can be dragged up and down, thus |
| 373 | resizing the windows above and below it. This does not change window focus. |
| 374 | |
| 375 | The same can be used on the vertical separator: click to give the window left |
| 376 | of it focus, drag left and right to make windows wider and narrower. |
| 377 | |
| 378 | |
| 379 | 3.5 Various Mouse Clicks *gui-mouse-various* |
| 380 | |
| 381 | <S-LeftMouse> Search forward for the word under the mouse click. |
| 382 | When 'mousemodel' is "popup" this starts or extends a |
| 383 | selection. |
| 384 | <S-RightMouse> Search backward for the word under the mouse click. |
| 385 | <C-LeftMouse> Jump to the tag name under the mouse click. |
| 386 | <C-RightMouse> Jump back to position before the previous tag jump |
| 387 | (same as "CTRL-T") |
| 388 | |
| 389 | |
| 390 | 3.6 Mouse Mappings *gui-mouse-mapping* |
| 391 | |
| 392 | The mouse events, complete with modifiers, may be mapped. Eg: > |
| 393 | :map <S-LeftMouse> <RightMouse> |
| 394 | :map <S-LeftDrag> <RightDrag> |
| 395 | :map <S-LeftRelease> <RightRelease> |
| 396 | :map <2-S-LeftMouse> <2-RightMouse> |
| 397 | :map <2-S-LeftDrag> <2-RightDrag> |
| 398 | :map <2-S-LeftRelease> <2-RightRelease> |
| 399 | :map <3-S-LeftMouse> <3-RightMouse> |
| 400 | :map <3-S-LeftDrag> <3-RightDrag> |
| 401 | :map <3-S-LeftRelease> <3-RightRelease> |
| 402 | :map <4-S-LeftMouse> <4-RightMouse> |
| 403 | :map <4-S-LeftDrag> <4-RightDrag> |
| 404 | :map <4-S-LeftRelease> <4-RightRelease> |
| 405 | These mappings make selection work the way it probably should in a Motif |
| 406 | application, with shift-left mouse allowing for extending the visual area |
| 407 | rather than the right mouse button. |
| 408 | |
| 409 | Mouse mapping with modifiers does not work for modeless selection. |
| 410 | |
| 411 | |
| 412 | 3.7 Drag and drop *drag-n-drop* |
| 413 | |
| 414 | You can drag and drop one or more files into the Vim window, where they will |
| 415 | be opened as if a |:drop| command was used. |
| 416 | |
| 417 | If you hold down Shift while doing this, Vim changes to the first dropped |
| 418 | file's directory. If you hold Ctrl Vim will always split a new window for the |
| 419 | file. Otherwise it's only done if the current buffer has been changed. |
| 420 | |
| 421 | You can also drop a directory on Vim. This starts the explorer plugin for |
| 422 | that directory (assuming it was enabled, otherwise you'll get an error |
| 423 | message). Keep Shift pressed to change to the directory instead. |
| 424 | |
| 425 | If Vim happens to be editing a command line, the names of the dropped files |
| 426 | and directories will be inserted at the cursor. This allows you to use these |
| 427 | names with any Ex command. Special characters (space, tab, double quote and |
| 428 | '|'; backslash on non-MS-Windows systems) will be escaped. |
| 429 | |
| 430 | ============================================================================== |
| 431 | 4. Making GUI Selections *gui-selections* |
| 432 | |
| 433 | *quotestar* |
| 434 | You may make selections with the mouse (see |gui-mouse-select|), or by using |
| 435 | Vim's Visual mode (see |v|). If 'a' is present in 'guioptions', then |
| 436 | whenever a selection is started (Visual or Select mode), or when the selection |
| 437 | is changed, Vim becomes the owner of the windowing system's primary selection |
| 438 | (on MS-Windows the |gui-clipboard| is used; under X11, the |x11-selection| is |
| 439 | used - you should read whichever of these is appropriate now). |
| 440 | |
| 441 | *clipboard* |
| 442 | There is a special register for storing this selection, it is the "* |
| 443 | register. Nothing is put in here unless the information about what text is |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 444 | selected is about to change (e.g. with a left mouse click somewhere), or when |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 445 | another application wants to paste the selected text. Then the text is put |
| 446 | in the "* register. For example, to cut a line and make it the current |
| 447 | selection/put it on the clipboard: > |
| 448 | |
| 449 | "*dd |
| 450 | |
| 451 | Similarly, when you want to paste a selection from another application, e.g., |
| 452 | by clicking the middle mouse button, the selection is put in the "* register |
| 453 | first, and then 'put' like any other register. For example, to put the |
| 454 | selection (contents of the clipboard): > |
| 455 | |
| 456 | "*p |
| 457 | |
| 458 | When using this register under X11, also see |x11-selection|. This also |
| 459 | explains the related "+ register. |
| 460 | |
| 461 | Note that when pasting text from one Vim into another separate Vim, the type |
| 462 | of selection (character, line, or block) will also be copied. For other |
| 463 | applications the type is always character. However, if the text gets |
| 464 | transferred via the |x11-cut-buffer|, the selection type is ALWAYS lost. |
| 465 | |
| 466 | When the "unnamed" string is included in the 'clipboard' option, the unnamed |
| 467 | register is the same as the "* register. Thus you can yank to and paste the |
| 468 | selection without prepending "* to commands. |
| 469 | |
| 470 | ============================================================================== |
| 471 | 5. Menus *menus* |
| 472 | |
| 473 | For an introduction see |usr_42.txt| in the user manual. |
| 474 | |
| 475 | |
| 476 | 5.1 Using Menus *using-menus* |
| 477 | |
| 478 | Basically, menus can be used just like mappings. You can define your own |
| 479 | menus, as many as you like. |
| 480 | Long-time Vim users won't use menus much. But the power is in adding your own |
| 481 | menus and menu items. They are most useful for things that you can't remember |
| 482 | what the key sequence was. |
| 483 | |
| 484 | For creating menus in a different language, see |:menutrans|. |
Bram Moolenaar | 01164a6 | 2017-11-02 22:58:42 +0100 | [diff] [blame] | 485 | If you don't want to use menus at all, see |'go-M'|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 486 | |
| 487 | *menu.vim* |
| 488 | The default menus are read from the file "$VIMRUNTIME/menu.vim". See |
| 489 | |$VIMRUNTIME| for where the path comes from. You can set up your own menus. |
| 490 | Starting off with the default set is a good idea. You can add more items, or, |
| 491 | if you don't like the defaults at all, start with removing all menus |
| 492 | |:unmenu-all|. You can also avoid the default menus being loaded by adding |
| 493 | this line to your .vimrc file (NOT your .gvimrc file!): > |
| 494 | :let did_install_default_menus = 1 |
| 495 | If you also want to avoid the Syntax menu: > |
| 496 | :let did_install_syntax_menu = 1 |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 497 | The first item in the Syntax menu can be used to show all available filetypes |
| 498 | in the menu (which can take a bit of time to load). If you want to have all |
| 499 | filetypes already present at startup, add: > |
| 500 | :let do_syntax_sel_menu = 1 |
| 501 | |
Bram Moolenaar | 040c1fe | 2017-11-09 19:45:48 +0100 | [diff] [blame] | 502 | The following menuitems show all available color schemes, keymaps and compiler |
| 503 | settings: |
| 504 | Edit > Color Scheme ~ |
| 505 | Edit > Keymap ~ |
| 506 | Tools > Set Compiler ~ |
| 507 | However, they can also take a bit of time to load, because they search all |
| 508 | related files from the directories in 'runtimepath'. Therefore they are |
| 509 | loaded lazily (by the |CursorHold| event), or you can also load them manually. |
| 510 | If you want to have all these items already present at startup, add: > |
| 511 | :let do_no_lazyload_menus = 1 |
| 512 | |
Bram Moolenaar | 01164a6 | 2017-11-02 22:58:42 +0100 | [diff] [blame] | 513 | Note that the menu.vim is sourced when `:syntax on` or `:filetype on` is |
| 514 | executed or after your .vimrc file is sourced. This means that the 'encoding' |
| 515 | option and the language of messages (`:language messages`) must be set before |
| 516 | that (if you want to change them). |
| 517 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 518 | *console-menus* |
| 519 | Although this documentation is in the GUI section, you can actually use menus |
| 520 | in console mode too. You will have to load |menu.vim| explicitly then, it is |
| 521 | not done by default. You can use the |:emenu| command and command-line |
| 522 | completion with 'wildmenu' to access the menu entries almost like a real menu |
| 523 | system. To do this, put these commands in your .vimrc file: > |
| 524 | :source $VIMRUNTIME/menu.vim |
| 525 | :set wildmenu |
| 526 | :set cpo-=< |
| 527 | :set wcm=<C-Z> |
| 528 | :map <F4> :emenu <C-Z> |
| 529 | Pressing <F4> will start the menu. You can now use the cursor keys to select |
| 530 | a menu entry. Hit <Enter> to execute it. Hit <Esc> if you want to cancel. |
| 531 | This does require the |+menu| feature enabled at compile time. |
| 532 | |
| 533 | *tear-off-menus* |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 534 | GTK+ 2 and Motif support Tear-off menus. These are sort of sticky menus or |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 535 | pop-up menus that are present all the time. If the resizing does not work |
| 536 | correctly, this may be caused by using something like "Vim*geometry" in the |
| 537 | defaults. Use "Vim.geometry" instead. |
| 538 | |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 539 | As to GTK+ 3, tear-off menus have been deprecated since GTK+ 3.4. |
| 540 | Accordingly, they are disabled if gvim is linked against GTK+ 3.4 or later. |
| 541 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 542 | The Win32 GUI version emulates Motif's tear-off menus. Actually, a Motif user |
| 543 | will spot the differences easily, but hopefully they're just as useful. You |
| 544 | can also use the |:tearoff| command together with |hidden-menus| to create |
| 545 | floating menus that do not appear on the main menu bar. |
| 546 | |
| 547 | |
| 548 | 5.2 Creating New Menus *creating-menus* |
| 549 | |
Bram Moolenaar | 4c5d815 | 2018-10-19 22:36:53 +0200 | [diff] [blame] | 550 | *:me* *:menu* *:noreme* *:noremenu* |
| 551 | *:am* *:amenu* *:an* *:anoremenu* |
| 552 | *:nme* *:nmenu* *:nnoreme* *:nnoremenu* |
| 553 | *:ome* *:omenu* *:onoreme* *:onoremenu* |
| 554 | *:vme* *:vmenu* *:vnoreme* *:vnoremenu* |
| 555 | *:xme* *:xmenu* *:xnoreme* *:xnoremenu* |
| 556 | *:sme* *:smenu* *:snoreme* *:snoremenu* |
| 557 | *:ime* *:imenu* *:inoreme* *:inoremenu* |
| 558 | *:cme* *:cmenu* *:cnoreme* *:cnoremenu* |
| 559 | *:tlm* *:tlmenu* *:tln* *:tlnoremenu* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 560 | *E330* *E327* *E331* *E336* *E333* |
Bram Moolenaar | d5ab34b | 2007-05-05 17:15:44 +0000 | [diff] [blame] | 561 | *E328* *E329* *E337* *E792* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 562 | To create a new menu item, use the ":menu" commands. They are mostly like |
| 563 | the ":map" set of commands but the first argument is a menu item name, given |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 564 | as a path of menus and submenus with a '.' between them, e.g.: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 565 | |
| 566 | :menu File.Save :w<CR> |
| 567 | :inoremenu File.Save <C-O>:w<CR> |
| 568 | :menu Edit.Big\ Changes.Delete\ All\ Spaces :%s/[ ^I]//g<CR> |
| 569 | |
| 570 | This last one will create a new item in the menu bar called "Edit", holding |
| 571 | the mouse button down on this will pop up a menu containing the item |
| 572 | "Big Changes", which is a sub-menu containing the item "Delete All Spaces", |
| 573 | which when selected, performs the operation. |
| 574 | |
Bram Moolenaar | 4c5d815 | 2018-10-19 22:36:53 +0200 | [diff] [blame] | 575 | To create a menu for terminal mode, use |:tlmenu| instead of |:tmenu| unlike |
| 576 | key mapping (|:tmap|). This is because |:tmenu| is already used for defining |
| 577 | tooltips for menus. See |terminal-typing|. |
| 578 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 579 | Special characters in a menu name: |
| 580 | |
| 581 | & The next character is the shortcut key. Make sure each |
| 582 | shortcut key is only used once in a (sub)menu. If you want to |
| 583 | insert a literal "&" in the menu name use "&&". |
| 584 | <Tab> Separates the menu name from right-aligned text. This can be |
| 585 | used to show the equivalent typed command. The text "<Tab>" |
| 586 | can be used here for convenience. If you are using a real |
Bram Moolenaar | b5ba002 | 2007-05-12 13:06:29 +0000 | [diff] [blame] | 587 | tab, don't forget to put a backslash before it! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 588 | Example: > |
| 589 | |
| 590 | :amenu &File.&Open<Tab>:e :browse e<CR> |
| 591 | |
| 592 | [typed literally] |
| 593 | With the shortcut "F" (while keeping the <Alt> key pressed), and then "O", |
| 594 | this menu can be used. The second part is shown as "Open :e". The ":e" |
| 595 | is right aligned, and the "O" is underlined, to indicate it is the shortcut. |
| 596 | |
Bram Moolenaar | 4c5d815 | 2018-10-19 22:36:53 +0200 | [diff] [blame] | 597 | The ":amenu" command can be used to define menu entries for all modes at once, |
| 598 | except for Terminal mode. To make the command work correctly, a character is |
| 599 | automatically inserted for some modes: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 600 | mode inserted appended ~ |
| 601 | Normal nothing nothing |
| 602 | Visual <C-C> <C-\><C-G> |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 603 | Insert <C-\><C-O> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 604 | Cmdline <C-C> <C-\><C-G> |
| 605 | Op-pending <C-C> <C-\><C-G> |
| 606 | |
| 607 | Appending CTRL-\ CTRL-G is for going back to insert mode when 'insertmode' is |
| 608 | set. |CTRL-\_CTRL-G| |
| 609 | |
| 610 | Example: > |
| 611 | |
| 612 | :amenu File.Next :next^M |
| 613 | |
| 614 | is equal to: > |
| 615 | |
| 616 | :nmenu File.Next :next^M |
| 617 | :vmenu File.Next ^C:next^M^\^G |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 618 | :imenu File.Next ^\^O:next^M |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 619 | :cmenu File.Next ^C:next^M^\^G |
| 620 | :omenu File.Next ^C:next^M^\^G |
| 621 | |
| 622 | Careful: In Insert mode this only works for a SINGLE Normal mode command, |
| 623 | because of the CTRL-O. If you have two or more commands, you will need to use |
| 624 | the ":imenu" command. For inserting text in any mode, you can use the |
| 625 | expression register: > |
| 626 | |
| 627 | :amenu Insert.foobar "='foobar'<CR>P |
| 628 | |
| 629 | Note that the '<' and 'k' flags in 'cpoptions' also apply here (when |
| 630 | included they make the <> form and raw key codes not being recognized). |
| 631 | |
| 632 | Note that <Esc> in Cmdline mode executes the command, like in a mapping. This |
| 633 | is Vi compatible. Use CTRL-C to quit Cmdline mode. |
| 634 | |
| 635 | *:menu-<silent>* *:menu-silent* |
| 636 | To define a menu which will not be echoed on the command line, add |
| 637 | "<silent>" as the first argument. Example: > |
| 638 | :menu <silent> Settings.Ignore\ case :set ic<CR> |
| 639 | The ":set ic" will not be echoed when using this menu. Messages from the |
| 640 | executed command are still given though. To shut them up too, add a ":silent" |
| 641 | in the executed command: > |
| 642 | :menu <silent> Search.Header :exe ":silent normal /Header\r"<CR> |
Bram Moolenaar | 9c10238 | 2006-05-03 21:26:49 +0000 | [diff] [blame] | 643 | "<silent>" may also appear just after "<special>" or "<script>". |
| 644 | |
| 645 | *:menu-<special>* *:menu-special* |
| 646 | Define a menu with <> notation for special keys, even though the "<" flag |
| 647 | may appear in 'cpoptions'. This is useful if the side effect of setting |
| 648 | 'cpoptions' is not desired. Example: > |
| 649 | :menu <special> Search.Header /Header<CR> |
| 650 | "<special>" must appear as the very first argument to the ":menu" command or |
| 651 | just after "<silent>" or "<script>". |
| 652 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 653 | *:menu-<script>* *:menu-script* |
| 654 | The "to" part of the menu will be inspected for mappings. If you don't want |
| 655 | this, use the ":noremenu" command (or the similar one for a specific mode). |
| 656 | If you do want to use script-local mappings, add "<script>" as the very first |
Bram Moolenaar | 9c10238 | 2006-05-03 21:26:49 +0000 | [diff] [blame] | 657 | argument to the ":menu" command or just after "<silent>" or "<special>". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 658 | |
| 659 | *menu-priority* |
| 660 | You can give a priority to a menu. Menus with a higher priority go more to |
| 661 | the right. The priority is given as a number before the ":menu" command. |
| 662 | Example: > |
| 663 | :80menu Buffer.next :bn<CR> |
| 664 | |
| 665 | The default menus have these priorities: |
| 666 | File 10 |
| 667 | Edit 20 |
| 668 | Tools 40 |
| 669 | Syntax 50 |
| 670 | Buffers 60 |
| 671 | Window 70 |
| 672 | Help 9999 |
| 673 | |
| 674 | When no or zero priority is given, 500 is used. |
| 675 | The priority for the PopUp menu is not used. |
| 676 | |
| 677 | The Help menu will be placed on the far right side of the menu bar on systems |
Bram Moolenaar | 9892189 | 2016-02-23 17:14:37 +0100 | [diff] [blame] | 678 | which support this (Motif and GTK+). For GTK+ 2 and 3, this is not done |
| 679 | anymore because right-aligning the Help menu is now discouraged UI design. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 680 | |
| 681 | You can use a priority higher than 9999, to make it go after the Help menu, |
| 682 | but that is non-standard and is discouraged. The highest possible priority is |
| 683 | about 32000. The lowest is 1. |
| 684 | |
| 685 | *sub-menu-priority* |
| 686 | The same mechanism can be used to position a sub-menu. The priority is then |
| 687 | given as a dot-separated list of priorities, before the menu name: > |
| 688 | :menu 80.500 Buffer.next :bn<CR> |
| 689 | Giving the sub-menu priority is only needed when the item is not to be put |
| 690 | in a normal position. For example, to put a sub-menu before the other items: > |
| 691 | :menu 80.100 Buffer.first :brew<CR> |
| 692 | Or to put a sub-menu after the other items, and further items with default |
| 693 | priority will be put before it: > |
| 694 | :menu 80.900 Buffer.last :blast<CR> |
| 695 | When a number is missing, the default value 500 will be used: > |
| 696 | :menu .900 myMenu.test :echo "text"<CR> |
| 697 | The menu priority is only used when creating a new menu. When it already |
| 698 | existed, e.g., in another mode, the priority will not change. Thus, the |
| 699 | priority only needs to be given the first time a menu is used. |
| 700 | An exception is the PopUp menu. There is a separate menu for each mode |
| 701 | (Normal, Op-pending, Visual, Insert, Cmdline). The order in each of these |
| 702 | menus can be different. This is different from menu-bar menus, which have |
| 703 | the same order for all modes. |
| 704 | NOTE: sub-menu priorities currently don't work for all versions of the GUI. |
| 705 | |
| 706 | *menu-separator* *E332* |
| 707 | Menu items can be separated by a special item that inserts some space between |
| 708 | items. Depending on the system this is displayed as a line or a dotted line. |
| 709 | These items must start with a '-' and end in a '-'. The part in between is |
| 710 | used to give it a unique name. Priorities can be used as with normal items. |
| 711 | Example: > |
| 712 | :menu Example.item1 :do something |
| 713 | :menu Example.-Sep- : |
| 714 | :menu Example.item2 :do something different |
| 715 | Note that the separator also requires a rhs. It doesn't matter what it is, |
| 716 | because the item will never be selected. Use a single colon to keep it |
| 717 | simple. |
| 718 | |
| 719 | *gui-toolbar* |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 720 | The toolbar is currently available in the Win32, Athena, Motif, GTK+ (X11), |
Bram Moolenaar | a958761 | 2006-05-04 21:47:50 +0000 | [diff] [blame] | 721 | and Photon GUI. It should turn up in other GUIs in due course. The |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 722 | default toolbar is setup in menu.vim. |
| 723 | The display of the toolbar is controlled by the 'guioptions' letter 'T'. You |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 724 | can thus have menu & toolbar together, or either on its own, or neither. |
Bram Moolenaar | 06b5d51 | 2010-05-22 15:37:44 +0200 | [diff] [blame] | 725 | The appearance is controlled by the 'toolbar' option. You can choose between |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 726 | an image, text or both. |
| 727 | |
| 728 | *toolbar-icon* |
| 729 | The toolbar is defined as a special menu called ToolBar, which only has one |
| 730 | level. Vim interprets the items in this menu as follows: |
| 731 | 1) If an "icon=" argument was specified, the file with this name is used. |
| 732 | The file can either be specified with the full path or with the base name. |
| 733 | In the last case it is searched for in the "bitmaps" directory in |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 734 | 'runtimepath', like in point 3. Examples: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 735 | :amenu icon=/usr/local/pixmaps/foo_icon.xpm ToolBar.Foo :echo "Foo"<CR> |
| 736 | :amenu icon=FooIcon ToolBar.Foo :echo "Foo"<CR> |
| 737 | < Note that in the first case the extension is included, while in the second |
| 738 | case it is omitted. |
| 739 | If the file cannot be opened the next points are tried. |
| 740 | A space in the file name must be escaped with a backslash. |
| 741 | A menu priority must come _after_ the icon argument: > |
| 742 | :amenu icon=foo 1.42 ToolBar.Foo :echo "42!"<CR> |
| 743 | 2) An item called 'BuiltIn##', where ## is a number, is taken as number ## of |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 744 | the built-in bitmaps available in Vim. Currently there are 31 numbered |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 745 | from 0 to 30 which cover most common editing operations |builtin-tools|. > |
| 746 | :amenu ToolBar.BuiltIn22 :call SearchNext("back")<CR> |
| 747 | 3) An item with another name is first searched for in the directory |
| 748 | "bitmaps" in 'runtimepath'. If found, the bitmap file is used as the |
| 749 | toolbar button image. Note that the exact filename is OS-specific: For |
| 750 | example, under Win32 the command > |
| 751 | :amenu ToolBar.Hello :echo "hello"<CR> |
| 752 | < would find the file 'hello.bmp'. Under GTK+/X11 it is 'Hello.xpm'. With |
| 753 | GTK+ 2 the files 'Hello.png', 'Hello.xpm' and 'Hello.bmp' are checked for |
| 754 | existence, and the first one found would be used. |
| 755 | For MS-Windows and GTK+ 2 the bitmap is scaled to fit the button. For |
| 756 | MS-Windows a size of 18 by 18 pixels works best. |
| 757 | For MS-Windows the bitmap should have 16 colors with the standard palette. |
| 758 | The light grey pixels will be changed to the Window frame color and the |
| 759 | dark grey pixels to the window shadow color. More colors might also work, |
| 760 | depending on your system. |
| 761 | 4) If the bitmap is still not found, Vim checks for a match against its list |
| 762 | of built-in names. Each built-in button image has a name. |
| 763 | So the command > |
| 764 | :amenu ToolBar.Open :e |
| 765 | < will show the built-in "open a file" button image if no open.bmp exists. |
| 766 | All the built-in names can be seen used in menu.vim. |
| 767 | 5) If all else fails, a blank, but functioning, button is displayed. |
| 768 | |
| 769 | *builtin-tools* |
| 770 | nr Name Normal action ~ |
| 771 | 00 New open new window |
| 772 | 01 Open browse for file to open in current window |
| 773 | 02 Save write buffer to file |
| 774 | 03 Undo undo last change |
| 775 | 04 Redo redo last undone change |
| 776 | 05 Cut delete selected text to clipboard |
| 777 | 06 Copy copy selected text to clipboard |
| 778 | 07 Paste paste text from clipboard |
| 779 | 08 Print print current buffer |
| 780 | 09 Help open a buffer on Vim's builtin help |
| 781 | 10 Find start a search command |
| 782 | 11 SaveAll write all modified buffers to file |
| 783 | 12 SaveSesn write session file for current situation |
| 784 | 13 NewSesn write new session file |
| 785 | 14 LoadSesn load session file |
| 786 | 15 RunScript browse for file to run as a Vim script |
| 787 | 16 Replace prompt for substitute command |
| 788 | 17 WinClose close current window |
| 789 | 18 WinMax make current window use many lines |
| 790 | 19 WinMin make current window use few lines |
| 791 | 20 WinSplit split current window |
| 792 | 21 Shell start a shell |
| 793 | 22 FindPrev search again, backward |
| 794 | 23 FindNext search again, forward |
| 795 | 24 FindHelp prompt for word to search help for |
| 796 | 25 Make run make and jump to first error |
| 797 | 26 TagJump jump to tag under the cursor |
| 798 | 27 RunCtags build tags for files in current directory |
| 799 | 28 WinVSplit split current window vertically |
| 800 | 29 WinMaxWidth make current window use many columns |
| 801 | 30 WinMinWidth make current window use few columns |
| 802 | |
| 803 | *hidden-menus* *win32-hidden-menus* |
| 804 | In the Win32 and GTK+ GUI, starting a menu name with ']' excludes that menu |
| 805 | from the main menu bar. You must then use the |:popup| or |:tearoff| command |
| 806 | to display it. |
| 807 | |
Bram Moolenaar | 37c64c7 | 2017-09-19 22:06:03 +0200 | [diff] [blame] | 808 | *window-toolbar* *WinBar* |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 809 | Each window can have a local toolbar. This uses the first line of the window, |
Bram Moolenaar | 37c64c7 | 2017-09-19 22:06:03 +0200 | [diff] [blame] | 810 | thus reduces the space for the text by one line. The items in the toolbar |
| 811 | must start with "WinBar". |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 812 | |
Bram Moolenaar | 37c64c7 | 2017-09-19 22:06:03 +0200 | [diff] [blame] | 813 | Only text can be used. When using Unicode, special characters can be used to |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 814 | make the items look like icons. |
| 815 | |
| 816 | If the items do not fit then the last ones cannot be used. The toolbar does |
| 817 | not wrap. |
| 818 | |
Bram Moolenaar | 24a98a0 | 2017-09-27 22:23:55 +0200 | [diff] [blame] | 819 | Note that Vim may be in any mode when executing these commands. The menu |
| 820 | should be defined for Normal mode and will be executed without changing the |
| 821 | current mode. Thus if the current window is in Visual mode and the menu |
| 822 | command does not intentionally change the mode, Vim will remain in Visual |
| 823 | mode. Best is to use `:nnoremenu` to avoid side effects. |
| 824 | |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 825 | Example for debugger tools: > |
Bram Moolenaar | 24a98a0 | 2017-09-27 22:23:55 +0200 | [diff] [blame] | 826 | nnoremenu 1.10 WinBar.Step :Step<CR> |
| 827 | nnoremenu 1.20 WinBar.Next :Next<CR> |
| 828 | nnoremenu 1.30 WinBar.Finish :Finish<CR> |
| 829 | nnoremenu 1.40 WinBar.Cont :Continue<CR> |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 830 | < |
| 831 | The window toolbar uses the ToolbarLine and ToolbarButton highlight groups. |
| 832 | |
Bram Moolenaar | 37c64c7 | 2017-09-19 22:06:03 +0200 | [diff] [blame] | 833 | When splitting the window the window toolbar is not copied to the new window. |
| 834 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 835 | *popup-menu* |
Bram Moolenaar | a958761 | 2006-05-04 21:47:50 +0000 | [diff] [blame] | 836 | In the Win32, GTK+, Motif, Athena and Photon GUI, you can define the |
Bram Moolenaar | a3ffd9c | 2005-07-21 21:03:15 +0000 | [diff] [blame] | 837 | special menu "PopUp". This is the menu that is displayed when the right mouse |
| 838 | button is pressed, if 'mousemodel' is set to popup or popup_setpos. |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 839 | Example: > |
| 840 | nnoremenu 1.40 PopUp.&Paste "+gP |
| 841 | menu PopUp |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 842 | |
| 843 | |
| 844 | 5.3 Showing What Menus Are Mapped To *showing-menus* |
| 845 | |
| 846 | To see what an existing menu is mapped to, use just one argument after the |
| 847 | menu commands (just like you would with the ":map" commands). If the menu |
| 848 | specified is a submenu, then all menus under that hierarchy will be shown. |
| 849 | If no argument is given after :menu at all, then ALL menu items are shown |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 850 | for the appropriate mode (e.g., Command-line mode for :cmenu). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 851 | |
| 852 | Special characters in the list, just before the rhs: |
| 853 | * The menu was defined with "nore" to disallow remapping. |
| 854 | & The menu was defined with "<script>" to allow remapping script-local |
| 855 | mappings only. |
| 856 | - The menu was disabled. |
| 857 | |
| 858 | Note that hitting <Tab> while entering a menu name after a menu command may |
| 859 | be used to complete the name of the menu item. |
| 860 | |
| 861 | |
| 862 | 5.4 Executing Menus *execute-menus* |
| 863 | |
| 864 | *:em* *:emenu* *E334* *E335* |
| 865 | :[range]em[enu] {menu} Execute {menu} from the command line. |
| 866 | The default is to execute the Normal mode |
| 867 | menu. If a range is specified, it executes |
| 868 | the Visual mode menu. |
| 869 | If used from <c-o>, it executes the |
| 870 | insert-mode menu Eg: > |
| 871 | :emenu File.Exit |
| 872 | |
Bram Moolenaar | 4c5d815 | 2018-10-19 22:36:53 +0200 | [diff] [blame] | 873 | :[range]em[enu] {mode} {menu} Like above, but execute the menu for {mode}: |
| 874 | 'n': |:nmenu| Normal mode |
| 875 | 'v': |:vmenu| Visual mode |
| 876 | 's': |:smenu| Select mode |
| 877 | 'o': |:omenu| Operator-pending mode |
| 878 | 't': |:tlmenu| Terminal mode |
| 879 | 'i': |:imenu| Insert mode |
| 880 | 'c': |:cmenu| Cmdline mode |
Bram Moolenaar | f0d58ef | 2018-11-16 16:13:44 +0100 | [diff] [blame] | 881 | |
Bram Moolenaar | 4c5d815 | 2018-10-19 22:36:53 +0200 | [diff] [blame] | 882 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 883 | If the console-mode vim has been compiled with WANT_MENU defined, you can |
| 884 | use :emenu to access useful menu items you may have got used to from GUI |
| 885 | mode. See 'wildmenu' for an option that works well with this. See |
| 886 | |console-menus| for an example. |
| 887 | |
| 888 | When using a range, if the lines match with '<,'>, then the menu is executed |
| 889 | using the last visual selection. |
| 890 | |
| 891 | |
| 892 | 5.5 Deleting Menus *delete-menus* |
| 893 | |
| 894 | *:unme* *:unmenu* |
| 895 | *:aun* *:aunmenu* |
| 896 | *:nunme* *:nunmenu* |
| 897 | *:ounme* *:ounmenu* |
| 898 | *:vunme* *:vunmenu* |
Bram Moolenaar | 371d540 | 2006-03-20 21:47:49 +0000 | [diff] [blame] | 899 | *:xunme* *:xunmenu* |
| 900 | *:sunme* *:sunmenu* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 901 | *:iunme* *:iunmenu* |
| 902 | *:cunme* *:cunmenu* |
Bram Moolenaar | 4c5d815 | 2018-10-19 22:36:53 +0200 | [diff] [blame] | 903 | *:tlu* *:tlunmenu* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 904 | To delete a menu item or a whole submenu, use the unmenu commands, which are |
| 905 | analogous to the unmap commands. Eg: > |
| 906 | :unmenu! Edit.Paste |
| 907 | |
| 908 | This will remove the Paste item from the Edit menu for Insert and |
| 909 | Command-line modes. |
| 910 | |
| 911 | Note that hitting <Tab> while entering a menu name after an umenu command |
| 912 | may be used to complete the name of the menu item for the appropriate mode. |
| 913 | |
| 914 | To remove all menus use: *:unmenu-all* > |
| 915 | :unmenu * " remove all menus in Normal and visual mode |
| 916 | :unmenu! * " remove all menus in Insert and Command-line mode |
| 917 | :aunmenu * " remove all menus in all modes |
| 918 | |
| 919 | If you want to get rid of the menu bar: > |
| 920 | :set guioptions-=m |
| 921 | |
| 922 | |
| 923 | 5.6 Disabling Menus *disable-menus* |
| 924 | |
| 925 | *:menu-disable* *:menu-enable* |
| 926 | If you do not want to remove a menu, but disable it for a moment, this can be |
| 927 | done by adding the "enable" or "disable" keyword to a ":menu" command. |
| 928 | Examples: > |
| 929 | :menu disable &File.&Open\.\.\. |
| 930 | :amenu enable * |
| 931 | :amenu disable &Tools.* |
| 932 | |
| 933 | The command applies to the modes as used with all menu commands. Note that |
| 934 | characters like "&" need to be included for translated names to be found. |
| 935 | When the argument is "*", all menus are affected. Otherwise the given menu |
| 936 | name and all existing submenus below it are affected. |
| 937 | |
| 938 | |
| 939 | 5.7 Examples for Menus *menu-examples* |
| 940 | |
| 941 | Here is an example on how to add menu items with menu's! You can add a menu |
| 942 | item for the keyword under the cursor. The register "z" is used. > |
| 943 | |
| 944 | :nmenu Words.Add\ Var wb"zye:menu! Words.<C-R>z <C-R>z<CR> |
| 945 | :nmenu Words.Remove\ Var wb"zye:unmenu! Words.<C-R>z<CR> |
| 946 | :vmenu Words.Add\ Var "zy:menu! Words.<C-R>z <C-R>z <CR> |
| 947 | :vmenu Words.Remove\ Var "zy:unmenu! Words.<C-R>z<CR> |
| 948 | :imenu Words.Add\ Var <Esc>wb"zye:menu! Words.<C-R>z <C-R>z<CR>a |
| 949 | :imenu Words.Remove\ Var <Esc>wb"zye:unmenu! Words.<C-R>z<CR>a |
| 950 | |
| 951 | (the rhs is in <> notation, you can copy/paste this text to try out the |
| 952 | mappings, or put these lines in your gvimrc; "<C-R>" is CTRL-R, "<CR>" is |
| 953 | the <CR> key. |<>|) |
| 954 | |
| 955 | |
| 956 | 5.8 Tooltips & Menu tips |
| 957 | |
| 958 | See section |42.4| in the user manual. |
| 959 | |
| 960 | *:tmenu* *:tm* |
| 961 | :tm[enu] {menupath} {rhs} Define a tip for a menu or tool. {only in |
| 962 | X11 and Win32 GUI} |
| 963 | |
| 964 | :tm[enu] [menupath] List menu tips. {only in X11 and Win32 GUI} |
| 965 | |
| 966 | *:tunmenu* *:tu* |
| 967 | :tu[nmenu] {menupath} Remove a tip for a menu or tool. |
| 968 | {only in X11 and Win32 GUI} |
| 969 | |
Bram Moolenaar | 4c5d815 | 2018-10-19 22:36:53 +0200 | [diff] [blame] | 970 | Note: To create menus for terminal mode, use |:tlmenu| instead. |
| 971 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 972 | When a tip is defined for a menu item, it appears in the command-line area |
| 973 | when the mouse is over that item, much like a standard Windows menu hint in |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 974 | the status bar. (Except when Vim is in Command-line mode, when of course |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 975 | nothing is displayed.) |
| 976 | When a tip is defined for a ToolBar item, it appears as a tooltip when the |
| 977 | mouse pauses over that button, in the usual fashion. Use the |hl-Tooltip| |
| 978 | highlight group to change its colors. |
| 979 | |
| 980 | A "tip" can be defined for each menu item. For example, when defining a menu |
| 981 | item like this: > |
| 982 | :amenu MyMenu.Hello :echo "Hello"<CR> |
| 983 | The tip is defined like this: > |
| 984 | :tmenu MyMenu.Hello Displays a greeting. |
| 985 | And delete it with: > |
| 986 | :tunmenu MyMenu.Hello |
| 987 | |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 988 | Tooltips are currently only supported for the X11 and Win32 GUI. However, they |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 989 | should appear for the other gui platforms in the not too distant future. |
| 990 | |
| 991 | The ":tmenu" command works just like other menu commands, it uses the same |
| 992 | arguments. ":tunmenu" deletes an existing menu tip, in the same way as the |
| 993 | other unmenu commands. |
| 994 | |
| 995 | If a menu item becomes invalid (i.e. its actions in all modes are deleted) Vim |
| 996 | deletes the menu tip (and the item) for you. This means that :aunmenu deletes |
| 997 | a menu item - you don't need to do a :tunmenu as well. |
| 998 | |
| 999 | |
| 1000 | 5.9 Popup Menus |
| 1001 | |
| 1002 | In the Win32 and GTK+ GUI, you can cause a menu to popup at the cursor. |
| 1003 | This behaves similarly to the PopUp menus except that any menu tree can |
| 1004 | be popped up. |
| 1005 | |
| 1006 | This command is for backwards compatibility, using it is discouraged, because |
| 1007 | it behaves in a strange way. |
| 1008 | |
| 1009 | *:popup* *:popu* |
| 1010 | :popu[p] {name} Popup the menu {name}. The menu named must |
| 1011 | have at least one subentry, but need not |
| 1012 | appear on the menu-bar (see |hidden-menus|). |
Bram Moolenaar | b5b7562 | 2018-03-09 22:22:21 +0100 | [diff] [blame] | 1013 | {only available for Win32 and GTK GUI or in |
| 1014 | the terminal when compiled with +insert_expand} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1015 | |
Bram Moolenaar | 97409f1 | 2005-07-08 22:17:29 +0000 | [diff] [blame] | 1016 | :popu[p]! {name} Like above, but use the position of the mouse |
| 1017 | pointer instead of the cursor. |
Bram Moolenaar | b5b7562 | 2018-03-09 22:22:21 +0100 | [diff] [blame] | 1018 | In the terminal this is the last known |
| 1019 | position, which is usually at the last click |
Bram Moolenaar | 0b0f099 | 2018-05-22 21:41:30 +0200 | [diff] [blame] | 1020 | or release (mouse movement is irrelevant). |
Bram Moolenaar | 97409f1 | 2005-07-08 22:17:29 +0000 | [diff] [blame] | 1021 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1022 | Example: > |
| 1023 | :popup File |
Bram Moolenaar | 97409f1 | 2005-07-08 22:17:29 +0000 | [diff] [blame] | 1024 | will make the "File" menu (if there is one) appear at the text cursor (mouse |
| 1025 | pointer if ! was used). > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1026 | |
| 1027 | :amenu ]Toolbar.Make :make<CR> |
| 1028 | :popup ]Toolbar |
| 1029 | This creates a popup menu that doesn't exist on the main menu-bar. |
| 1030 | |
Bram Moolenaar | b5b7562 | 2018-03-09 22:22:21 +0100 | [diff] [blame] | 1031 | Note that in the GUI the :popup command will return immediately, before a |
| 1032 | selection has been made. In the terminal the commands waits for the user to |
| 1033 | make a selection. |
| 1034 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1035 | Note that a menu that starts with ']' will not be displayed. |
| 1036 | |
| 1037 | ============================================================================== |
| 1038 | 6. Extras *gui-extras* |
| 1039 | |
| 1040 | This section describes other features which are related to the GUI. |
| 1041 | |
| 1042 | - With the GUI, there is no wait for one second after hitting escape, because |
| 1043 | the key codes don't start with <Esc>. |
| 1044 | |
| 1045 | - Typing ^V followed by a special key in the GUI will insert "<Key>", since |
| 1046 | the internal string used is meaningless. Modifiers may also be held down to |
| 1047 | get "<Modifiers-Key>". |
| 1048 | |
| 1049 | - In the GUI, the modifiers SHIFT, CTRL, and ALT (or META) may be used within |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 1050 | mappings of special keys and mouse events. E.g.: :map <M-LeftDrag> <LeftDrag> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1051 | |
| 1052 | - In the GUI, several normal keys may have modifiers in mappings etc, these |
| 1053 | are <Space>, <Tab>, <NL>, <CR>, <Esc>. |
| 1054 | |
| 1055 | - To check in a Vim script if the GUI is being used, you can use something |
| 1056 | like this: > |
| 1057 | |
| 1058 | if has("gui_running") |
| 1059 | echo "yes, we have a GUI" |
| 1060 | else |
| 1061 | echo "Boring old console" |
| 1062 | endif |
Bram Moolenaar | ed20346 | 2004-06-16 11:19:22 +0000 | [diff] [blame] | 1063 | < *setting-guifont* |
| 1064 | - When you use the same vimrc file on various systems, you can use something |
| 1065 | like this to set options specifically for each type of GUI: > |
| 1066 | |
| 1067 | if has("gui_running") |
| 1068 | if has("gui_gtk2") |
| 1069 | :set guifont=Luxi\ Mono\ 12 |
Bram Moolenaar | ed20346 | 2004-06-16 11:19:22 +0000 | [diff] [blame] | 1070 | elseif has("x11") |
| 1071 | " Also for GTK 1 |
| 1072 | :set guifont=*-lucidatypewriter-medium-r-normal-*-*-180-*-*-m-*-* |
| 1073 | elseif has("gui_win32") |
| 1074 | :set guifont=Luxi_Mono:h12:cANSI |
| 1075 | endif |
| 1076 | endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1077 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 1078 | A recommended Japanese font is MS Mincho. You can find info here: |
| 1079 | http://www.lexikan.com/mincho.htm |
| 1080 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1081 | ============================================================================== |
| 1082 | 7. Shell Commands *gui-shell* |
| 1083 | |
| 1084 | For the X11 GUI the external commands are executed inside the gvim window. |
| 1085 | See |gui-pty|. |
| 1086 | |
| 1087 | WARNING: Executing an external command from the X11 GUI will not always |
| 1088 | work. "normal" commands like "ls", "grep" and "make" mostly work fine. |
| 1089 | Commands that require an intelligent terminal like "less" and "ispell" won't |
| 1090 | work. Some may even hang and need to be killed from another terminal. So be |
| 1091 | careful! |
| 1092 | |
| 1093 | For the Win32 GUI the external commands are executed in a separate window. |
| 1094 | See |gui-shell-win32|. |
| 1095 | |
Bram Moolenaar | 91f84f6 | 2018-07-29 15:07:52 +0200 | [diff] [blame] | 1096 | vim:tw=78:sw=4:ts=8:noet:ft=help:norl: |