1*map.txt* For Vim version 8.0. Last change: 2017 May 30 2 3 4 VIM REFERENCE MANUAL by Bram Moolenaar 5 6 7Key mapping, abbreviations and user-defined commands. 8 9This subject is introduced in sections |05.3|, |24.7| and |40.1| of the user 10manual. 11 121. Key mapping |key-mapping| 13 1.1 MAP COMMANDS |:map-commands| 14 1.2 Special arguments |:map-arguments| 15 1.3 Mapping and modes |:map-modes| 16 1.4 Listing mappings |map-listing| 17 1.5 Mapping special keys |:map-special-keys| 18 1.6 Special characters |:map-special-chars| 19 1.7 What keys to map |map-which-keys| 20 1.8 Examples |map-examples| 21 1.9 Using mappings |map-typing| 22 1.10 Mapping alt-keys |:map-alt-keys| 23 1.11 Mapping an operator |:map-operator| 242. Abbreviations |abbreviations| 253. Local mappings and functions |script-local| 264. User-defined commands |user-commands| 27 28============================================================================== 291. Key mapping *key-mapping* *mapping* *macro* 30 31Key mapping is used to change the meaning of typed keys. The most common use 32is to define a sequence commands for a function key. Example: > 33 34 :map <F2> a<C-R>=strftime("%c")<CR><Esc> 35 36This appends the current date and time after the cursor (in <> notation |<>|). 37 38 391.1 MAP COMMANDS *:map-commands* 40 41There are commands to enter new mappings, remove mappings and list mappings. 42See |map-overview| for the various forms of "map" and their relationships with 43modes. 44 45{lhs} means left-hand-side *{lhs}* 46{rhs} means right-hand-side *{rhs}* 47 48:map {lhs} {rhs} |mapmode-nvo| *:map* 49:nm[ap] {lhs} {rhs} |mapmode-n| *:nm* *:nmap* 50:vm[ap] {lhs} {rhs} |mapmode-v| *:vm* *:vmap* 51:xm[ap] {lhs} {rhs} |mapmode-x| *:xm* *:xmap* 52:smap {lhs} {rhs} |mapmode-s| *:smap* 53:om[ap] {lhs} {rhs} |mapmode-o| *:om* *:omap* 54:map! {lhs} {rhs} |mapmode-ic| *:map!* 55:im[ap] {lhs} {rhs} |mapmode-i| *:im* *:imap* 56:lm[ap] {lhs} {rhs} |mapmode-l| *:lm* *:lmap* 57:cm[ap] {lhs} {rhs} |mapmode-c| *:cm* *:cmap* 58 Map the key sequence {lhs} to {rhs} for the modes 59 where the map command applies. The result, including 60 {rhs}, is then further scanned for mappings. This 61 allows for nested and recursive use of mappings. 62 63 *:nore* *:norem* 64:no[remap] {lhs} {rhs} |mapmode-nvo| *:no* *:noremap* *:nor* 65:nn[oremap] {lhs} {rhs} |mapmode-n| *:nn* *:nnoremap* 66:vn[oremap] {lhs} {rhs} |mapmode-v| *:vn* *:vnoremap* 67:xn[oremap] {lhs} {rhs} |mapmode-x| *:xn* *:xnoremap* 68:snor[emap] {lhs} {rhs} |mapmode-s| *:snor* *:snoremap* 69:ono[remap] {lhs} {rhs} |mapmode-o| *:ono* *:onoremap* 70:no[remap]! {lhs} {rhs} |mapmode-ic| *:no!* *:noremap!* 71:ino[remap] {lhs} {rhs} |mapmode-i| *:ino* *:inoremap* 72:ln[oremap] {lhs} {rhs} |mapmode-l| *:ln* *:lnoremap* 73:cno[remap] {lhs} {rhs} |mapmode-c| *:cno* *:cnoremap* 74 Map the key sequence {lhs} to {rhs} for the modes 75 where the map command applies. Disallow mapping of 76 {rhs}, to avoid nested and recursive mappings. Often 77 used to redefine a command. {not in Vi} 78 79 80:unm[ap] {lhs} |mapmode-nvo| *:unm* *:unmap* 81:nun[map] {lhs} |mapmode-n| *:nun* *:nunmap* 82:vu[nmap] {lhs} |mapmode-v| *:vu* *:vunmap* 83:xu[nmap] {lhs} |mapmode-x| *:xu* *:xunmap* 84:sunm[ap] {lhs} |mapmode-s| *:sunm* *:sunmap* 85:ou[nmap] {lhs} |mapmode-o| *:ou* *:ounmap* 86:unm[ap]! {lhs} |mapmode-ic| *:unm!* *:unmap!* 87:iu[nmap] {lhs} |mapmode-i| *:iu* *:iunmap* 88:lu[nmap] {lhs} |mapmode-l| *:lu* *:lunmap* 89:cu[nmap] {lhs} |mapmode-c| *:cu* *:cunmap* 90 Remove the mapping of {lhs} for the modes where the 91 map command applies. The mapping may remain defined 92 for other modes where it applies. 93 Note: Trailing spaces are included in the {lhs}. This 94 unmap does NOT work: > 95 :map @@ foo 96 :unmap @@ | print 97 98:mapc[lear] |mapmode-nvo| *:mapc* *:mapclear* 99:nmapc[lear] |mapmode-n| *:nmapc* *:nmapclear* 100:vmapc[lear] |mapmode-v| *:vmapc* *:vmapclear* 101:xmapc[lear] |mapmode-x| *:xmapc* *:xmapclear* 102:smapc[lear] |mapmode-s| *:smapc* *:smapclear* 103:omapc[lear] |mapmode-o| *:omapc* *:omapclear* 104:mapc[lear]! |mapmode-ic| *:mapc!* *:mapclear!* 105:imapc[lear] |mapmode-i| *:imapc* *:imapclear* 106:lmapc[lear] |mapmode-l| *:lmapc* *:lmapclear* 107:cmapc[lear] |mapmode-c| *:cmapc* *:cmapclear* 108 Remove ALL mappings for the modes where the map 109 command applies. {not in Vi} 110 Use the <buffer> argument to remove buffer-local 111 mappings |:map-<buffer>| 112 Warning: This also removes the default mappings. 113 114:map |mapmode-nvo| 115:nm[ap] |mapmode-n| 116:vm[ap] |mapmode-v| 117:xm[ap] |mapmode-x| 118:sm[ap] |mapmode-s| 119:om[ap] |mapmode-o| 120:map! |mapmode-ic| 121:im[ap] |mapmode-i| 122:lm[ap] |mapmode-l| 123:cm[ap] |mapmode-c| 124 List all key mappings for the modes where the map 125 command applies. Note that ":map" and ":map!" are 126 used most often, because they include the other modes. 127 128:map {lhs} |mapmode-nvo| *:map_l* 129:nm[ap] {lhs} |mapmode-n| *:nmap_l* 130:vm[ap] {lhs} |mapmode-v| *:vmap_l* 131:xm[ap] {lhs} |mapmode-x| *:xmap_l* 132:sm[ap] {lhs} |mapmode-s| *:smap_l* 133:om[ap] {lhs} |mapmode-o| *:omap_l* 134:map! {lhs} |mapmode-ic| *:map_l!* 135:im[ap] {lhs} |mapmode-i| *:imap_l* 136:lm[ap] {lhs} |mapmode-l| *:lmap_l* 137:cm[ap] {lhs} |mapmode-c| *:cmap_l* 138 List the key mappings for the key sequences starting 139 with {lhs} in the modes where the map command applies. 140 {not in Vi} 141 142These commands are used to map a key or key sequence to a string of 143characters. You can use this to put command sequences under function keys, 144translate one key into another, etc. See |:mkexrc| for how to save and 145restore the current mappings. 146 147 *map-ambiguous* 148When two mappings start with the same sequence of characters, they are 149ambiguous. Example: > 150 :imap aa foo 151 :imap aaa bar 152When Vim has read "aa", it will need to get another character to be able to 153decide if "aa" or "aaa" should be mapped. This means that after typing "aa" 154that mapping won't get expanded yet, Vim is waiting for another character. 155If you type a space, then "foo" will get inserted, plus the space. If you 156type "a", then "bar" will get inserted. 157{Vi does not allow ambiguous mappings} 158 159 1601.2 SPECIAL ARGUMENTS *:map-arguments* 161 162"<buffer>", "<nowait>", "<silent>", "<special>", "<script>", "<expr>" and 163"<unique>" can be used in any order. They must appear right after the 164command, before any other arguments. 165 166 *:map-local* *:map-<buffer>* *E224* *E225* 167If the first argument to one of these commands is "<buffer>" the mapping will 168be effective in the current buffer only. Example: > 169 :map <buffer> ,w /[.,;]<CR> 170Then you can map ",w" to something else in another buffer: > 171 :map <buffer> ,w /[#&!]<CR> 172The local buffer mappings are used before the global ones. See <nowait> below 173to make a short local mapping not taking effect when a longer global one 174exists. 175The "<buffer>" argument can also be used to clear mappings: > 176 :unmap <buffer> ,w 177 :mapclear <buffer> 178Local mappings are also cleared when a buffer is deleted, but not when it is 179unloaded. Just like local option values. 180Also see |map-precedence|. 181 182 *:map-<nowait>* *:map-nowait* 183When defining a buffer-local mapping for "," there may be a global mapping 184that starts with ",". Then you need to type another character for Vim to know 185whether to use the "," mapping or the longer one. To avoid this add the 186<nowait> argument. Then the mapping will be used when it matches, Vim does 187not wait for more characters to be typed. However, if the characters were 188already typed they are used. 189 190 *:map-<silent>* *:map-silent* 191To define a mapping which will not be echoed on the command line, add 192"<silent>" as the first argument. Example: > 193 :map <silent> ,h /Header<CR> 194The search string will not be echoed when using this mapping. Messages from 195the executed command are still given though. To shut them up too, add a 196":silent" in the executed command: > 197 :map <silent> ,h :exe ":silent normal /Header\r"<CR> 198Prompts will still be given, e.g., for inputdialog(). 199Using "<silent>" for an abbreviation is possible, but will cause redrawing of 200the command line to fail. 201 202 *:map-<special>* *:map-special* 203Define a mapping with <> notation for special keys, even though the "<" flag 204may appear in 'cpoptions'. This is useful if the side effect of setting 205'cpoptions' is not desired. Example: > 206 :map <special> <F12> /Header<CR> 207< 208 *:map-<script>* *:map-script* 209If the first argument to one of these commands is "<script>" and it is used to 210define a new mapping or abbreviation, the mapping will only remap characters 211in the {rhs} using mappings that were defined local to a script, starting with 212"<SID>". This can be used to avoid that mappings from outside a script 213interfere (e.g., when CTRL-V is remapped in mswin.vim), but do use other 214mappings defined in the script. 215Note: ":map <script>" and ":noremap <script>" do the same thing. The 216"<script>" overrules the command name. Using ":noremap <script>" is 217preferred, because it's clearer that remapping is (mostly) disabled. 218 219 *:map-<unique>* *E226* *E227* 220If the first argument to one of these commands is "<unique>" and it is used to 221define a new mapping or abbreviation, the command will fail if the mapping or 222abbreviation already exists. Example: > 223 :map <unique> ,w /[#&!]<CR> 224When defining a local mapping, there will also be a check if a global map 225already exists which is equal. 226Example of what will fail: > 227 :map ,w /[#&!]<CR> 228 :map <buffer> <unique> ,w /[.,;]<CR> 229If you want to map a key and then have it do what it was originally mapped to, 230have a look at |maparg()|. 231 232 *:map-<expr>* *:map-expression* 233If the first argument to one of these commands is "<expr>" and it is used to 234define a new mapping or abbreviation, the argument is an expression. The 235expression is evaluated to obtain the {rhs} that is used. Example: > 236 :inoremap <expr> . InsertDot() 237The result of the InsertDot() function will be inserted. It could check the 238text before the cursor and start omni completion when some condition is met. 239 240For abbreviations |v:char| is set to the character that was typed to trigger 241the abbreviation. You can use this to decide how to expand the {lhs}. You 242should not either insert or change the v:char. 243 244Be very careful about side effects! The expression is evaluated while 245obtaining characters, you may very well make the command dysfunctional. 246For this reason the following is blocked: 247- Changing the buffer text |textlock|. 248- Editing another buffer. 249- The |:normal| command. 250- Moving the cursor is allowed, but it is restored afterwards. 251If you want the mapping to do any of these let the returned characters do 252that. 253 254You can use getchar(), it consumes typeahead if there is any. E.g., if you 255have these mappings: > 256 inoremap <expr> <C-L> nr2char(getchar()) 257 inoremap <expr> <C-L>x "foo" 258If you now type CTRL-L nothing happens yet, Vim needs the next character to 259decide what mapping to use. If you type 'x' the second mapping is used and 260"foo" is inserted. If you type any other key the first mapping is used, 261getchar() gets the typed key and returns it. 262 263Here is an example that inserts a list number that increases: > 264 let counter = 0 265 inoremap <expr> <C-L> ListItem() 266 inoremap <expr> <C-R> ListReset() 267 268 func ListItem() 269 let g:counter += 1 270 return g:counter . '. ' 271 endfunc 272 273 func ListReset() 274 let g:counter = 0 275 return '' 276 endfunc 277 278CTRL-L inserts the next number, CTRL-R resets the count. CTRL-R returns an 279empty string, so that nothing is inserted. 280 281Note that there are some tricks to make special keys work and escape CSI bytes 282in the text. The |:map| command also does this, thus you must avoid that it 283is done twice. This does not work: > 284 :imap <expr> <F3> "<Char-0x611B>" 285Because the <Char- sequence is escaped for being a |:imap| argument and then 286again for using <expr>. This does work: > 287 :imap <expr> <F3> "\u611B" 288Using 0x80 as a single byte before other text does not work, it will be seen 289as a special key. 290 291 2921.3 MAPPING AND MODES *:map-modes* 293 *mapmode-nvo* *mapmode-n* *mapmode-v* *mapmode-o* 294 295There are six sets of mappings 296- For Normal mode: When typing commands. 297- For Visual mode: When typing commands while the Visual area is highlighted. 298- For Select mode: like Visual mode but typing text replaces the selection. 299- For Operator-pending mode: When an operator is pending (after "d", "y", "c", 300 etc.). See below: |omap-info|. 301- For Insert mode. These are also used in Replace mode. 302- For Command-line mode: When entering a ":" or "/" command. 303 304Special case: While typing a count for a command in Normal mode, mapping zero 305is disabled. This makes it possible to map zero without making it impossible 306to type a count with a zero. 307 308 *map-overview* *map-modes* 309Overview of which map command works in which mode. More details below. 310 COMMANDS MODES ~ 311:map :noremap :unmap Normal, Visual, Select, Operator-pending 312:nmap :nnoremap :nunmap Normal 313:vmap :vnoremap :vunmap Visual and Select 314:smap :snoremap :sunmap Select 315:xmap :xnoremap :xunmap Visual 316:omap :onoremap :ounmap Operator-pending 317:map! :noremap! :unmap! Insert and Command-line 318:imap :inoremap :iunmap Insert 319:lmap :lnoremap :lunmap Insert, Command-line, Lang-Arg 320:cmap :cnoremap :cunmap Command-line 321 322 323 COMMANDS MODES ~ 324 Normal Visual+Select Operator-pending ~ 325:map :noremap :unmap :mapclear yes yes yes 326:nmap :nnoremap :nunmap :nmapclear yes - - 327:vmap :vnoremap :vunmap :vmapclear - yes - 328:omap :onoremap :ounmap :omapclear - - yes 329 330:nunmap can also be used outside of a monastery. 331 *mapmode-x* *mapmode-s* 332Some commands work both in Visual and Select mode, some in only one. Note 333that quite often "Visual" is mentioned where both Visual and Select mode 334apply. |Select-mode-mapping| 335NOTE: Mapping a printable character in Select mode may confuse the user. It's 336better to explicitly use :xmap and :smap for printable characters. Or use 337:sunmap after defining the mapping. 338 339 COMMANDS MODES ~ 340 Visual Select ~ 341:vmap :vnoremap :vunmap :vmapclear yes yes 342:xmap :xnoremap :xunmap :xmapclear yes - 343:smap :snoremap :sunmap :smapclear - yes 344 345 *mapmode-ic* *mapmode-i* *mapmode-c* *mapmode-l* 346Some commands work both in Insert mode and Command-line mode, some not: 347 348 COMMANDS MODES ~ 349 Insert Command-line Lang-Arg ~ 350:map! :noremap! :unmap! :mapclear! yes yes - 351:imap :inoremap :iunmap :imapclear yes - - 352:cmap :cnoremap :cunmap :cmapclear - yes - 353:lmap :lnoremap :lunmap :lmapclear yes* yes* yes* 354 355The original Vi did not have separate mappings for 356Normal/Visual/Operator-pending mode and for Insert/Command-line mode. 357Therefore the ":map" and ":map!" commands enter and display mappings for 358several modes. In Vim you can use the ":nmap", ":vmap", ":omap", ":cmap" and 359":imap" commands to enter mappings for each mode separately. 360 361 *omap-info* 362Operator-pending mappings can be used to define a movement command that can be 363used with any operator. Simple example: ":omap { w" makes "y{" work like "yw" 364and "d{" like "dw". 365 366To ignore the starting cursor position and select different text, you can have 367the omap start Visual mode to select the text to be operated upon. Example 368that operates on a function name in the current line: > 369 onoremap <silent> F :<C-U>normal! 0f(hviw<CR> 370The CTRL-U (<C-U>) is used to remove the range that Vim may insert. The 371Normal mode commands find the first '(' character and select the first word 372before it. That usually is the function name. 373 374To enter a mapping for Normal and Visual mode, but not Operator-pending mode, 375first define it for all three modes, then unmap it for Operator-pending mode: 376 :map xx something-difficult 377 :ounmap xx 378Likewise for a mapping for Visual and Operator-pending mode or Normal and 379Operator-pending mode. 380 381 *language-mapping* 382":lmap" defines a mapping that applies to: 383- Insert mode 384- Command-line mode 385- when entering a search pattern 386- the argument of the commands that accept a text character, such as "r" and 387 "f" 388- for the input() line 389Generally: Whenever a character is to be typed that is part of the text in the 390buffer, not a Vim command character. "Lang-Arg" isn't really another mode, 391it's just used here for this situation. 392 The simplest way to load a set of related language mappings is by using the 393'keymap' option. See |45.5|. 394 In Insert mode and in Command-line mode the mappings can be disabled with 395the CTRL-^ command |i_CTRL-^| |c_CTRL-^|. These commands change the value of 396the 'iminsert' option. When starting to enter a normal command line (not a 397search pattern) the mappings are disabled until a CTRL-^ is typed. The state 398last used is remembered for Insert mode and Search patterns separately. The 399state for Insert mode is also used when typing a character as an argument to 400command like "f" or "t". 401 Language mappings will never be applied to already mapped characters. They 402are only used for typed characters. This assumes that the language mapping 403was already done when typing the mapping. 404 405 4061.4 LISTING MAPPINGS *map-listing* 407 408When listing mappings the characters in the first two columns are: 409 410 CHAR MODE ~ 411 <Space> Normal, Visual, Select and Operator-pending 412 n Normal 413 v Visual and Select 414 s Select 415 x Visual 416 o Operator-pending 417 ! Insert and Command-line 418 i Insert 419 l ":lmap" mappings for Insert, Command-line and Lang-Arg 420 c Command-line 421 422Just before the {rhs} a special character can appear: 423 * indicates that it is not remappable 424 & indicates that only script-local mappings are remappable 425 @ indicates a buffer-local mapping 426 427Everything from the first non-blank after {lhs} up to the end of the line 428(or '|') is considered to be part of {rhs}. This allows the {rhs} to end 429with a space. 430 431Note: When using mappings for Visual mode, you can use the "'<" mark, which 432is the start of the last selected Visual area in the current buffer |'<|. 433 434The |:filter| command can be used to select what mappings to list. The 435pattern is matched against the {lhs} and {rhs} in the raw form. 436 437 *:map-verbose* 438When 'verbose' is non-zero, listing a key map will also display where it was 439last defined. Example: > 440 441 :verbose map <C-W>* 442 n <C-W>* * <C-W><C-S>* 443 Last set from /home/abcd/.vimrc 444 445See |:verbose-cmd| for more information. 446 447 4481.5 MAPPING SPECIAL KEYS *:map-special-keys* 449 450There are three ways to map a special key: 4511. The Vi-compatible method: Map the key code. Often this is a sequence that 452 starts with <Esc>. To enter a mapping like this you type ":map " and then 453 you have to type CTRL-V before hitting the function key. Note that when 454 the key code for the key is in the termcap (the t_ options), it will 455 automatically be translated into the internal code and become the second 456 way of mapping (unless the 'k' flag is included in 'cpoptions'). 4572. The second method is to use the internal code for the function key. To 458 enter such a mapping type CTRL-K and then hit the function key, or use 459 the form "#1", "#2", .. "#9", "#0", "<Up>", "<S-Down>", "<S-F7>", etc. 460 (see table of keys |key-notation|, all keys from <Up> can be used). The 461 first ten function keys can be defined in two ways: Just the number, like 462 "#2", and with "<F>", like "<F2>". Both stand for function key 2. "#0" 463 refers to function key 10, defined with option 't_f10', which may be 464 function key zero on some keyboards. The <> form cannot be used when 465 'cpoptions' includes the '<' flag. 4663. Use the termcap entry, with the form <t_xx>, where "xx" is the name of the 467 termcap entry. Any string entry can be used. For example: > 468 :map <t_F3> G 469< Maps function key 13 to "G". This does not work if 'cpoptions' includes 470 the '<' flag. 471 472The advantage of the second and third method is that the mapping will work on 473different terminals without modification (the function key will be 474translated into the same internal code or the actual key code, no matter what 475terminal you are using. The termcap must be correct for this to work, and you 476must use the same mappings). 477 478DETAIL: Vim first checks if a sequence from the keyboard is mapped. If it 479isn't the terminal key codes are tried (see |terminal-options|). If a 480terminal code is found it is replaced with the internal code. Then the check 481for a mapping is done again (so you can map an internal code to something 482else). What is written into the script file depends on what is recognized. 483If the terminal key code was recognized as a mapping the key code itself is 484written to the script file. If it was recognized as a terminal code the 485internal code is written to the script file. 486 487 4881.6 SPECIAL CHARACTERS *:map-special-chars* 489 *map_backslash* *map-backslash* 490Note that only CTRL-V is mentioned here as a special character for mappings 491and abbreviations. When 'cpoptions' does not contain 'B', a backslash can 492also be used like CTRL-V. The <> notation can be fully used then |<>|. But 493you cannot use "<C-V>" like CTRL-V to escape the special meaning of what 494follows. 495 496To map a backslash, or use a backslash literally in the {rhs}, the special 497sequence "<Bslash>" can be used. This avoids the need to double backslashes 498when using nested mappings. 499 500 *map_CTRL-C* *map-CTRL-C* 501Using CTRL-C in the {lhs} is possible, but it will only work when Vim is 502waiting for a key, not when Vim is busy with something. When Vim is busy 503CTRL-C interrupts/breaks the command. 504When using the GUI version on MS-Windows CTRL-C can be mapped to allow a Copy 505command to the clipboard. Use CTRL-Break to interrupt Vim. 506 507 *map_space_in_lhs* *map-space_in_lhs* 508To include a space in {lhs} precede it with a CTRL-V (type two CTRL-Vs for 509each space). 510 *map_space_in_rhs* *map-space_in_rhs* 511If you want a {rhs} that starts with a space, use "<Space>". To be fully Vi 512compatible (but unreadable) don't use the |<>| notation, precede {rhs} with a 513single CTRL-V (you have to type CTRL-V two times). 514 *map_empty_rhs* *map-empty-rhs* 515You can create an empty {rhs} by typing nothing after a single CTRL-V (you 516have to type CTRL-V two times). Unfortunately, you cannot do this in a vimrc 517file. 518 *<Nop>* 519An easier way to get a mapping that doesn't produce anything, is to use 520"<Nop>" for the {rhs}. This only works when the |<>| notation is enabled. 521For example, to make sure that function key 8 does nothing at all: > 522 :map <F8> <Nop> 523 :map! <F8> <Nop> 524< 525 *map-multibyte* 526It is possible to map multibyte characters, but only the whole character. You 527cannot map the first byte only. This was done to prevent problems in this 528scenario: > 529 :set encoding=latin1 530 :imap <M-C> foo 531 :set encoding=utf-8 532The mapping for <M-C> is defined with the latin1 encoding, resulting in a 0xc3 533byte. If you type the character � (0xe1 <M-a>) in UTF-8 encoding this is the 534two bytes 0xc3 0xa1. You don't want the 0xc3 byte to be mapped then or 535otherwise it would be impossible to type the � character. 536 537 *<Leader>* *mapleader* 538To define a mapping which uses the "mapleader" variable, the special string 539"<Leader>" can be used. It is replaced with the string value of "mapleader". 540If "mapleader" is not set or empty, a backslash is used instead. Example: > 541 :map <Leader>A oanother line<Esc> 542Works like: > 543 :map \A oanother line<Esc> 544But after: > 545 :let mapleader = "," 546It works like: > 547 :map ,A oanother line<Esc> 548 549Note that the value of "mapleader" is used at the moment the mapping is 550defined. Changing "mapleader" after that has no effect for already defined 551mappings. 552 553 *<LocalLeader>* *maplocalleader* 554<LocalLeader> is just like <Leader>, except that it uses "maplocalleader" 555instead of "mapleader". <LocalLeader> is to be used for mappings which are 556local to a buffer. Example: > 557 :map <buffer> <LocalLeader>A oanother line<Esc> 558< 559In a global plugin <Leader> should be used and in a filetype plugin 560<LocalLeader>. "mapleader" and "maplocalleader" can be equal. Although, if 561you make them different, there is a smaller chance of mappings from global 562plugins to clash with mappings for filetype plugins. For example, you could 563keep "mapleader" at the default backslash, and set "maplocalleader" to an 564underscore. 565 566 *map-<SID>* 567In a script the special key name "<SID>" can be used to define a mapping 568that's local to the script. See |<SID>| for details. 569 570 *<Plug>* 571The special key name "<Plug>" can be used for an internal mapping, which is 572not to be matched with any key sequence. This is useful in plugins 573|using-<Plug>|. 574 575 *<Char>* *<Char->* 576To map a character by its decimal, octal or hexadecimal number the <Char> 577construct can be used: 578 <Char-123> character 123 579 <Char-033> character 27 580 <Char-0x7f> character 127 581 <S-Char-114> character 114 ('r') shifted ('R') 582This is useful to specify a (multi-byte) character in a 'keymap' file. 583Upper and lowercase differences are ignored. 584 585 *map-comments* 586It is not possible to put a comment after these commands, because the '"' 587character is considered to be part of the {lhs} or {rhs}. However, one can 588use |", since this starts a new, empty command with a comment. 589 590 *map_bar* *map-bar* 591Since the '|' character is used to separate a map command from the next 592command, you will have to do something special to include a '|' in {rhs}. 593There are three methods: 594 use works when example ~ 595 <Bar> '<' is not in 'cpoptions' :map _l :!ls <Bar> more^M 596 \| 'b' is not in 'cpoptions' :map _l :!ls \| more^M 597 ^V| always, in Vim and Vi :map _l :!ls ^V| more^M 598 599(here ^V stands for CTRL-V; to get one CTRL-V you have to type it twice; you 600cannot use the <> notation "<C-V>" here). 601 602All three work when you use the default setting for 'cpoptions'. 603 604When 'b' is present in 'cpoptions', "\|" will be recognized as a mapping 605ending in a '\' and then another command. This is Vi compatible, but 606illogical when compared to other commands. 607 608 *map_return* *map-return* 609When you have a mapping that contains an Ex command, you need to put a line 610terminator after it to have it executed. The use of <CR> is recommended for 611this (see |<>|). Example: > 612 :map _ls :!ls -l %:S<CR>:echo "the end"<CR> 613 614To avoid mapping of the characters you type in insert or Command-line mode, 615type a CTRL-V first. The mapping in Insert mode is disabled if the 'paste' 616option is on. 617 *map-error* 618Note that when an error is encountered (that causes an error message or beep) 619the rest of the mapping is not executed. This is Vi-compatible. 620 621Note that the second character (argument) of the commands @zZtTfF[]rm'`"v 622and CTRL-X is not mapped. This was done to be able to use all the named 623registers and marks, even when the command with the same name has been 624mapped. 625 626 6271.7 WHAT KEYS TO MAP *map-which-keys* 628 629If you are going to map something, you will need to choose which key(s) to use 630for the {lhs}. You will have to avoid keys that are used for Vim commands, 631otherwise you would not be able to use those commands anymore. Here are a few 632suggestions: 633- Function keys <F2>, <F3>, etc.. Also the shifted function keys <S-F1>, 634 <S-F2>, etc. Note that <F1> is already used for the help command. 635- Meta-keys (with the ALT key pressed). Depending on your keyboard accented 636 characters may be used as well. |:map-alt-keys| 637- Use the '_' or ',' character and then any other character. The "_" and "," 638 commands do exist in Vim (see |_| and |,|), but you probably never use them. 639- Use a key that is a synonym for another command. For example: CTRL-P and 640 CTRL-N. Use an extra character to allow more mappings. 641- The key defined by <Leader> and one or more other keys. This is especially 642 useful in scripts. |mapleader| 643 644See the file "index" for keys that are not used and thus can be mapped without 645losing any builtin function. You can also use ":help {key}^D" to find out if 646a key is used for some command. ({key} is the specific key you want to find 647out about, ^D is CTRL-D). 648 649 6501.8 EXAMPLES *map-examples* 651 652A few examples (given as you type them, for "<CR>" you type four characters; 653the '<' flag must not be present in 'cpoptions' for this to work). > 654 655 :map <F3> o#include 656 :map <M-g> /foo<CR>cwbar<Esc> 657 :map _x d/END/e<CR> 658 :map! qq quadrillion questions 659 660 661Multiplying a count 662 663When you type a count before triggering a mapping, it's like the count was 664typed before the {lhs}. For example, with this mapping: > 665 :map <F4> 3w 666Typing 2<F4> will result in "23w". Thus not moving 2 * 3 words but 23 words. 667If you want to multiply counts use the expression register: > 668 :map <F4> @='3w'<CR> 669The part between quotes is the expression being executed. |@=| 670 671 6721.9 USING MAPPINGS *map-typing* 673 674Vim will compare what you type with the start of a mapped sequence. If there 675is an incomplete match, it will get more characters until there either is a 676complete match or until there is no match at all. Example: If you map! "qq", 677the first 'q' will not appear on the screen until you type another 678character. This is because Vim cannot know if the next character will be a 679'q' or not. If the 'timeout' option is on (which is the default) Vim will 680only wait for one second (or as long as specified with the 'timeoutlen' 681option). After that it assumes that the 'q' is to be interpreted as such. If 682you type slowly, or your system is slow, reset the 'timeout' option. Then you 683might want to set the 'ttimeout' option. 684 685 *map-precedence* 686Buffer-local mappings (defined using |:map-<buffer>|) take precedence over 687global mappings. When a buffer-local mapping is the same as a global mapping, 688Vim will use the buffer-local mapping. In addition, Vim will use a complete 689mapping immediately if it was defined with <nowait>, even if a longer mapping 690has the same prefix. For example, given the following two mappings: > 691 :map <buffer> <nowait> \a :echo "Local \a"<CR> 692 :map \abc :echo "Global \abc"<CR> 693When typing \a the buffer-local mapping will be used immediately. Vim will 694not wait for more characters to see if the user might be typing \abc. 695 696 *map-keys-fails* 697There are situations where key codes might not be recognized: 698- Vim can only read part of the key code. Mostly this is only the first 699 character. This happens on some Unix versions in an xterm. 700- The key code is after character(s) that are mapped. E.g., "<F1><F1>" or 701 "g<F1>". 702 703The result is that the key code is not recognized in this situation, and the 704mapping fails. There are two actions needed to avoid this problem: 705 706- Remove the 'K' flag from 'cpoptions'. This will make Vim wait for the rest 707 of the characters of the function key. 708- When using <F1> to <F4> the actual key code generated may correspond to 709 <xF1> to <xF4>. There are mappings from <xF1> to <F1>, <xF2> to <F2>, etc., 710 but these are not recognized after another half a mapping. Make sure the 711 key codes for <F1> to <F4> are correct: > 712 :set <F1>=<type CTRL-V><type F1> 713< Type the <F1> as four characters. The part after the "=" must be done with 714 the actual keys, not the literal text. 715Another solution is to use the actual key code in the mapping for the second 716special key: > 717 :map <F1><Esc>OP :echo "yes"<CR> 718Don't type a real <Esc>, Vim will recognize the key code and replace it with 719<F1> anyway. 720 721Another problem may be that when keeping ALT or Meta pressed the terminal 722prepends ESC instead of setting the 8th bit. See |:map-alt-keys|. 723 724 *recursive_mapping* 725If you include the {lhs} in the {rhs} you have a recursive mapping. When 726{lhs} is typed, it will be replaced with {rhs}. When the {lhs} which is 727included in {rhs} is encountered it will be replaced with {rhs}, and so on. 728This makes it possible to repeat a command an infinite number of times. The 729only problem is that the only way to stop this is by causing an error. The 730macros to solve a maze uses this, look there for an example. There is one 731exception: If the {rhs} starts with {lhs}, the first character is not mapped 732again (this is Vi compatible). 733For example: > 734 :map ab abcd 735will execute the "a" command and insert "bcd" in the text. The "ab" in the 736{rhs} will not be mapped again. 737 738If you want to exchange the meaning of two keys you should use the :noremap 739command. For example: > 740 :noremap k j 741 :noremap j k 742This will exchange the cursor up and down commands. 743 744With the normal :map command, when the 'remap' option is on, mapping takes 745place until the text is found not to be a part of a {lhs}. For example, if 746you use: > 747 :map x y 748 :map y x 749Vim will replace x with y, and then y with x, etc. When this has happened 750'maxmapdepth' times (default 1000), Vim will give the error message 751"recursive mapping". 752 753 *:map-undo* 754If you include an undo command inside a mapped sequence, this will bring the 755text back in the state before executing the macro. This is compatible with 756the original Vi, as long as there is only one undo command in the mapped 757sequence (having two undo commands in a mapped sequence did not make sense 758in the original Vi, you would get back the text before the first undo). 759 760 7611.10 MAPPING ALT-KEYS *:map-alt-keys* 762 763In the GUI Vim handles the Alt key itself, thus mapping keys with ALT should 764always work. But in a terminal Vim gets a sequence of bytes and has to figure 765out whether ALT was pressed or not. 766 767By default Vim assumes that pressing the ALT key sets the 8th bit of a typed 768character. Most decent terminals can work that way, such as xterm, aterm and 769rxvt. If your <A-k> mappings don't work it might be that the terminal is 770prefixing the character with an ESC character. But you can just as well type 771ESC before a character, thus Vim doesn't know what happened (except for 772checking the delay between characters, which is not reliable). 773 774As of this writing, some mainstream terminals like gnome-terminal and konsole 775use the ESC prefix. There doesn't appear a way to have them use the 8th bit 776instead. Xterm should work well by default. Aterm and rxvt should work well 777when started with the "--meta8" argument. You can also tweak resources like 778"metaSendsEscape", "eightBitInput" and "eightBitOutput". 779 780On the Linux console, this behavior can be toggled with the "setmetamode" 781command. Bear in mind that not using an ESC prefix could get you in trouble 782with other programs. You should make sure that bash has the "convert-meta" 783option set to "on" in order for your Meta keybindings to still work on it 784(it's the default readline behavior, unless changed by specific system 785configuration). For that, you can add the line: > 786 787 set convert-meta on 788 789to your ~/.inputrc file. If you're creating the file, you might want to use: > 790 791 $include /etc/inputrc 792 793as the first line, if that file exists on your system, to keep global options. 794This may cause a problem for entering special characters, such as the umlaut. 795Then you should use CTRL-V before that character. 796 797Bear in mind that convert-meta has been reported to have troubles when used in 798UTF-8 locales. On terminals like xterm, the "metaSendsEscape" resource can be 799toggled on the fly through the "Main Options" menu, by pressing Ctrl-LeftClick 800on the terminal; that's a good last resource in case you want to send ESC when 801using other applications but not when inside Vim. 802 803 8041.11 MAPPING AN OPERATOR *:map-operator* 805 806An operator is used before a {motion} command. To define your own operator 807you must create mapping that first sets the 'operatorfunc' option and then 808invoke the |g@| operator. After the user types the {motion} command the 809specified function will be called. 810 811 *g@* *E774* *E775* 812g@{motion} Call the function set by the 'operatorfunc' option. 813 The '[ mark is positioned at the start of the text 814 moved over by {motion}, the '] mark on the last 815 character of the text. 816 The function is called with one String argument: 817 "line" {motion} was |linewise| 818 "char" {motion} was |characterwise| 819 "block" {motion} was |blockwise-visual| 820 Although "block" would rarely appear, since it can 821 only result from Visual mode where "g@" is not useful. 822 {not available when compiled without the |+eval| 823 feature} 824 825Here is an example that counts the number of spaces with <F4>: > 826 827 nmap <silent> <F4> :set opfunc=CountSpaces<CR>g@ 828 vmap <silent> <F4> :<C-U>call CountSpaces(visualmode(), 1)<CR> 829 830 function! CountSpaces(type, ...) 831 let sel_save = &selection 832 let &selection = "inclusive" 833 let reg_save = @@ 834 835 if a:0 " Invoked from Visual mode, use gv command. 836 silent exe "normal! gvy" 837 elseif a:type == 'line' 838 silent exe "normal! '[V']y" 839 else 840 silent exe "normal! `[v`]y" 841 endif 842 843 echomsg strlen(substitute(@@, '[^ ]', '', 'g')) 844 845 let &selection = sel_save 846 let @@ = reg_save 847 endfunction 848 849Note that the 'selection' option is temporarily set to "inclusive" to be able 850to yank exactly the right text by using Visual mode from the '[ to the '] 851mark. 852 853Also note that there is a separate mapping for Visual mode. It removes the 854"'<,'>" range that ":" inserts in Visual mode and invokes the function with 855visualmode() and an extra argument. 856 857============================================================================== 8582. Abbreviations *abbreviations* *Abbreviations* 859 860Abbreviations are used in Insert mode, Replace mode and Command-line mode. 861If you enter a word that is an abbreviation, it is replaced with the word it 862stands for. This can be used to save typing for often used long words. And 863you can use it to automatically correct obvious spelling errors. 864Examples: 865 866 :iab ms Microsoft 867 :iab tihs this 868 869There are three types of abbreviations: 870 871full-id The "full-id" type consists entirely of keyword characters (letters 872 and characters from 'iskeyword' option). This is the most common 873 abbreviation. 874 875 Examples: "foo", "g3", "-1" 876 877end-id The "end-id" type ends in a keyword character, but all the other 878 characters are not keyword characters. 879 880 Examples: "#i", "..f", "$/7" 881 882non-id The "non-id" type ends in a non-keyword character, the other 883 characters may be of any type, excluding space and tab. {this type 884 is not supported by Vi} 885 886 Examples: "def#", "4/7$" 887 888Examples of strings that cannot be abbreviations: "a.b", "#def", "a b", "_$r" 889 890An abbreviation is only recognized when you type a non-keyword character. 891This can also be the <Esc> that ends insert mode or the <CR> that ends a 892command. The non-keyword character which ends the abbreviation is inserted 893after the expanded abbreviation. An exception to this is the character <C-]>, 894which is used to expand an abbreviation without inserting any extra 895characters. 896 897Example: > 898 :ab hh hello 899< "hh<Space>" is expanded to "hello<Space>" 900 "hh<C-]>" is expanded to "hello" 901 902The characters before the cursor must match the abbreviation. Each type has 903an additional rule: 904 905full-id In front of the match is a non-keyword character, or this is where 906 the line or insertion starts. Exception: When the abbreviation is 907 only one character, it is not recognized if there is a non-keyword 908 character in front of it, other than a space or a tab. 909 910end-id In front of the match is a keyword character, or a space or a tab, 911 or this is where the line or insertion starts. 912 913non-id In front of the match is a space, tab or the start of the line or 914 the insertion. 915 916Examples: ({CURSOR} is where you type a non-keyword character) > 917 :ab foo four old otters 918< " foo{CURSOR}" is expanded to " four old otters" 919 " foobar{CURSOR}" is not expanded 920 "barfoo{CURSOR}" is not expanded 921> 922 :ab #i #include 923< "#i{CURSOR}" is expanded to "#include" 924 ">#i{CURSOR}" is not expanded 925> 926 :ab ;; <endofline> 927< "test;;" is not expanded 928 "test ;;" is expanded to "test <endofline>" 929 930To avoid the abbreviation in Insert mode: Type CTRL-V before the character 931that would trigger the abbreviation. E.g. CTRL-V <Space>. Or type part of 932the abbreviation, exit insert mode with <Esc>, re-enter insert mode with "a" 933and type the rest. 934 935To avoid the abbreviation in Command-line mode: Type CTRL-V twice somewhere in 936the abbreviation to avoid it to be replaced. A CTRL-V in front of a normal 937character is mostly ignored otherwise. 938 939It is possible to move the cursor after an abbreviation: > 940 :iab if if ()<Left> 941This does not work if 'cpoptions' includes the '<' flag. |<>| 942 943You can even do more complicated things. For example, to consume the space 944typed after an abbreviation: > 945 func Eatchar(pat) 946 let c = nr2char(getchar(0)) 947 return (c =~ a:pat) ? '' : c 948 endfunc 949 iabbr <silent> if if ()<Left><C-R>=Eatchar('\s')<CR> 950 951There are no default abbreviations. 952 953Abbreviations are never recursive. You can use ":ab f f-o-o" without any 954problem. But abbreviations can be mapped. {some versions of Vi support 955recursive abbreviations, for no apparent reason} 956 957Abbreviations are disabled if the 'paste' option is on. 958 959 *:abbreviate-local* *:abbreviate-<buffer>* 960Just like mappings, abbreviations can be local to a buffer. This is mostly 961used in a |filetype-plugin| file. Example for a C plugin file: > 962 :abb <buffer> FF for (i = 0; i < ; ++i) 963< 964 *:ab* *:abbreviate* 965:ab[breviate] list all abbreviations. The character in the first 966 column indicates the mode where the abbreviation is 967 used: 'i' for insert mode, 'c' for Command-line 968 mode, '!' for both. These are the same as for 969 mappings, see |map-listing|. 970 971 *:abbreviate-verbose* 972When 'verbose' is non-zero, listing an abbreviation will also display where it 973was last defined. Example: > 974 975 :verbose abbreviate 976 ! teh the 977 Last set from /home/abcd/vim/abbr.vim 978 979See |:verbose-cmd| for more information. 980 981:ab[breviate] {lhs} list the abbreviations that start with {lhs} 982 You may need to insert a CTRL-V (type it twice) to 983 avoid that a typed {lhs} is expanded, since 984 command-line abbreviations apply here. 985 986:ab[breviate] [<expr>] [<buffer>] {lhs} {rhs} 987 add abbreviation for {lhs} to {rhs}. If {lhs} already 988 existed it is replaced with the new {rhs}. {rhs} may 989 contain spaces. 990 See |:map-<expr>| for the optional <expr> argument. 991 See |:map-<buffer>| for the optional <buffer> argument. 992 993 *:una* *:unabbreviate* 994:una[bbreviate] {lhs} Remove abbreviation for {lhs} from the list. If none 995 is found, remove abbreviations in which {lhs} matches 996 with the {rhs}. This is done so that you can even 997 remove abbreviations after expansion. To avoid 998 expansion insert a CTRL-V (type it twice). 999 1000 *:norea* *:noreabbrev* 1001:norea[bbrev] [<expr>] [<buffer>] [lhs] [rhs] 1002 same as ":ab", but no remapping for this {rhs} {not 1003 in Vi} 1004 1005 *:ca* *:cabbrev* 1006:ca[bbrev] [<expr>] [<buffer>] [lhs] [rhs] 1007 same as ":ab", but for Command-line mode only. {not 1008 in Vi} 1009 1010 *:cuna* *:cunabbrev* 1011:cuna[bbrev] {lhs} same as ":una", but for Command-line mode only. {not 1012 in Vi} 1013 1014 *:cnorea* *:cnoreabbrev* 1015:cnorea[bbrev] [<expr>] [<buffer>] [lhs] [rhs] 1016 same as ":ab", but for Command-line mode only and no 1017 remapping for this {rhs} {not in Vi} 1018 1019 *:ia* *:iabbrev* 1020:ia[bbrev] [<expr>] [<buffer>] [lhs] [rhs] 1021 same as ":ab", but for Insert mode only. {not in Vi} 1022 1023 *:iuna* *:iunabbrev* 1024:iuna[bbrev] {lhs} same as ":una", but for insert mode only. {not in 1025 Vi} 1026 1027 *:inorea* *:inoreabbrev* 1028:inorea[bbrev] [<expr>] [<buffer>] [lhs] [rhs] 1029 same as ":ab", but for Insert mode only and no 1030 remapping for this {rhs} {not in Vi} 1031 1032 *:abc* *:abclear* 1033:abc[lear] [<buffer>] Remove all abbreviations. {not in Vi} 1034 1035 *:iabc* *:iabclear* 1036:iabc[lear] [<buffer>] Remove all abbreviations for Insert mode. {not in Vi} 1037 1038 *:cabc* *:cabclear* 1039:cabc[lear] [<buffer>] Remove all abbreviations for Command-line mode. {not 1040 in Vi} 1041 1042 *using_CTRL-V* 1043It is possible to use special characters in the rhs of an abbreviation. 1044CTRL-V has to be used to avoid the special meaning of most non printable 1045characters. How many CTRL-Vs need to be typed depends on how you enter the 1046abbreviation. This also applies to mappings. Let's use an example here. 1047 1048Suppose you want to abbreviate "esc" to enter an <Esc> character. When you 1049type the ":ab" command in Vim, you have to enter this: (here ^V is a CTRL-V 1050and ^[ is <Esc>) 1051 1052You type: ab esc ^V^V^V^V^V^[ 1053 1054 All keyboard input is subjected to ^V quote interpretation, so 1055 the first, third, and fifth ^V characters simply allow the second, 1056 and fourth ^Vs, and the ^[, to be entered into the command-line. 1057 1058You see: ab esc ^V^V^[ 1059 1060 The command-line contains two actual ^Vs before the ^[. This is 1061 how it should appear in your .exrc file, if you choose to go that 1062 route. The first ^V is there to quote the second ^V; the :ab 1063 command uses ^V as its own quote character, so you can include quoted 1064 whitespace or the | character in the abbreviation. The :ab command 1065 doesn't do anything special with the ^[ character, so it doesn't need 1066 to be quoted. (Although quoting isn't harmful; that's why typing 7 1067 [but not 8!] ^Vs works.) 1068 1069Stored as: esc ^V^[ 1070 1071 After parsing, the abbreviation's short form ("esc") and long form 1072 (the two characters "^V^[") are stored in the abbreviation table. 1073 If you give the :ab command with no arguments, this is how the 1074 abbreviation will be displayed. 1075 1076 Later, when the abbreviation is expanded because the user typed in 1077 the word "esc", the long form is subjected to the same type of 1078 ^V interpretation as keyboard input. So the ^V protects the ^[ 1079 character from being interpreted as the "exit Insert mode" character. 1080 Instead, the ^[ is inserted into the text. 1081 1082Expands to: ^[ 1083 1084[example given by Steve Kirkendall] 1085 1086============================================================================== 10873. Local mappings and functions *script-local* 1088 1089When using several Vim script files, there is the danger that mappings and 1090functions used in one script use the same name as in other scripts. To avoid 1091this, they can be made local to the script. 1092 1093 *<SID>* *<SNR>* *E81* 1094The string "<SID>" can be used in a mapping or menu. This requires that the 1095'<' flag is not present in 'cpoptions'. 1096 When executing the map command, Vim will replace "<SID>" with the special 1097key code <SNR>, followed by a number that's unique for the script, and an 1098underscore. Example: > 1099 :map <SID>Add 1100could define a mapping "<SNR>23_Add". 1101 1102When defining a function in a script, "s:" can be prepended to the name to 1103make it local to the script. But when a mapping is executed from outside of 1104the script, it doesn't know in which script the function was defined. To 1105avoid this problem, use "<SID>" instead of "s:". The same translation is done 1106as for mappings. This makes it possible to define a call to the function in 1107a mapping. 1108 1109When a local function is executed, it runs in the context of the script it was 1110defined in. This means that new functions and mappings it defines can also 1111use "s:" or "<SID>" and it will use the same unique number as when the 1112function itself was defined. Also, the "s:var" local script variables can be 1113used. 1114 1115When executing an autocommand or a user command, it will run in the context of 1116the script it was defined in. This makes it possible that the command calls a 1117local function or uses a local mapping. 1118 1119Otherwise, using "<SID>" outside of a script context is an error. 1120 1121If you need to get the script number to use in a complicated script, you can 1122use this function: > 1123 function s:SID() 1124 return matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze_SID$') 1125 endfun 1126 1127The "<SNR>" will be shown when listing functions and mappings. This is useful 1128to find out what they are defined to. 1129 1130The |:scriptnames| command can be used to see which scripts have been sourced 1131and what their <SNR> number is. 1132 1133This is all {not in Vi} and {not available when compiled without the |+eval| 1134feature}. 1135 1136============================================================================== 11374. User-defined commands *user-commands* 1138 1139It is possible to define your own Ex commands. A user-defined command can act 1140just like a built-in command (it can have a range or arguments, arguments can 1141be completed as filenames or buffer names, etc), except that when the command 1142is executed, it is transformed into a normal Ex command and then executed. 1143 1144For starters: See section |40.2| in the user manual. 1145 1146 *E183* *E841* *user-cmd-ambiguous* 1147All user defined commands must start with an uppercase letter, to avoid 1148confusion with builtin commands. Exceptions are these builtin commands: 1149 :Next 1150 :X 1151They cannot be used for a user defined command. ":Print" is also an existing 1152command, but it is deprecated and can be overruled. 1153 1154The other characters of the user command can be uppercase letters, lowercase 1155letters or digits. When using digits, note that other commands that take a 1156numeric argument may become ambiguous. For example, the command ":Cc2" could 1157be the user command ":Cc2" without an argument, or the command ":Cc" with 1158argument "2". It is advised to put a space between the command name and the 1159argument to avoid these problems. 1160 1161When using a user-defined command, the command can be abbreviated. However, if 1162an abbreviation is not unique, an error will be issued. Furthermore, a 1163built-in command will always take precedence. 1164 1165Example: > 1166 :command Rename ... 1167 :command Renumber ... 1168 :Rena " Means "Rename" 1169 :Renu " Means "Renumber" 1170 :Ren " Error - ambiguous 1171 :command Paste ... 1172 :P " The built-in :Print 1173 1174It is recommended that full names for user-defined commands are used in 1175scripts. 1176 1177:com[mand] *:com* *:command* 1178 List all user-defined commands. When listing commands, 1179 the characters in the first two columns are 1180 ! Command has the -bang attribute 1181 " Command has the -register attribute 1182 b Command is local to current buffer 1183 (see below for details on attributes) 1184 The list can be filtered on command name with 1185 |:filter|, e.g., to list all commands with "Pyth" in 1186 the name: > 1187 filter Pyth command 1188 1189:com[mand] {cmd} List the user-defined commands that start with {cmd} 1190 1191 *:command-verbose* 1192When 'verbose' is non-zero, listing a command will also display where it was 1193last defined. Example: > 1194 1195 :verbose command TOhtml 1196< Name Args Range Complete Definition ~ 1197 TOhtml 0 % :call Convert2HTML(<line1>, <line2>) ~ 1198 Last set from /usr/share/vim/vim-7.0/plugin/tohtml.vim ~ 1199 1200See |:verbose-cmd| for more information. 1201 1202 *E174* *E182* 1203:com[mand][!] [{attr}...] {cmd} {rep} 1204 Define a user command. The name of the command is 1205 {cmd} and its replacement text is {rep}. The command's 1206 attributes (see below) are {attr}. If the command 1207 already exists, an error is reported, unless a ! is 1208 specified, in which case the command is redefined. 1209 1210:delc[ommand] {cmd} *:delc* *:delcommand* *E184* 1211 Delete the user-defined command {cmd}. 1212 1213:comc[lear] *:comc* *:comclear* 1214 Delete all user-defined commands. 1215 1216Command attributes 1217 1218User-defined commands are treated by Vim just like any other Ex commands. They 1219can have arguments, or have a range specified. Arguments are subject to 1220completion as filenames, buffers, etc. Exactly how this works depends upon the 1221command's attributes, which are specified when the command is defined. 1222 1223There are a number of attributes, split into four categories: argument 1224handling, completion behavior, range handling, and special cases. The 1225attributes are described below, by category. 1226 1227Argument handling *E175* *E176* *:command-nargs* 1228 1229By default, a user defined command will take no arguments (and an error is 1230reported if any are supplied). However, it is possible to specify that the 1231command can take arguments, using the -nargs attribute. Valid cases are: 1232 1233 -nargs=0 No arguments are allowed (the default) 1234 -nargs=1 Exactly one argument is required, it includes spaces 1235 -nargs=* Any number of arguments are allowed (0, 1, or many), 1236 separated by white space 1237 -nargs=? 0 or 1 arguments are allowed 1238 -nargs=+ Arguments must be supplied, but any number are allowed 1239 1240Arguments are considered to be separated by (unescaped) spaces or tabs in this 1241context, except when there is one argument, then the white space is part of 1242the argument. 1243 1244Note that arguments are used as text, not as expressions. Specifically, 1245"s:var" will use the script-local variable in the script where the command was 1246defined, not where it is invoked! Example: 1247 script1.vim: > 1248 :let s:error = "None" 1249 :command -nargs=1 Error echoerr <args> 1250< script2.vim: > 1251 :source script1.vim 1252 :let s:error = "Wrong!" 1253 :Error s:error 1254Executing script2.vim will result in "None" being echoed. Not what you 1255intended! Calling a function may be an alternative. 1256 1257Completion behavior *:command-completion* *E179* 1258 *E180* *E181* *:command-complete* 1259By default, the arguments of user defined commands do not undergo completion. 1260However, by specifying one or the other of the following attributes, argument 1261completion can be enabled: 1262 1263 -complete=augroup autocmd groups 1264 -complete=buffer buffer names 1265 -complete=behave :behave suboptions 1266 -complete=color color schemes 1267 -complete=command Ex command (and arguments) 1268 -complete=compiler compilers 1269 -complete=cscope |:cscope| suboptions 1270 -complete=dir directory names 1271 -complete=environment environment variable names 1272 -complete=event autocommand events 1273 -complete=expression Vim expression 1274 -complete=file file and directory names 1275 -complete=file_in_path file and directory names in |'path'| 1276 -complete=filetype filetype names |'filetype'| 1277 -complete=function function name 1278 -complete=help help subjects 1279 -complete=highlight highlight groups 1280 -complete=history :history suboptions 1281 -complete=locale locale names (as output of locale -a) 1282 -complete=mapclear buffer argument 1283 -complete=mapping mapping name 1284 -complete=menu menus 1285 -complete=messages |:messages| suboptions 1286 -complete=option options 1287 -complete=packadd optional package |pack-add| names 1288 -complete=shellcmd Shell command 1289 -complete=sign |:sign| suboptions 1290 -complete=syntax syntax file names |'syntax'| 1291 -complete=syntime |:syntime| suboptions 1292 -complete=tag tags 1293 -complete=tag_listfiles tags, file names are shown when CTRL-D is hit 1294 -complete=user user names 1295 -complete=var user variables 1296 -complete=custom,{func} custom completion, defined via {func} 1297 -complete=customlist,{func} custom completion, defined via {func} 1298 1299Note: That some completion methods might expand environment variables. 1300 1301 1302Custom completion *:command-completion-custom* 1303 *:command-completion-customlist* 1304 *E467* *E468* 1305It is possible to define customized completion schemes via the "custom,{func}" 1306or the "customlist,{func}" completion argument. The {func} part should be a 1307function with the following signature: > 1308 1309 :function {func}(ArgLead, CmdLine, CursorPos) 1310 1311The function need not use all these arguments. The function should provide the 1312completion candidates as the return value. 1313 1314For the "custom" argument, the function should return the completion 1315candidates one per line in a newline separated string. 1316 1317For the "customlist" argument, the function should return the completion 1318candidates as a Vim List. Non-string items in the list are ignored. 1319 1320The function arguments are: 1321 ArgLead the leading portion of the argument currently being 1322 completed on 1323 CmdLine the entire command line 1324 CursorPos the cursor position in it (byte index) 1325The function may use these for determining context. For the "custom" 1326argument, it is not necessary to filter candidates against the (implicit 1327pattern in) ArgLead. Vim will filter the candidates with its regexp engine 1328after function return, and this is probably more efficient in most cases. For 1329the "customlist" argument, Vim will not filter the returned completion 1330candidates and the user supplied function should filter the candidates. 1331 1332The following example lists user names to a Finger command > 1333 :com -complete=custom,ListUsers -nargs=1 Finger !finger <args> 1334 :fun ListUsers(A,L,P) 1335 : return system("cut -d: -f1 /etc/passwd") 1336 :endfun 1337 1338The following example completes filenames from the directories specified in 1339the 'path' option: > 1340 :com -nargs=1 -bang -complete=customlist,EditFileComplete 1341 \ EditFile edit<bang> <args> 1342 :fun EditFileComplete(A,L,P) 1343 : return split(globpath(&path, a:A), "\n") 1344 :endfun 1345< 1346This example does not work for file names with spaces! 1347 1348 1349Range handling *E177* *E178* *:command-range* 1350 *:command-count* 1351By default, user-defined commands do not accept a line number range. However, 1352it is possible to specify that the command does take a range (the -range 1353attribute), or that it takes an arbitrary count value, either in the line 1354number position (-range=N, like the |:split| command) or as a "count" 1355argument (-count=N, like the |:Next| command). The count will then be 1356available in the argument with |<count>|. 1357 1358Possible attributes are: 1359 1360 -range Range allowed, default is current line 1361 -range=% Range allowed, default is whole file (1,$) 1362 -range=N A count (default N) which is specified in the line 1363 number position (like |:split|); allows for zero line 1364 number. 1365 -count=N A count (default N) which is specified either in the line 1366 number position, or as an initial argument (like |:Next|). 1367 Specifying -count (without a default) acts like -count=0 1368 1369Note that -range=N and -count=N are mutually exclusive - only one should be 1370specified. 1371 1372 *:command-addr* 1373It is possible that the special characters in the range like ., $ or % which 1374by default correspond to the current line, last line and the whole buffer, 1375relate to arguments, (loaded) buffers, windows or tab pages. 1376 1377Possible values are: 1378 -addr=lines Range of lines (this is the default) 1379 -addr=arguments Range for arguments 1380 -addr=buffers Range for buffers (also not loaded buffers) 1381 -addr=loaded_buffers Range for loaded buffers 1382 -addr=windows Range for windows 1383 -addr=tabs Range for tab pages 1384 1385Special cases *:command-bang* *:command-bar* 1386 *:command-register* *:command-buffer* 1387There are some special cases as well: 1388 1389 -bang The command can take a ! modifier (like :q or :w) 1390 -bar The command can be followed by a "|" and another command. 1391 A "|" inside the command argument is not allowed then. 1392 Also checks for a " to start a comment. 1393 -register The first argument to the command can be an optional 1394 register name (like :del, :put, :yank). 1395 -buffer The command will only be available in the current buffer. 1396 1397In the cases of the -count and -register attributes, if the optional argument 1398is supplied, it is removed from the argument list and is available to the 1399replacement text separately. 1400Note that these arguments can be abbreviated, but that is a deprecated 1401feature. Use the full name for new scripts. 1402 1403Replacement text 1404 1405The replacement text for a user defined command is scanned for special escape 1406sequences, using <...> notation. Escape sequences are replaced with values 1407from the entered command line, and all other text is copied unchanged. The 1408resulting string is executed as an Ex command. To avoid the replacement use 1409<lt> in place of the initial <. Thus to include "<bang>" literally use 1410"<lt>bang>". 1411 1412The valid escape sequences are 1413 1414 *<line1>* 1415 <line1> The starting line of the command range. 1416 *<line2>* 1417 <line2> The final line of the command range. 1418 *<count>* 1419 <count> Any count supplied (as described for the '-range' 1420 and '-count' attributes). 1421 *<bang>* 1422 <bang> (See the '-bang' attribute) Expands to a ! if the 1423 command was executed with a ! modifier, otherwise 1424 expands to nothing. 1425 *<mods>* 1426 <mods> The command modifiers, if specified. Otherwise, expands to 1427 nothing. Supported modifiers are |:aboveleft|, |:belowright|, 1428 |:botright|, |:browse|, |:confirm|, |:hide|, |:keepalt|, 1429 |:keepjumps|, |:keepmarks|, |:keeppatterns|, |:leftabove|, 1430 |:lockmarks|, |:noswapfile| |:rightbelow|, |:silent|, |:tab|, 1431 |:topleft|, |:verbose|, and |:vertical|. 1432 Note that these are not yet supported: |:noautocmd|, 1433 |:sandbox| and |:unsilent|. 1434 Examples: > 1435 command! -nargs=+ -complete=file MyEdit 1436 \ for f in expand(<q-args>, 0, 1) | 1437 \ exe '<mods> split ' . f | 1438 \ endfor 1439 1440 function! SpecialEdit(files, mods) 1441 for f in expand(a:files, 0, 1) 1442 exe a:mods . ' split ' . f 1443 endfor 1444 endfunction 1445 command! -nargs=+ -complete=file Sedit 1446 \ call SpecialEdit(<q-args>, <q-mods>) 1447< 1448 *<reg>* *<register>* 1449 <reg> (See the '-register' attribute) The optional register, 1450 if specified. Otherwise, expands to nothing. <register> 1451 is a synonym for this. 1452 *<args>* 1453 <args> The command arguments, exactly as supplied (but as 1454 noted above, any count or register can consume some 1455 of the arguments, which are then not part of <args>). 1456 <lt> A single '<' (Less-Than) character. This is needed if you 1457 want to get a literal copy of one of these escape sequences 1458 into the expansion - for example, to get <bang>, use 1459 <lt>bang>. 1460 1461 *<q-args>* 1462If the first two characters of an escape sequence are "q-" (for example, 1463<q-args>) then the value is quoted in such a way as to make it a valid value 1464for use in an expression. This uses the argument as one single value. 1465When there is no argument <q-args> is an empty string. 1466 *<f-args>* 1467To allow commands to pass their arguments on to a user-defined function, there 1468is a special form <f-args> ("function args"). This splits the command 1469arguments at spaces and tabs, quotes each argument individually, and the 1470<f-args> sequence is replaced by the comma-separated list of quoted arguments. 1471See the Mycmd example below. If no arguments are given <f-args> is removed. 1472 To embed whitespace into an argument of <f-args>, prepend a backslash. 1473<f-args> replaces every pair of backslashes (\\) with one backslash. A 1474backslash followed by a character other than white space or a backslash 1475remains unmodified. Overview: 1476 1477 command <f-args> ~ 1478 XX ab 'ab' 1479 XX a\b 'a\b' 1480 XX a\ b 'a b' 1481 XX a\ b 'a ', 'b' 1482 XX a\\b 'a\b' 1483 XX a\\ b 'a\', 'b' 1484 XX a\\\b 'a\\b' 1485 XX a\\\ b 'a\ b' 1486 XX a\\\\b 'a\\b' 1487 XX a\\\\ b 'a\\', 'b' 1488 1489Examples > 1490 1491 " Delete everything after here to the end 1492 :com Ddel +,$d 1493 1494 " Rename the current buffer 1495 :com -nargs=1 -bang -complete=file Ren f <args>|w<bang> 1496 1497 " Replace a range with the contents of a file 1498 " (Enter this all as one line) 1499 :com -range -nargs=1 -complete=file 1500 Replace <line1>-pu_|<line1>,<line2>d|r <args>|<line1>d 1501 1502 " Count the number of lines in the range 1503 :com! -range -nargs=0 Lines echo <line2> - <line1> + 1 "lines" 1504 1505 " Call a user function (example of <f-args>) 1506 :com -nargs=* Mycmd call Myfunc(<f-args>) 1507 1508When executed as: > 1509 :Mycmd arg1 arg2 1510This will invoke: > 1511 :call Myfunc("arg1","arg2") 1512 1513 :" A more substantial example 1514 :function Allargs(command) 1515 : let i = 0 1516 : while i < argc() 1517 : if filereadable(argv(i)) 1518 : execute "e " . argv(i) 1519 : execute a:command 1520 : endif 1521 : let i = i + 1 1522 : endwhile 1523 :endfunction 1524 :command -nargs=+ -complete=command Allargs call Allargs(<q-args>) 1525 1526The command Allargs takes any Vim command(s) as argument and executes it on all 1527files in the argument list. Usage example (note use of the "e" flag to ignore 1528errors and the "update" command to write modified buffers): > 1529 :Allargs %s/foo/bar/ge|update 1530This will invoke: > 1531 :call Allargs("%s/foo/bar/ge|update") 1532< 1533When defining a user command in a script, it will be able to call functions 1534local to the script and use mappings local to the script. When the user 1535invokes the user command, it will run in the context of the script it was 1536defined in. This matters if |<SID>| is used in a command. 1537 1538 vim:tw=78:ts=8:ft=help:norl: 1539