blob: afb43a4fdff6a61e111784622340e1818bab988e [file] [log] [blame]
Bram Moolenaar009b2592004-10-24 19:18:58 +00001*eval.txt* For Vim version 7.0aa. Last change: 2004 Oct 24
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Expression evaluation *expression* *expr* *E15* *eval*
8
9Using expressions is introduced in chapter 41 of the user manual |usr_41.txt|.
10
11Note: Expression evaluation can be disabled at compile time. If this has been
12done, the features in this document are not available. See |+eval| and the
13last chapter below.
14
151. Variables |variables|
162. Expression syntax |expression-syntax|
173. Internal variable |internal-variables|
184. Builtin Functions |functions|
195. Defining functions |user-functions|
206. Curly braces names |curly-braces-names|
217. Commands |expression-commands|
228. Exception handling |exception-handling|
239. Examples |eval-examples|
2410. No +eval feature |no-eval-feature|
2511. The sandbox |eval-sandbox|
26
27{Vi does not have any of these commands}
28
29==============================================================================
301. Variables *variables*
31
32There are two types of variables:
33
34Number a 32 bit signed number.
35String a NUL terminated string of 8-bit unsigned characters.
36
37These are converted automatically, depending on how they are used.
38
39Conversion from a Number to a String is by making the ASCII representation of
40the Number. Examples: >
41 Number 123 --> String "123"
42 Number 0 --> String "0"
43 Number -1 --> String "-1"
44
45Conversion from a String to a Number is done by converting the first digits
46to a number. Hexadecimal "0xf9" and Octal "017" numbers are recognized. If
47the String doesn't start with digits, the result is zero. Examples: >
48 String "456" --> Number 456
49 String "6bar" --> Number 6
50 String "foo" --> Number 0
51 String "0xf1" --> Number 241
52 String "0100" --> Number 64
53 String "-8" --> Number -8
54 String "+8" --> Number 0
55
56To force conversion from String to Number, add zero to it: >
57 :echo "0100" + 0
58
59For boolean operators Numbers are used. Zero is FALSE, non-zero is TRUE.
60
61Note that in the command >
62 :if "foo"
63"foo" is converted to 0, which means FALSE. To test for a non-empty string,
64use strlen(): >
65 :if strlen("foo")
66
67If you need to know the type of a variable or expression, use the |type()|
68function.
69
70When the '!' flag is included in the 'viminfo' option, global variables that
71start with an uppercase letter, and don't contain a lowercase letter, are
72stored in the viminfo file |viminfo-file|.
73
74When the 'sessionoptions' option contains "global", global variables that
75start with an uppercase letter and contain at least one lowercase letter are
76stored in the session file |session-file|.
77
78variable name can be stored where ~
79my_var_6 not
80My_Var_6 session file
81MY_VAR_6 viminfo file
82
83
84It's possible to form a variable name with curly braces, see
85|curly-braces-names|.
86
87==============================================================================
882. Expression syntax *expression-syntax*
89
90Expression syntax summary, from least to most significant:
91
92|expr1| expr2 ? expr1 : expr1 if-then-else
93
94|expr2| expr3 || expr3 .. logical OR
95
96|expr3| expr4 && expr4 .. logical AND
97
98|expr4| expr5 == expr5 equal
99 expr5 != expr5 not equal
100 expr5 > expr5 greater than
101 expr5 >= expr5 greater than or equal
102 expr5 < expr5 smaller than
103 expr5 <= expr5 smaller than or equal
104 expr5 =~ expr5 regexp matches
105 expr5 !~ expr5 regexp doesn't match
106
107 expr5 ==? expr5 equal, ignoring case
108 expr5 ==# expr5 equal, match case
109 etc. As above, append ? for ignoring case, # for
110 matching case
111
112|expr5| expr6 + expr6 .. number addition
113 expr6 - expr6 .. number subtraction
114 expr6 . expr6 .. string concatenation
115
116|expr6| expr7 * expr7 .. number multiplication
117 expr7 / expr7 .. number division
118 expr7 % expr7 .. number modulo
119
120|expr7| ! expr7 logical NOT
121 - expr7 unary minus
122 + expr7 unary plus
123 expr8
124
125|expr8| expr9[expr1] index in String
126
127|expr9| number number constant
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000128 "string" string constant, backslash is special
129 'string' string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 &option option value
131 (expr1) nested expression
132 variable internal variable
133 va{ria}ble internal variable with curly braces
134 $VAR environment variable
135 @r contents of register 'r'
136 function(expr1, ...) function call
137 func{ti}on(expr1, ...) function call with curly braces
138
139
140".." indicates that the operations in this level can be concatenated.
141Example: >
142 &nu || &list && &shell == "csh"
143
144All expressions within one level are parsed from left to right.
145
146
147expr1 *expr1* *E109*
148-----
149
150expr2 ? expr1 : expr1
151
152The expression before the '?' is evaluated to a number. If it evaluates to
153non-zero, the result is the value of the expression between the '?' and ':',
154otherwise the result is the value of the expression after the ':'.
155Example: >
156 :echo lnum == 1 ? "top" : lnum
157
158Since the first expression is an "expr2", it cannot contain another ?:. The
159other two expressions can, thus allow for recursive use of ?:.
160Example: >
161 :echo lnum == 1 ? "top" : lnum == 1000 ? "last" : lnum
162
163To keep this readable, using |line-continuation| is suggested: >
164 :echo lnum == 1
165 :\ ? "top"
166 :\ : lnum == 1000
167 :\ ? "last"
168 :\ : lnum
169
170
171expr2 and expr3 *expr2* *expr3*
172---------------
173
174 *expr-barbar* *expr-&&*
175The "||" and "&&" operators take one argument on each side. The arguments
176are (converted to) Numbers. The result is:
177
178 input output ~
179n1 n2 n1 || n2 n1 && n2 ~
180zero zero zero zero
181zero non-zero non-zero zero
182non-zero zero non-zero zero
183non-zero non-zero non-zero non-zero
184
185The operators can be concatenated, for example: >
186
187 &nu || &list && &shell == "csh"
188
189Note that "&&" takes precedence over "||", so this has the meaning of: >
190
191 &nu || (&list && &shell == "csh")
192
193Once the result is known, the expression "short-circuits", that is, further
194arguments are not evaluated. This is like what happens in C. For example: >
195
196 let a = 1
197 echo a || b
198
199This is valid even if there is no variable called "b" because "a" is non-zero,
200so the result must be non-zero. Similarly below: >
201
202 echo exists("b") && b == "yes"
203
204This is valid whether "b" has been defined or not. The second clause will
205only be evaluated if "b" has been defined.
206
207
208expr4 *expr4*
209-----
210
211expr5 {cmp} expr5
212
213Compare two expr5 expressions, resulting in a 0 if it evaluates to false, or 1
214if it evaluates to true.
215
216 *expr-==* *expr-!=* *expr->* *expr->=*
217 *expr-<* *expr-<=* *expr-=~* *expr-!~*
218 *expr-==#* *expr-!=#* *expr->#* *expr->=#*
219 *expr-<#* *expr-<=#* *expr-=~#* *expr-!~#*
220 *expr-==?* *expr-!=?* *expr->?* *expr->=?*
221 *expr-<?* *expr-<=?* *expr-=~?* *expr-!~?*
222 use 'ignorecase' match case ignore case ~
223equal == ==# ==?
224not equal != !=# !=?
225greater than > ># >?
226greater than or equal >= >=# >=?
227smaller than < <# <?
228smaller than or equal <= <=# <=?
229regexp matches =~ =~# =~?
230regexp doesn't match !~ !~# !~?
231
232Examples:
233"abc" ==# "Abc" evaluates to 0
234"abc" ==? "Abc" evaluates to 1
235"abc" == "Abc" evaluates to 1 if 'ignorecase' is set, 0 otherwise
236
237When comparing a String with a Number, the String is converted to a Number,
238and the comparison is done on Numbers. This means that "0 == 'x'" is TRUE,
239because 'x' converted to a Number is zero.
240
241When comparing two Strings, this is done with strcmp() or stricmp(). This
242results in the mathematical difference (comparing byte values), not
243necessarily the alphabetical difference in the local language.
244
245When using the operators with a trailing '#", or the short version and
246'ignorecase' is off, the comparing is done with strcmp().
247
248When using the operators with a trailing '?', or the short version and
249'ignorecase' is set, the comparing is done with stricmp().
250
251The "=~" and "!~" operators match the lefthand argument with the righthand
252argument, which is used as a pattern. See |pattern| for what a pattern is.
253This matching is always done like 'magic' was set and 'cpoptions' is empty, no
254matter what the actual value of 'magic' or 'cpoptions' is. This makes scripts
255portable. To avoid backslashes in the regexp pattern to be doubled, use a
256single-quote string, see |literal-string|.
257Since a string is considered to be a single line, a multi-line pattern
258(containing \n, backslash-n) will not match. However, a literal NL character
259can be matched like an ordinary character. Examples:
260 "foo\nbar" =~ "\n" evaluates to 1
261 "foo\nbar" =~ "\\n" evaluates to 0
262
263
264expr5 and expr6 *expr5* *expr6*
265---------------
266expr6 + expr6 .. number addition *expr-+*
267expr6 - expr6 .. number subtraction *expr--*
268expr6 . expr6 .. string concatenation *expr-.*
269
270expr7 * expr7 .. number multiplication *expr-star*
271expr7 / expr7 .. number division *expr-/*
272expr7 % expr7 .. number modulo *expr-%*
273
274For all, except ".", Strings are converted to Numbers.
275
276Note the difference between "+" and ".":
277 "123" + "456" = 579
278 "123" . "456" = "123456"
279
280When the righthand side of '/' is zero, the result is 0x7fffffff.
281When the righthand side of '%' is zero, the result is 0.
282
283
284expr7 *expr7*
285-----
286! expr7 logical NOT *expr-!*
287- expr7 unary minus *expr-unary--*
288+ expr7 unary plus *expr-unary-+*
289
290For '!' non-zero becomes zero, zero becomes one.
291For '-' the sign of the number is changed.
292For '+' the number is unchanged.
293
294A String will be converted to a Number first.
295
296These three can be repeated and mixed. Examples:
297 !-1 == 0
298 !!8 == 1
299 --9 == 9
300
301
302expr8 *expr8*
303-----
304expr9[expr1] index in String *expr-[]* *E111*
305
306This results in a String that contains the expr1'th single byte from expr9.
307expr9 is used as a String, expr1 as a Number. Note that this doesn't work for
308multi-byte encodings.
309
310Note that index zero gives the first character. This is like it works in C.
311Careful: text column numbers start with one! Example, to get the character
312under the cursor: >
313 :let c = getline(line("."))[col(".") - 1]
314
315If the length of the String is less than the index, the result is an empty
316String.
317
318 *expr9*
319number
320------
321number number constant *expr-number*
322
323Decimal, Hexadecimal (starting with 0x or 0X), or Octal (starting with 0).
324
325
326string *expr-string* *E114*
327------
328"string" string constant *expr-quote*
329
330Note that double quotes are used.
331
332A string constant accepts these special characters:
333\... three-digit octal number (e.g., "\316")
334\.. two-digit octal number (must be followed by non-digit)
335\. one-digit octal number (must be followed by non-digit)
336\x.. byte specified with two hex numbers (e.g., "\x1f")
337\x. byte specified with one hex number (must be followed by non-hex char)
338\X.. same as \x..
339\X. same as \x.
340\u.... character specified with up to 4 hex numbers, stored according to the
341 current value of 'encoding' (e.g., "\u02a4")
342\U.... same as \u....
343\b backspace <BS>
344\e escape <Esc>
345\f formfeed <FF>
346\n newline <NL>
347\r return <CR>
348\t tab <Tab>
349\\ backslash
350\" double quote
351\<xxx> Special key named "xxx". e.g. "\<C-W>" for CTRL-W.
352
353Note that "\000" and "\x00" force the end of the string.
354
355
356literal-string *literal-string* *E115*
357---------------
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000358'string' string constant *expr-'*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359
360Note that single quotes are used.
361
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000362This string is taken as it is. No backslashes are removed or have a special
363meaning. A literal-string cannot contain a single quote. Use a normal,
364double-quoted string for that.
365
366Single quoted strings are useful for patterns, so that backslashes do not need
367to be doubled. These two commands are equivalent: >
368 if a =~ "\\s*"
369 if a =~ '\s*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370
371
372option *expr-option* *E112* *E113*
373------
374&option option value, local value if possible
375&g:option global option value
376&l:option local option value
377
378Examples: >
379 echo "tabstop is " . &tabstop
380 if &insertmode
381
382Any option name can be used here. See |options|. When using the local value
383and there is no buffer-local or window-local value, the global value is used
384anyway.
385
386
387register *expr-register*
388--------
389@r contents of register 'r'
390
391The result is the contents of the named register, as a single string.
392Newlines are inserted where required. To get the contents of the unnamed
393register use @" or @@. The '=' register can not be used here. See
394|registers| for an explanation of the available registers.
395
396
397nesting *expr-nesting* *E110*
398-------
399(expr1) nested expression
400
401
402environment variable *expr-env*
403--------------------
404$VAR environment variable
405
406The String value of any environment variable. When it is not defined, the
407result is an empty string.
408 *expr-env-expand*
409Note that there is a difference between using $VAR directly and using
410expand("$VAR"). Using it directly will only expand environment variables that
411are known inside the current Vim session. Using expand() will first try using
412the environment variables known inside the current Vim session. If that
413fails, a shell will be used to expand the variable. This can be slow, but it
414does expand all variables that the shell knows about. Example: >
415 :echo $version
416 :echo expand("$version")
417The first one probably doesn't echo anything, the second echoes the $version
418variable (if your shell supports it).
419
420
421internal variable *expr-variable*
422-----------------
423variable internal variable
424See below |internal-variables|.
425
426
427function call *expr-function* *E116* *E117* *E118* *E119* *E120*
428-------------
429function(expr1, ...) function call
430See below |functions|.
431
432
433==============================================================================
4343. Internal variable *internal-variables* *E121*
435 *E461*
436An internal variable name can be made up of letters, digits and '_'. But it
437cannot start with a digit. It's also possible to use curly braces, see
438|curly-braces-names|.
439
440An internal variable is created with the ":let" command |:let|.
441An internal variable is destroyed with the ":unlet" command |:unlet|.
442Using a name that isn't an internal variable, or an internal variable that has
443been destroyed, results in an error.
444
445There are several name spaces for variables. Which one is to be used is
446specified by what is prepended:
447
448 (nothing) In a function: local to a function; otherwise: global
449|buffer-variable| b: Local to the current buffer.
450|window-variable| w: Local to the current window.
451|global-variable| g: Global.
452|local-variable| l: Local to a function.
453|script-variable| s: Local to a |:source|'ed Vim script.
454|function-argument| a: Function argument (only inside a function).
455|vim-variable| v: Global, predefined by Vim.
456
457 *buffer-variable* *b:var*
458A variable name that is preceded with "b:" is local to the current buffer.
459Thus you can have several "b:foo" variables, one for each buffer.
460This kind of variable is deleted when the buffer is wiped out or deleted with
461|:bdelete|.
462
463One local buffer variable is predefined:
464 *b:changedtick-variable* *changetick*
465b:changedtick The total number of changes to the current buffer. It is
466 incremented for each change. An undo command is also a change
467 in this case. This can be used to perform an action only when
468 the buffer has changed. Example: >
469 :if my_changedtick != b:changedtick
470 : let my_changedtick = b:changedtick
471 : call My_Update()
472 :endif
473<
474 *window-variable* *w:var*
475A variable name that is preceded with "w:" is local to the current window. It
476is deleted when the window is closed.
477
478 *global-variable* *g:var*
479Inside functions global variables are accessed with "g:". Omitting this will
480access a variable local to a function. But "g:" can also be used in any other
481place if you like.
482
483 *local-variable* *l:var*
484Inside functions local variables are accessed without prepending anything.
485But you can also prepend "l:" if you like.
486
487 *script-variable* *s:var*
488In a Vim script variables starting with "s:" can be used. They cannot be
489accessed from outside of the scripts, thus are local to the script.
490
491They can be used in:
492- commands executed while the script is sourced
493- functions defined in the script
494- autocommands defined in the script
495- functions and autocommands defined in functions and autocommands which were
496 defined in the script (recursively)
497- user defined commands defined in the script
498Thus not in:
499- other scripts sourced from this one
500- mappings
501- etc.
502
503script variables can be used to avoid conflicts with global variable names.
504Take this example:
505
506 let s:counter = 0
507 function MyCounter()
508 let s:counter = s:counter + 1
509 echo s:counter
510 endfunction
511 command Tick call MyCounter()
512
513You can now invoke "Tick" from any script, and the "s:counter" variable in
514that script will not be changed, only the "s:counter" in the script where
515"Tick" was defined is used.
516
517Another example that does the same: >
518
519 let s:counter = 0
520 command Tick let s:counter = s:counter + 1 | echo s:counter
521
522When calling a function and invoking a user-defined command, the context for
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000523script variables is set to the script where the function or command was
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524defined.
525
526The script variables are also available when a function is defined inside a
527function that is defined in a script. Example: >
528
529 let s:counter = 0
530 function StartCounting(incr)
531 if a:incr
532 function MyCounter()
533 let s:counter = s:counter + 1
534 endfunction
535 else
536 function MyCounter()
537 let s:counter = s:counter - 1
538 endfunction
539 endif
540 endfunction
541
542This defines the MyCounter() function either for counting up or counting down
543when calling StartCounting(). It doesn't matter from where StartCounting() is
544called, the s:counter variable will be accessible in MyCounter().
545
546When the same script is sourced again it will use the same script variables.
547They will remain valid as long as Vim is running. This can be used to
548maintain a counter: >
549
550 if !exists("s:counter")
551 let s:counter = 1
552 echo "script executed for the first time"
553 else
554 let s:counter = s:counter + 1
555 echo "script executed " . s:counter . " times now"
556 endif
557
558Note that this means that filetype plugins don't get a different set of script
559variables for each buffer. Use local buffer variables instead |b:var|.
560
561
562Predefined Vim variables: *vim-variable* *v:var*
563
564 *v:charconvert_from* *charconvert_from-variable*
565v:charconvert_from
566 The name of the character encoding of a file to be converted.
567 Only valid while evaluating the 'charconvert' option.
568
569 *v:charconvert_to* *charconvert_to-variable*
570v:charconvert_to
571 The name of the character encoding of a file after conversion.
572 Only valid while evaluating the 'charconvert' option.
573
574 *v:cmdarg* *cmdarg-variable*
575v:cmdarg This variable is used for two purposes:
576 1. The extra arguments given to a file read/write command.
577 Currently these are "++enc=" and "++ff=". This variable is
578 set before an autocommand event for a file read/write
579 command is triggered. There is a leading space to make it
580 possible to append this variable directly after the
581 read/write command. Note: The "+cmd" argument isn't
582 included here, because it will be executed anyway.
583 2. When printing a PostScript file with ":hardcopy" this is
584 the argument for the ":hardcopy" command. This can be used
585 in 'printexpr'.
586
587 *v:cmdbang* *cmdbang-variable*
588v:cmdbang Set like v:cmdarg for a file read/write command. When a "!"
589 was used the value is 1, otherwise it is 0. Note that this
590 can only be used in autocommands. For user commands |<bang>|
591 can be used.
592
593 *v:count* *count-variable*
594v:count The count given for the last Normal mode command. Can be used
595 to get the count before a mapping. Read-only. Example: >
596 :map _x :<C-U>echo "the count is " . v:count<CR>
597< Note: The <C-U> is required to remove the line range that you
598 get when typing ':' after a count.
599 "count" also works, for backwards compatibility.
600
601 *v:count1* *count1-variable*
602v:count1 Just like "v:count", but defaults to one when no count is
603 used.
604
605 *v:ctype* *ctype-variable*
606v:ctype The current locale setting for characters of the runtime
607 environment. This allows Vim scripts to be aware of the
608 current locale encoding. Technical: it's the value of
609 LC_CTYPE. When not using a locale the value is "C".
610 This variable can not be set directly, use the |:language|
611 command.
612 See |multi-lang|.
613
614 *v:dying* *dying-variable*
615v:dying Normally zero. When a deadly signal is caught it's set to
616 one. When multiple signals are caught the number increases.
617 Can be used in an autocommand to check if Vim didn't
618 terminate normally. {only works on Unix}
619 Example: >
620 :au VimLeave * if v:dying | echo "\nAAAAaaaarrrggghhhh!!!\n" | endif
621<
622 *v:errmsg* *errmsg-variable*
623v:errmsg Last given error message. It's allowed to set this variable.
624 Example: >
625 :let v:errmsg = ""
626 :silent! next
627 :if v:errmsg != ""
628 : ... handle error
629< "errmsg" also works, for backwards compatibility.
630
631 *v:exception* *exception-variable*
632v:exception The value of the exception most recently caught and not
633 finished. See also |v:throwpoint| and |throw-variables|.
634 Example: >
635 :try
636 : throw "oops"
637 :catch /.*/
638 : echo "caught" v:exception
639 :endtry
640< Output: "caught oops".
641
642 *v:fname_in* *fname_in-variable*
643v:fname_in The name of the input file. Only valid while evaluating:
644 option used for ~
645 'charconvert' file to be converted
646 'diffexpr' original file
647 'patchexpr' original file
648 'printexpr' file to be printed
649
650 *v:fname_out* *fname_out-variable*
651v:fname_out The name of the output file. Only valid while
652 evaluating:
653 option used for ~
654 'charconvert' resulting converted file (*)
655 'diffexpr' output of diff
656 'patchexpr' resulting patched file
657 (*) When doing conversion for a write command (e.g., ":w
658 file") it will be equal to v:fname_in. When doing conversion
659 for a read command (e.g., ":e file") it will be a temporary
660 file and different from v:fname_in.
661
662 *v:fname_new* *fname_new-variable*
663v:fname_new The name of the new version of the file. Only valid while
664 evaluating 'diffexpr'.
665
666 *v:fname_diff* *fname_diff-variable*
667v:fname_diff The name of the diff (patch) file. Only valid while
668 evaluating 'patchexpr'.
669
670 *v:folddashes* *folddashes-variable*
671v:folddashes Used for 'foldtext': dashes representing foldlevel of a closed
672 fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000673 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674
675 *v:foldlevel* *foldlevel-variable*
676v:foldlevel Used for 'foldtext': foldlevel of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000677 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
679 *v:foldend* *foldend-variable*
680v:foldend Used for 'foldtext': last line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000681 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
683 *v:foldstart* *foldstart-variable*
684v:foldstart Used for 'foldtext': first line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000685 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686
Bram Moolenaar843ee412004-06-30 16:16:41 +0000687 *v:insertmode* *insertmode-variable*
688v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand
689 events. Values:
690 i Insert mode
691 r Replace mode
692 v Virtual Replace mode
693
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 *v:lang* *lang-variable*
695v:lang The current locale setting for messages of the runtime
696 environment. This allows Vim scripts to be aware of the
697 current language. Technical: it's the value of LC_MESSAGES.
698 The value is system dependent.
699 This variable can not be set directly, use the |:language|
700 command.
701 It can be different from |v:ctype| when messages are desired
702 in a different language than what is used for character
703 encoding. See |multi-lang|.
704
705 *v:lc_time* *lc_time-variable*
706v:lc_time The current locale setting for time messages of the runtime
707 environment. This allows Vim scripts to be aware of the
708 current language. Technical: it's the value of LC_TIME.
709 This variable can not be set directly, use the |:language|
710 command. See |multi-lang|.
711
712 *v:lnum* *lnum-variable*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000713v:lnum Line number for the 'foldexpr' |fold-expr| and 'indentexpr'
714 expressions. Only valid while one of these expressions is
715 being evaluated. Read-only when in the |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716
717 *v:prevcount* *prevcount-variable*
718v:prevcount The count given for the last but one Normal mode command.
719 This is the v:count value of the previous command. Useful if
720 you want to cancel Visual mode and then use the count. >
721 :vmap % <Esc>:call MyFilter(v:prevcount)<CR>
722< Read-only.
723
724 *v:progname* *progname-variable*
725v:progname Contains the name (with path removed) with which Vim was
726 invoked. Allows you to do special initialisations for "view",
727 "evim" etc., or any other name you might symlink to Vim.
728 Read-only.
729
730 *v:register* *register-variable*
731v:register The name of the register supplied to the last normal mode
732 command. Empty if none were supplied. |getreg()| |setreg()|
733
734 *v:servername* *servername-variable*
735v:servername The resulting registered |x11-clientserver| name if any.
736 Read-only.
737
738 *v:shell_error* *shell_error-variable*
739v:shell_error Result of the last shell command. When non-zero, the last
740 shell command had an error. When zero, there was no problem.
741 This only works when the shell returns the error code to Vim.
742 The value -1 is often used when the command could not be
743 executed. Read-only.
744 Example: >
745 :!mv foo bar
746 :if v:shell_error
747 : echo 'could not rename "foo" to "bar"!'
748 :endif
749< "shell_error" also works, for backwards compatibility.
750
751 *v:statusmsg* *statusmsg-variable*
752v:statusmsg Last given status message. It's allowed to set this variable.
753
754 *v:termresponse* *termresponse-variable*
755v:termresponse The escape sequence returned by the terminal for the |t_RV|
756 termcap entry. It is set when Vim receives an escape sequence
757 that starts with ESC [ or CSI and ends in a 'c', with only
758 digits, ';' and '.' in between.
759 When this option is set, the TermResponse autocommand event is
760 fired, so that you can react to the response from the
761 terminal.
762 The response from a new xterm is: "<Esc>[ Pp ; Pv ; Pc c". Pp
763 is the terminal type: 0 for vt100 and 1 for vt220. Pv is the
764 patch level (since this was introduced in patch 95, it's
765 always 95 or bigger). Pc is always zero.
766 {only when compiled with |+termresponse| feature}
767
768 *v:this_session* *this_session-variable*
769v:this_session Full filename of the last loaded or saved session file. See
770 |:mksession|. It is allowed to set this variable. When no
771 session file has been saved, this variable is empty.
772 "this_session" also works, for backwards compatibility.
773
774 *v:throwpoint* *throwpoint-variable*
775v:throwpoint The point where the exception most recently caught and not
776 finished was thrown. Not set when commands are typed. See
777 also |v:exception| and |throw-variables|.
778 Example: >
779 :try
780 : throw "oops"
781 :catch /.*/
782 : echo "Exception from" v:throwpoint
783 :endtry
784< Output: "Exception from test.vim, line 2"
785
786 *v:version* *version-variable*
787v:version Version number of Vim: Major version number times 100 plus
788 minor version number. Version 5.0 is 500. Version 5.1 (5.01)
789 is 501. Read-only. "version" also works, for backwards
790 compatibility.
791 Use |has()| to check if a certain patch was included, e.g.: >
792 if has("patch123")
793< Note that patch numbers are specific to the version, thus both
794 version 5.0 and 5.1 may have a patch 123, but these are
795 completely different.
796
797 *v:warningmsg* *warningmsg-variable*
798v:warningmsg Last given warning message. It's allowed to set this variable.
799
800==============================================================================
8014. Builtin Functions *functions*
802
803See |function-list| for a list grouped by what the function is used for.
804
805(Use CTRL-] on the function name to jump to the full explanation)
806
807USAGE RESULT DESCRIPTION ~
808
809append( {lnum}, {string}) Number append {string} below line {lnum}
810argc() Number number of files in the argument list
811argidx() Number current index in the argument list
812argv( {nr}) String {nr} entry of the argument list
813browse( {save}, {title}, {initdir}, {default})
814 String put up a file requester
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000815browsedir( {title}, {initdir}) String put up a directory requester
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816bufexists( {expr}) Number TRUE if buffer {expr} exists
817buflisted( {expr}) Number TRUE if buffer {expr} is listed
818bufloaded( {expr}) Number TRUE if buffer {expr} is loaded
819bufname( {expr}) String Name of the buffer {expr}
820bufnr( {expr}) Number Number of the buffer {expr}
821bufwinnr( {expr}) Number window number of buffer {expr}
822byte2line( {byte}) Number line number at byte count {byte}
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000823byteidx( {expr}, {nr}) Number byte index of {nr}'th char in {expr}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824char2nr( {expr}) Number ASCII value of first char in {expr}
825cindent( {lnum}) Number C indent for line {lnum}
826col( {expr}) Number column nr of cursor or mark
827confirm( {msg} [, {choices} [, {default} [, {type}]]])
828 Number number of choice picked by user
829cscope_connection( [{num} , {dbpath} [, {prepend}]])
830 Number checks existence of cscope connection
831cursor( {lnum}, {col}) Number position cursor at {lnum}, {col}
832delete( {fname}) Number delete file {fname}
833did_filetype() Number TRUE if FileType autocommand event used
Bram Moolenaar47136d72004-10-12 20:02:24 +0000834diff_filler( {lnum}) Number diff filler lines about {lnum}
835diff_hlID( {lnum}, {col}) Number diff highlighting at {lnum}/{col}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836escape( {string}, {chars}) String escape {chars} in {string} with '\'
837eventhandler( ) Number TRUE if inside an event handler
838executable( {expr}) Number 1 if executable {expr} exists
839exists( {expr}) Number TRUE if {expr} exists
840expand( {expr}) String expand special keywords in {expr}
841filereadable( {file}) Number TRUE if {file} is a readable file
Bram Moolenaar89cb5e02004-07-19 20:55:54 +0000842findfile( {name}[, {path}[, {count}]])
843 String Find fine {name} in {path}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844filewritable( {file}) Number TRUE if {file} is a writable file
845fnamemodify( {fname}, {mods}) String modify file name
846foldclosed( {lnum}) Number first line of fold at {lnum} if closed
847foldclosedend( {lnum}) Number last line of fold at {lnum} if closed
848foldlevel( {lnum}) Number fold level at {lnum}
849foldtext( ) String line displayed for closed fold
850foreground( ) Number bring the Vim window to the foreground
851getchar( [expr]) Number get one character from the user
852getcharmod( ) Number modifiers for the last typed character
853getbufvar( {expr}, {varname}) variable {varname} in buffer {expr}
854getcmdline() String return the current command-line
855getcmdpos() Number return cursor position in command-line
856getcwd() String the current working directory
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000857getfperm( {fname}) String file permissions of file {fname}
858getfsize( {fname}) Number size in bytes of file {fname}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859getftime( {fname}) Number last modification time of file
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000860getftype( {fname}) String description of type of file {fname}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861getline( {lnum}) String line {lnum} from current buffer
862getreg( [{regname}]) String contents of register
863getregtype( [{regname}]) String type of register
864getwinposx() Number X coord in pixels of GUI Vim window
865getwinposy() Number Y coord in pixels of GUI Vim window
866getwinvar( {nr}, {varname}) variable {varname} in window {nr}
867glob( {expr}) String expand file wildcards in {expr}
868globpath( {path}, {expr}) String do glob({expr}) for all dirs in {path}
869has( {feature}) Number TRUE if feature {feature} supported
870hasmapto( {what} [, {mode}]) Number TRUE if mapping to {what} exists
871histadd( {history},{item}) String add an item to a history
872histdel( {history} [, {item}]) String remove an item from a history
873histget( {history} [, {index}]) String get the item {index} from a history
874histnr( {history}) Number highest index of a history
875hlexists( {name}) Number TRUE if highlight group {name} exists
876hlID( {name}) Number syntax ID of highlight group {name}
877hostname() String name of the machine Vim is running on
878iconv( {expr}, {from}, {to}) String convert encoding of {expr}
879indent( {lnum}) Number indent of line {lnum}
880input( {prompt} [, {text}]) String get input from the user
881inputdialog( {p} [, {t} [, {c}]]) String like input() but in a GUI dialog
882inputrestore() Number restore typeahead
883inputsave() Number save and clear typeahead
884inputsecret( {prompt} [, {text}]) String like input() but hiding the text
885isdirectory( {directory}) Number TRUE if {directory} is a directory
886libcall( {lib}, {func}, {arg}) String call {func} in library {lib} with {arg}
887libcallnr( {lib}, {func}, {arg}) Number idem, but return a Number
888line( {expr}) Number line nr of cursor, last line or mark
889line2byte( {lnum}) Number byte count of line {lnum}
890lispindent( {lnum}) Number Lisp indent for line {lnum}
891localtime() Number current time
892maparg( {name}[, {mode}]) String rhs of mapping {name} in mode {mode}
893mapcheck( {name}[, {mode}]) String check for mappings matching {name}
Bram Moolenaar89cb5e02004-07-19 20:55:54 +0000894match( {expr}, {pat}[, {start}[, {count}]])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 Number position where {pat} matches in {expr}
Bram Moolenaar89cb5e02004-07-19 20:55:54 +0000896matchend( {expr}, {pat}[, {start}[, {count}]])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 Number position where {pat} ends in {expr}
Bram Moolenaar89cb5e02004-07-19 20:55:54 +0000898matchstr( {expr}, {pat}[, {start}[, {count}]])
899 String {count}'th match of {pat} in {expr}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900mode() String current editing mode
901nextnonblank( {lnum}) Number line nr of non-blank line >= {lnum}
902nr2char( {expr}) String single char with ASCII value {expr}
903prevnonblank( {lnum}) Number line nr of non-blank line <= {lnum}
904remote_expr( {server}, {string} [, {idvar}])
905 String send expression
906remote_foreground( {server}) Number bring Vim server to the foreground
907remote_peek( {serverid} [, {retvar}])
908 Number check for reply string
909remote_read( {serverid}) String read reply string
910remote_send( {server}, {string} [, {idvar}])
911 String send key sequence
912rename( {from}, {to}) Number rename (move) file from {from} to {to}
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000913repeat( {expr}, {count}) String repeat {expr} {count} times
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914resolve( {filename}) String get filename a shortcut points to
915search( {pattern} [, {flags}]) Number search for {pattern}
916searchpair( {start}, {middle}, {end} [, {flags} [, {skip}]])
917 Number search for other end of start/end pair
918server2client( {clientid}, {string})
919 Number send reply string
920serverlist() String get a list of available servers
921setbufvar( {expr}, {varname}, {val}) set {varname} in buffer {expr} to {val}
922setcmdpos( {pos}) Number set cursor position in command-line
923setline( {lnum}, {line}) Number set line {lnum} to {line}
924setreg( {n}, {v}[, {opt}]) Number set register to value and type
925setwinvar( {nr}, {varname}, {val}) set {varname} in window {nr} to {val}
926simplify( {filename}) String simplify filename as much as possible
927strftime( {format}[, {time}]) String time in specified format
928stridx( {haystack}, {needle}) Number first index of {needle} in {haystack}
929strlen( {expr}) Number length of the String {expr}
930strpart( {src}, {start}[, {len}])
931 String {len} characters of {src} at {start}
932strridx( {haystack}, {needle}) Number last index of {needle} in {haystack}
933strtrans( {expr}) String translate string to make it printable
934submatch( {nr}) String specific match in ":substitute"
935substitute( {expr}, {pat}, {sub}, {flags})
936 String all {pat} in {expr} replaced with {sub}
Bram Moolenaar47136d72004-10-12 20:02:24 +0000937synID( {lnum}, {col}, {trans}) Number syntax ID at {lnum} and {col}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938synIDattr( {synID}, {what} [, {mode}])
939 String attribute {what} of syntax ID {synID}
940synIDtrans( {synID}) Number translated syntax ID of {synID}
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000941system( {expr} [, {input}]) String output of shell command/filter {expr}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942tempname() String name for a temporary file
943tolower( {expr}) String the String {expr} switched to lowercase
944toupper( {expr}) String the String {expr} switched to uppercase
Bram Moolenaar8299df92004-07-10 09:47:34 +0000945tr( {src}, {fromstr}, {tostr}) String translate chars of {src} in {fromstr}
946 to chars in {tostr}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947type( {name}) Number type of variable {name}
948virtcol( {expr}) Number screen column of cursor or mark
949visualmode( [expr]) String last visual mode used
950winbufnr( {nr}) Number buffer number of window {nr}
951wincol() Number window column of the cursor
952winheight( {nr}) Number height of window {nr}
953winline() Number window line of the cursor
954winnr() Number number of current window
955winrestcmd() String returns command to restore window sizes
956winwidth( {nr}) Number width of window {nr}
957
958append({lnum}, {string}) *append()*
959 Append the text {string} after line {lnum} in the current
960 buffer. {lnum} can be zero, to insert a line before the first
961 one. Returns 1 for failure ({lnum} out of range) or 0 for
962 success.
963
964 *argc()*
965argc() The result is the number of files in the argument list of the
966 current window. See |arglist|.
967
968 *argidx()*
969argidx() The result is the current index in the argument list. 0 is
970 the first file. argc() - 1 is the last one. See |arglist|.
971
972 *argv()*
973argv({nr}) The result is the {nr}th file in the argument list of the
974 current window. See |arglist|. "argv(0)" is the first one.
975 Example: >
976 :let i = 0
977 :while i < argc()
978 : let f = escape(argv(i), '. ')
979 : exe 'amenu Arg.' . f . ' :e ' . f . '<CR>'
980 : let i = i + 1
981 :endwhile
982<
983 *browse()*
984browse({save}, {title}, {initdir}, {default})
985 Put up a file requester. This only works when "has("browse")"
986 returns non-zero (only in some GUI versions).
987 The input fields are:
988 {save} when non-zero, select file to write
989 {title} title for the requester
990 {initdir} directory to start browsing in
991 {default} default file name
992 When the "Cancel" button is hit, something went wrong, or
993 browsing is not possible, an empty string is returned.
994
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000995 *browsedir()*
996browsedir({title}, {initdir})
997 Put up a directory requester. This only works when
998 "has("browse")" returns non-zero (only in some GUI versions).
999 On systems where a directory browser is not supported a file
1000 browser is used. In that case: select a file in the directory
1001 to be used.
1002 The input fields are:
1003 {title} title for the requester
1004 {initdir} directory to start browsing in
1005 When the "Cancel" button is hit, something went wrong, or
1006 browsing is not possible, an empty string is returned.
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008bufexists({expr}) *bufexists()*
1009 The result is a Number, which is non-zero if a buffer called
1010 {expr} exists.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001011 If the {expr} argument is a number, buffer numbers are used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 If the {expr} argument is a string it must match a buffer name
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001013 exactly. The name can be:
1014 - Relative to the current directory.
1015 - A full path.
1016 - The name of a buffer with 'filetype' set to "nofile".
1017 - A URL name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 Unlisted buffers will be found.
1019 Note that help files are listed by their short name in the
1020 output of |:buffers|, but bufexists() requires using their
1021 long name to be able to find them.
1022 Use "bufexists(0)" to test for the existence of an alternate
1023 file name.
1024 *buffer_exists()*
1025 Obsolete name: buffer_exists().
1026
1027buflisted({expr}) *buflisted()*
1028 The result is a Number, which is non-zero if a buffer called
1029 {expr} exists and is listed (has the 'buflisted' option set).
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001030 The {expr} argument is used like with |bufexists()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031
1032bufloaded({expr}) *bufloaded()*
1033 The result is a Number, which is non-zero if a buffer called
1034 {expr} exists and is loaded (shown in a window or hidden).
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001035 The {expr} argument is used like with |bufexists()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036
1037bufname({expr}) *bufname()*
1038 The result is the name of a buffer, as it is displayed by the
1039 ":ls" command.
1040 If {expr} is a Number, that buffer number's name is given.
1041 Number zero is the alternate buffer for the current window.
1042 If {expr} is a String, it is used as a |file-pattern| to match
1043 with the buffer names. This is always done like 'magic' is
1044 set and 'cpoptions' is empty. When there is more than one
1045 match an empty string is returned.
1046 "" or "%" can be used for the current buffer, "#" for the
1047 alternate buffer.
1048 A full match is preferred, otherwise a match at the start, end
1049 or middle of the buffer name is accepted.
1050 Listed buffers are found first. If there is a single match
1051 with a listed buffer, that one is returned. Next unlisted
1052 buffers are searched for.
1053 If the {expr} is a String, but you want to use it as a buffer
1054 number, force it to be a Number by adding zero to it: >
1055 :echo bufname("3" + 0)
1056< If the buffer doesn't exist, or doesn't have a name, an empty
1057 string is returned. >
1058 bufname("#") alternate buffer name
1059 bufname(3) name of buffer 3
1060 bufname("%") name of current buffer
1061 bufname("file2") name of buffer where "file2" matches.
1062< *buffer_name()*
1063 Obsolete name: buffer_name().
1064
1065 *bufnr()*
1066bufnr({expr}) The result is the number of a buffer, as it is displayed by
1067 the ":ls" command. For the use of {expr}, see |bufname()|
1068 above. If the buffer doesn't exist, -1 is returned.
1069 bufnr("$") is the last buffer: >
1070 :let last_buffer = bufnr("$")
1071< The result is a Number, which is the highest buffer number
1072 of existing buffers. Note that not all buffers with a smaller
1073 number necessarily exist, because ":bwipeout" may have removed
1074 them. Use bufexists() to test for the existence of a buffer.
1075 *buffer_number()*
1076 Obsolete name: buffer_number().
1077 *last_buffer_nr()*
1078 Obsolete name for bufnr("$"): last_buffer_nr().
1079
1080bufwinnr({expr}) *bufwinnr()*
1081 The result is a Number, which is the number of the first
1082 window associated with buffer {expr}. For the use of {expr},
1083 see |bufname()| above. If buffer {expr} doesn't exist or
1084 there is no such window, -1 is returned. Example: >
1085
1086 echo "A window containing buffer 1 is " . (bufwinnr(1))
1087
1088< The number can be used with |CTRL-W_w| and ":wincmd w"
1089 |:wincmd|.
1090
1091
1092byte2line({byte}) *byte2line()*
1093 Return the line number that contains the character at byte
1094 count {byte} in the current buffer. This includes the
1095 end-of-line character, depending on the 'fileformat' option
1096 for the current buffer. The first character has byte count
1097 one.
1098 Also see |line2byte()|, |go| and |:goto|.
1099 {not available when compiled without the |+byte_offset|
1100 feature}
1101
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001102byteidx({expr}, {nr}) *byteidx()*
1103 Return byte index of the {nr}'th character in the string
1104 {expr}. Use zero for the first character, it returns zero.
1105 This function is only useful when there are multibyte
1106 characters, otherwise the returned value is equal to {nr}.
1107 Composing characters are counted as a separate character.
1108 Example : >
1109 echo matchstr(str, ".", byteidx(str, 3))
1110< will display the fourth character. Another way to do the
1111 same: >
1112 let s = strpart(str, byteidx(str, 3))
1113 echo strpart(s, 0, byteidx(s, 1))
1114< If there are less than {nr} characters -1 is returned.
1115 If there are exactly {nr} characters the length of the string
1116 is returned.
1117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118char2nr({expr}) *char2nr()*
1119 Return number value of the first char in {expr}. Examples: >
1120 char2nr(" ") returns 32
1121 char2nr("ABC") returns 65
1122< The current 'encoding' is used. Example for "utf-8": >
1123 char2nr("á") returns 225
1124 char2nr("á"[0]) returns 195
1125
1126cindent({lnum}) *cindent()*
1127 Get the amount of indent for line {lnum} according the C
1128 indenting rules, as with 'cindent'.
1129 The indent is counted in spaces, the value of 'tabstop' is
1130 relevant. {lnum} is used just like in |getline()|.
1131 When {lnum} is invalid or Vim was not compiled the |+cindent|
1132 feature, -1 is returned.
1133
1134 *col()*
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001135col({expr}) The result is a Number, which is the byte index of the column
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 position given with {expr}. The accepted positions are:
1137 . the cursor position
1138 $ the end of the cursor line (the result is the
1139 number of characters in the cursor line plus one)
1140 'x position of mark x (if the mark is not set, 0 is
1141 returned)
1142 For the screen column position use |virtcol()|.
1143 Note that only marks in the current file can be used.
1144 Examples: >
1145 col(".") column of cursor
1146 col("$") length of cursor line plus one
1147 col("'t") column of mark t
1148 col("'" . markname) column of mark markname
1149< The first column is 1. 0 is returned for an error.
1150 For the cursor position, when 'virtualedit' is active, the
1151 column is one higher if the cursor is after the end of the
1152 line. This can be used to obtain the column in Insert mode: >
1153 :imap <F2> <C-O>:let save_ve = &ve<CR>
1154 \<C-O>:set ve=all<CR>
1155 \<C-O>:echo col(".") . "\n" <Bar>
1156 \let &ve = save_ve<CR>
1157<
1158 *confirm()*
1159confirm({msg} [, {choices} [, {default} [, {type}]]])
1160 Confirm() offers the user a dialog, from which a choice can be
1161 made. It returns the number of the choice. For the first
1162 choice this is 1.
1163 Note: confirm() is only supported when compiled with dialog
1164 support, see |+dialog_con| and |+dialog_gui|.
1165 {msg} is displayed in a |dialog| with {choices} as the
1166 alternatives. When {choices} is missing or empty, "&OK" is
1167 used (and translated).
1168 {msg} is a String, use '\n' to include a newline. Only on
1169 some systems the string is wrapped when it doesn't fit.
1170 {choices} is a String, with the individual choices separated
1171 by '\n', e.g. >
1172 confirm("Save changes?", "&Yes\n&No\n&Cancel")
1173< The letter after the '&' is the shortcut key for that choice.
1174 Thus you can type 'c' to select "Cancel". The shortcut does
1175 not need to be the first letter: >
1176 confirm("file has been modified", "&Save\nSave &All")
1177< For the console, the first letter of each choice is used as
1178 the default shortcut key.
1179 The optional {default} argument is the number of the choice
1180 that is made if the user hits <CR>. Use 1 to make the first
1181 choice the default one. Use 0 to not set a default. If
1182 {default} is omitted, 1 is used.
1183 The optional {type} argument gives the type of dialog. This
1184 is only used for the icon of the Win32 GUI. It can be one of
1185 these values: "Error", "Question", "Info", "Warning" or
1186 "Generic". Only the first character is relevant. When {type}
1187 is omitted, "Generic" is used.
1188 If the user aborts the dialog by pressing <Esc>, CTRL-C,
1189 or another valid interrupt key, confirm() returns 0.
1190
1191 An example: >
1192 :let choice = confirm("What do you want?", "&Apples\n&Oranges\n&Bananas", 2)
1193 :if choice == 0
1194 : echo "make up your mind!"
1195 :elseif choice == 3
1196 : echo "tasteful"
1197 :else
1198 : echo "I prefer bananas myself."
1199 :endif
1200< In a GUI dialog, buttons are used. The layout of the buttons
1201 depends on the 'v' flag in 'guioptions'. If it is included,
1202 the buttons are always put vertically. Otherwise, confirm()
1203 tries to put the buttons in one horizontal line. If they
1204 don't fit, a vertical layout is used anyway. For some systems
1205 the horizontal layout is always used.
1206
1207 *cscope_connection()*
1208cscope_connection([{num} , {dbpath} [, {prepend}]])
1209 Checks for the existence of a |cscope| connection. If no
1210 parameters are specified, then the function returns:
1211 0, if cscope was not available (not compiled in), or
1212 if there are no cscope connections;
1213 1, if there is at least one cscope connection.
1214
1215 If parameters are specified, then the value of {num}
1216 determines how existence of a cscope connection is checked:
1217
1218 {num} Description of existence check
1219 ----- ------------------------------
1220 0 Same as no parameters (e.g., "cscope_connection()").
1221 1 Ignore {prepend}, and use partial string matches for
1222 {dbpath}.
1223 2 Ignore {prepend}, and use exact string matches for
1224 {dbpath}.
1225 3 Use {prepend}, use partial string matches for both
1226 {dbpath} and {prepend}.
1227 4 Use {prepend}, use exact string matches for both
1228 {dbpath} and {prepend}.
1229
1230 Note: All string comparisons are case sensitive!
1231
1232 Examples. Suppose we had the following (from ":cs show"): >
1233
1234 # pid database name prepend path
1235 0 27664 cscope.out /usr/local
1236<
1237 Invocation Return Val ~
1238 ---------- ---------- >
1239 cscope_connection() 1
1240 cscope_connection(1, "out") 1
1241 cscope_connection(2, "out") 0
1242 cscope_connection(3, "out") 0
1243 cscope_connection(3, "out", "local") 1
1244 cscope_connection(4, "out") 0
1245 cscope_connection(4, "out", "local") 0
1246 cscope_connection(4, "cscope.out", "/usr/local") 1
1247<
1248cursor({lnum}, {col}) *cursor()*
1249 Positions the cursor at the column {col} in the line {lnum}.
1250 Does not change the jumplist.
1251 If {lnum} is greater than the number of lines in the buffer,
1252 the cursor will be positioned at the last line in the buffer.
1253 If {lnum} is zero, the cursor will stay in the current line.
1254 If {col} is greater than the number of characters in the line,
1255 the cursor will be positioned at the last character in the
1256 line.
1257 If {col} is zero, the cursor will stay in the current column.
1258
1259 *delete()*
1260delete({fname}) Deletes the file by the name {fname}. The result is a Number,
1261 which is 0 if the file was deleted successfully, and non-zero
1262 when the deletion failed.
1263
1264 *did_filetype()*
1265did_filetype() Returns non-zero when autocommands are being executed and the
1266 FileType event has been triggered at least once. Can be used
1267 to avoid triggering the FileType event again in the scripts
1268 that detect the file type. |FileType|
1269 When editing another file, the counter is reset, thus this
1270 really checks if the FileType event has been triggered for the
1271 current buffer. This allows an autocommand that starts
1272 editing another buffer to set 'filetype' and load a syntax
1273 file.
1274
Bram Moolenaar47136d72004-10-12 20:02:24 +00001275diff_filler({lnum}) *diff_filler()*
1276 Returns the number of filler lines above line {lnum}.
1277 These are the lines that were inserted at this point in
1278 another diff'ed window. These filler lines are shown in the
1279 display but don't exist in the buffer.
1280 {lnum} is used like with |getline()|. Thus "." is the current
1281 line, "'m" mark m, etc.
1282 Returns 0 if the current window is not in diff mode.
1283
1284diff_hlID({lnum}, {col}) *diff_hlID()*
1285 Returns the highlight ID for diff mode at line {lnum} column
1286 {col} (byte index). When the current line does not have a
1287 diff change zero is returned.
1288 {lnum} is used like with |getline()|. Thus "." is the current
1289 line, "'m" mark m, etc.
1290 {col} is 1 for the leftmost column, {lnum} is 1 for the first
1291 line.
1292 The highlight ID can be used with |synIDattr()| to obtain
1293 syntax information about the highlighting.
1294
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295escape({string}, {chars}) *escape()*
1296 Escape the characters in {chars} that occur in {string} with a
1297 backslash. Example: >
1298 :echo escape('c:\program files\vim', ' \')
1299< results in: >
1300 c:\\program\ files\\vim
1301<
1302eventhandler() *eventhandler()*
1303 Returns 1 when inside an event handler. That is that Vim got
1304 interrupted while waiting for the user to type a character,
1305 e.g., when dropping a file on Vim. This means interactive
1306 commands cannot be used. Otherwise zero is returned.
1307
1308executable({expr}) *executable()*
1309 This function checks if an executable with the name {expr}
1310 exists. {expr} must be the name of the program without any
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001311 arguments.
1312 executable() uses the value of $PATH and/or the normal
1313 searchpath for programs. *PATHEXT*
1314 On MS-DOS and MS-Windows the ".exe", ".bat", etc. can
1315 optionally be included. Then the extensions in $PATHEXT are
1316 tried. Thus if "foo.exe" does not exist, "foo.exe.bat" can be
1317 found. If $PATHEXT is not set then ".exe;.com;.bat;.cmd" is
1318 used. A dot by itself can be used in $PATHEXT to try using
1319 the name without an extension. When 'shell' looks like a
1320 Unix shell, then the name is also tried without adding an
1321 extension.
1322 On MS-DOS and MS-Windows it only checks if the file exists and
1323 is not a directory, not if it's really executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 The result is a Number:
1325 1 exists
1326 0 does not exist
1327 -1 not implemented on this system
1328
1329 *exists()*
1330exists({expr}) The result is a Number, which is non-zero if {expr} is
1331 defined, zero otherwise. The {expr} argument is a string,
1332 which contains one of these:
1333 &option-name Vim option (only checks if it exists,
1334 not if it really works)
1335 +option-name Vim option that works.
1336 $ENVNAME environment variable (could also be
1337 done by comparing with an empty
1338 string)
1339 *funcname built-in function (see |functions|)
1340 or user defined function (see
1341 |user-functions|).
1342 varname internal variable (see
1343 |internal-variables|). Does not work
1344 for |curly-braces-names|.
1345 :cmdname Ex command: built-in command, user
1346 command or command modifier |:command|.
1347 Returns:
1348 1 for match with start of a command
1349 2 full match with a command
1350 3 matches several user commands
1351 To check for a supported command
1352 always check the return value to be 2.
1353 #event autocommand defined for this event
1354 #event#pattern autocommand defined for this event and
1355 pattern (the pattern is taken
1356 literally and compared to the
1357 autocommand patterns character by
1358 character)
1359 For checking for a supported feature use |has()|.
1360
1361 Examples: >
1362 exists("&shortname")
1363 exists("$HOSTNAME")
1364 exists("*strftime")
1365 exists("*s:MyFunc")
1366 exists("bufcount")
1367 exists(":Make")
1368 exists("#CursorHold");
1369 exists("#BufReadPre#*.gz")
1370< There must be no space between the symbol (&/$/*/#) and the
1371 name.
1372 Note that the argument must be a string, not the name of the
1373 variable itself! For example: >
1374 exists(bufcount)
1375< This doesn't check for existence of the "bufcount" variable,
1376 but gets the contents of "bufcount", and checks if that
1377 exists.
1378
1379expand({expr} [, {flag}]) *expand()*
1380 Expand wildcards and the following special keywords in {expr}.
1381 The result is a String.
1382
1383 When there are several matches, they are separated by <NL>
1384 characters. [Note: in version 5.0 a space was used, which
1385 caused problems when a file name contains a space]
1386
1387 If the expansion fails, the result is an empty string. A name
1388 for a non-existing file is not included.
1389
1390 When {expr} starts with '%', '#' or '<', the expansion is done
1391 like for the |cmdline-special| variables with their associated
1392 modifiers. Here is a short overview:
1393
1394 % current file name
1395 # alternate file name
1396 #n alternate file name n
1397 <cfile> file name under the cursor
1398 <afile> autocmd file name
1399 <abuf> autocmd buffer number (as a String!)
1400 <amatch> autocmd matched name
1401 <sfile> sourced script file name
1402 <cword> word under the cursor
1403 <cWORD> WORD under the cursor
1404 <client> the {clientid} of the last received
1405 message |server2client()|
1406 Modifiers:
1407 :p expand to full path
1408 :h head (last path component removed)
1409 :t tail (last path component only)
1410 :r root (one extension removed)
1411 :e extension only
1412
1413 Example: >
1414 :let &tags = expand("%:p:h") . "/tags"
1415< Note that when expanding a string that starts with '%', '#' or
1416 '<', any following text is ignored. This does NOT work: >
1417 :let doesntwork = expand("%:h.bak")
1418< Use this: >
1419 :let doeswork = expand("%:h") . ".bak"
1420< Also note that expanding "<cfile>" and others only returns the
1421 referenced file name without further expansion. If "<cfile>"
1422 is "~/.cshrc", you need to do another expand() to have the
1423 "~/" expanded into the path of the home directory: >
1424 :echo expand(expand("<cfile>"))
1425<
1426 There cannot be white space between the variables and the
1427 following modifier. The |fnamemodify()| function can be used
1428 to modify normal file names.
1429
1430 When using '%' or '#', and the current or alternate file name
1431 is not defined, an empty string is used. Using "%:p" in a
1432 buffer with no name, results in the current directory, with a
1433 '/' added.
1434
1435 When {expr} does not start with '%', '#' or '<', it is
1436 expanded like a file name is expanded on the command line.
1437 'suffixes' and 'wildignore' are used, unless the optional
1438 {flag} argument is given and it is non-zero. Names for
1439 non-existing files are included.
1440
1441 Expand() can also be used to expand variables and environment
1442 variables that are only known in a shell. But this can be
1443 slow, because a shell must be started. See |expr-env-expand|.
1444 The expanded variable is still handled like a list of file
1445 names. When an environment variable cannot be expanded, it is
1446 left unchanged. Thus ":echo expand('$FOOBAR')" results in
1447 "$FOOBAR".
1448
1449 See |glob()| for finding existing files. See |system()| for
1450 getting the raw output of an external command.
1451
1452filereadable({file}) *filereadable()*
1453 The result is a Number, which is TRUE when a file with the
1454 name {file} exists, and can be read. If {file} doesn't exist,
1455 or is a directory, the result is FALSE. {file} is any
1456 expression, which is used as a String.
1457 *file_readable()*
1458 Obsolete name: file_readable().
1459
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001460finddir({name}[, {path}[, {count}]]) *finddir()*
1461 Find directory {name} in {path}.
1462 If {path} is omitted or empty then 'path' is used.
1463 If the optional {count} is given, find {count}'s occurrence of
1464 {name} in {path}.
1465 This is quite similar to the ex-command |:find|.
1466 When the found directory is below the current directory a
1467 relative path is returned. Otherwise a full path is returned.
1468 Example: >
1469 :echo findfile("tags.vim", ".;")
1470< Searches from the current directory upwards until it finds
1471 the file "tags.vim".
1472 {only available when compiled with the +file_in_path feature}
1473
1474findfile({name}[, {path}[, {count}]]) *findfile()*
1475 Just like |finddir()|, but find a file instead of a directory.
1476
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477filewritable({file}) *filewritable()*
1478 The result is a Number, which is 1 when a file with the
1479 name {file} exists, and can be written. If {file} doesn't
1480 exist, or is not writable, the result is 0. If (file) is a
1481 directory, and we can write to it, the result is 2.
1482
1483fnamemodify({fname}, {mods}) *fnamemodify()*
1484 Modify file name {fname} according to {mods}. {mods} is a
1485 string of characters like it is used for file names on the
1486 command line. See |filename-modifiers|.
1487 Example: >
1488 :echo fnamemodify("main.c", ":p:h")
1489< results in: >
1490 /home/mool/vim/vim/src
1491< Note: Environment variables and "~" don't work in {fname}, use
1492 |expand()| first then.
1493
1494foldclosed({lnum}) *foldclosed()*
1495 The result is a Number. If the line {lnum} is in a closed
1496 fold, the result is the number of the first line in that fold.
1497 If the line {lnum} is not in a closed fold, -1 is returned.
1498
1499foldclosedend({lnum}) *foldclosedend()*
1500 The result is a Number. If the line {lnum} is in a closed
1501 fold, the result is the number of the last line in that fold.
1502 If the line {lnum} is not in a closed fold, -1 is returned.
1503
1504foldlevel({lnum}) *foldlevel()*
1505 The result is a Number, which is the foldlevel of line {lnum}
1506 in the current buffer. For nested folds the deepest level is
1507 returned. If there is no fold at line {lnum}, zero is
1508 returned. It doesn't matter if the folds are open or closed.
1509 When used while updating folds (from 'foldexpr') -1 is
1510 returned for lines where folds are still to be updated and the
1511 foldlevel is unknown. As a special case the level of the
1512 previous line is usually available.
1513
1514 *foldtext()*
1515foldtext() Returns a String, to be displayed for a closed fold. This is
1516 the default function used for the 'foldtext' option and should
1517 only be called from evaluating 'foldtext'. It uses the
1518 |v:foldstart|, |v:foldend| and |v:folddashes| variables.
1519 The returned string looks like this: >
1520 +-- 45 lines: abcdef
1521< The number of dashes depends on the foldlevel. The "45" is
1522 the number of lines in the fold. "abcdef" is the text in the
1523 first non-blank line of the fold. Leading white space, "//"
1524 or "/*" and the text from the 'foldmarker' and 'commentstring'
1525 options is removed.
1526 {not available when compiled without the |+folding| feature}
1527
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001528foldtextresult({lnum}) *foldtextresult()*
1529 Returns the text that is displayed for the closed fold at line
1530 {lnum}. Evaluates 'foldtext' in the appropriate context.
1531 When there is no closed fold at {lnum} an empty string is
1532 returned.
1533 {lnum} is used like with |getline()|. Thus "." is the current
1534 line, "'m" mark m, etc.
1535 Useful when exporting folded text, e.g., to HTML.
1536 {not available when compiled without the |+folding| feature}
1537
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 *foreground()*
1539foreground() Move the Vim window to the foreground. Useful when sent from
1540 a client to a Vim server. |remote_send()|
1541 On Win32 systems this might not work, the OS does not always
1542 allow a window to bring itself to the foreground. Use
1543 |remote_foreground()| instead.
1544 {only in the Win32, Athena, Motif and GTK GUI versions and the
1545 Win32 console version}
1546
1547getchar([expr]) *getchar()*
1548 Get a single character from the user. If it is an 8-bit
1549 character, the result is a number. Otherwise a String is
1550 returned with the encoded character. For a special key it's a
1551 sequence of bytes starting with 0x80 (decimal: 128).
1552 If [expr] is omitted, wait until a character is available.
1553 If [expr] is 0, only get a character when one is available.
1554 If [expr] is 1, only check if a character is available, it is
1555 not consumed. If a normal character is
1556 available, it is returned, otherwise a
1557 non-zero value is returned.
1558 If a normal character available, it is returned as a Number.
1559 Use nr2char() to convert it to a String.
1560 The returned value is zero if no character is available.
1561 The returned value is a string of characters for special keys
1562 and when a modifier (shift, control, alt) was used.
1563 There is no prompt, you will somehow have to make clear to the
1564 user that a character has to be typed.
1565 There is no mapping for the character.
1566 Key codes are replaced, thus when the user presses the <Del>
1567 key you get the code for the <Del> key, not the raw character
1568 sequence. Examples: >
1569 getchar() == "\<Del>"
1570 getchar() == "\<S-Left>"
1571< This example redefines "f" to ignore case: >
1572 :nmap f :call FindChar()<CR>
1573 :function FindChar()
1574 : let c = nr2char(getchar())
1575 : while col('.') < col('$') - 1
1576 : normal l
1577 : if getline('.')[col('.') - 1] ==? c
1578 : break
1579 : endif
1580 : endwhile
1581 :endfunction
1582
1583getcharmod() *getcharmod()*
1584 The result is a Number which is the state of the modifiers for
1585 the last obtained character with getchar() or in another way.
1586 These values are added together:
1587 2 shift
1588 4 control
1589 8 alt (meta)
1590 16 mouse double click
1591 32 mouse triple click
1592 64 mouse quadruple click
1593 128 Macintosh only: command
1594 Only the modifiers that have not been included in the
1595 character itself are obtained. Thus Shift-a results in "A"
1596 with no modifier.
1597
1598getbufvar({expr}, {varname}) *getbufvar()*
1599 The result is the value of option or local buffer variable
1600 {varname} in buffer {expr}. Note that the name without "b:"
1601 must be used.
1602 This also works for a global or local window option, but it
1603 doesn't work for a global or local window variable.
1604 For the use of {expr}, see |bufname()| above.
1605 When the buffer or variable doesn't exist an empty string is
1606 returned, there is no error message.
1607 Examples: >
1608 :let bufmodified = getbufvar(1, "&mod")
1609 :echo "todo myvar = " . getbufvar("todo", "myvar")
1610<
1611getcmdline() *getcmdline()*
1612 Return the current command-line. Only works when the command
1613 line is being edited, thus requires use of |c_CTRL-\_e| or
1614 |c_CTRL-R_=|.
1615 Example: >
1616 :cmap <F7> <C-\>eescape(getcmdline(), ' \')<CR>
1617< Also see |getcmdpos()| and |setcmdpos()|.
1618
1619getcmdpos({pos}) *getcmdpos()*
1620 Return the position of the cursor in the command line as a
1621 byte count. The first column is 1.
1622 Only works when editing the command line, thus requires use of
1623 |c_CTRL-\_e| or |c_CTRL-R_=|. Returns 0 otherwise.
1624 Also see |setcmdpos()| and |getcmdline()|.
1625
1626 *getcwd()*
1627getcwd() The result is a String, which is the name of the current
1628 working directory.
1629
1630getfsize({fname}) *getfsize()*
1631 The result is a Number, which is the size in bytes of the
1632 given file {fname}.
1633 If {fname} is a directory, 0 is returned.
1634 If the file {fname} can't be found, -1 is returned.
1635
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001636getfperm({fname}) *getfperm()*
1637 The result is a String, which is the read, write, and execute
1638 permissions of the given file {fname}.
1639 If {fname} does not exist or its directory cannot be read, an
1640 empty string is returned.
1641 The result is of the form "rwxrwxrwx", where each group of
1642 "rwx" flags represent, in turn, the permissions of the owner
1643 of the file, the group the file belongs to, and other users.
1644 If a user does not have a given permission the flag for this
1645 is replaced with the string "-". Example: >
1646 :echo getfperm("/etc/passwd")
1647< This will hopefully (from a security point of view) display
1648 the string "rw-r--r--" or even "rw-------".
1649
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650getftime({fname}) *getftime()*
1651 The result is a Number, which is the last modification time of
1652 the given file {fname}. The value is measured as seconds
1653 since 1st Jan 1970, and may be passed to strftime(). See also
1654 |localtime()| and |strftime()|.
1655 If the file {fname} can't be found -1 is returned.
1656
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001657getftype({fname}) *getftype()*
1658 The result is a String, which is a description of the kind of
1659 file of the given file {fname}.
1660 If {fname} does not exist an empty string is returned.
1661 Here is a table over different kinds of files and their
1662 results:
1663 Normal file "file"
1664 Directory "dir"
1665 Symbolic link "link"
1666 Block device "bdev"
1667 Character device "cdev"
1668 Socket "socket"
1669 FIFO "fifo"
1670 All other "other"
1671 Example: >
1672 getftype("/home")
1673< Note that a type such as "link" will only be returned on
1674 systems that support it. On some systems only "dir" and
1675 "file" are returned.
1676
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 *getline()*
1678getline({lnum}) The result is a String, which is line {lnum} from the current
1679 buffer. Example: >
1680 getline(1)
1681< When {lnum} is a String that doesn't start with a
1682 digit, line() is called to translate the String into a Number.
1683 To get the line under the cursor: >
1684 getline(".")
1685< When {lnum} is smaller than 1 or bigger than the number of
1686 lines in the buffer, an empty string is returned.
1687
1688getreg([{regname}]) *getreg()*
1689 The result is a String, which is the contents of register
1690 {regname}. Example: >
1691 :let cliptext = getreg('*')
1692< getreg('=') returns the last evaluated value of the expression
1693 register. (For use in maps).
1694 If {regname} is not specified, |v:register| is used.
1695
1696getregtype([{regname}]) *getregtype()*
1697 The result is a String, which is type of register {regname}.
1698 The value will be one of:
1699 "v" for |characterwise| text
1700 "V" for |linewise| text
1701 "<CTRL-V>{width}" for |blockwise-visual| text
1702 0 for an empty or unknown register
1703 <CTRL-V> is one character with value 0x16.
1704 If {regname} is not specified, |v:register| is used.
1705
1706 *getwinposx()*
1707getwinposx() The result is a Number, which is the X coordinate in pixels of
1708 the left hand side of the GUI Vim window. The result will be
1709 -1 if the information is not available.
1710
1711 *getwinposy()*
1712getwinposy() The result is a Number, which is the Y coordinate in pixels of
1713 the top of the GUI Vim window. The result will be -1 if the
1714 information is not available.
1715
1716getwinvar({nr}, {varname}) *getwinvar()*
1717 The result is the value of option or local window variable
1718 {varname} in window {nr}.
1719 This also works for a global or local buffer option, but it
1720 doesn't work for a global or local buffer variable.
1721 Note that the name without "w:" must be used.
1722 Examples: >
1723 :let list_is_on = getwinvar(2, '&list')
1724 :echo "myvar = " . getwinvar(1, 'myvar')
1725<
1726 *glob()*
1727glob({expr}) Expand the file wildcards in {expr}. The result is a String.
1728 When there are several matches, they are separated by <NL>
1729 characters.
1730 If the expansion fails, the result is an empty string.
1731 A name for a non-existing file is not included.
1732
1733 For most systems backticks can be used to get files names from
1734 any external command. Example: >
1735 :let tagfiles = glob("`find . -name tags -print`")
1736 :let &tags = substitute(tagfiles, "\n", ",", "g")
1737< The result of the program inside the backticks should be one
1738 item per line. Spaces inside an item are allowed.
1739
1740 See |expand()| for expanding special Vim variables. See
1741 |system()| for getting the raw output of an external command.
1742
1743globpath({path}, {expr}) *globpath()*
1744 Perform glob() on all directories in {path} and concatenate
1745 the results. Example: >
1746 :echo globpath(&rtp, "syntax/c.vim")
1747< {path} is a comma-separated list of directory names. Each
1748 directory name is prepended to {expr} and expanded like with
1749 glob(). A path separator is inserted when needed.
1750 To add a comma inside a directory name escape it with a
1751 backslash. Note that on MS-Windows a directory may have a
1752 trailing backslash, remove it if you put a comma after it.
1753 If the expansion fails for one of the directories, there is no
1754 error message.
1755 The 'wildignore' option applies: Names matching one of the
1756 patterns in 'wildignore' will be skipped.
1757
1758 *has()*
1759has({feature}) The result is a Number, which is 1 if the feature {feature} is
1760 supported, zero otherwise. The {feature} argument is a
1761 string. See |feature-list| below.
1762 Also see |exists()|.
1763
1764hasmapto({what} [, {mode}]) *hasmapto()*
1765 The result is a Number, which is 1 if there is a mapping that
1766 contains {what} in somewhere in the rhs (what it is mapped to)
1767 and this mapping exists in one of the modes indicated by
1768 {mode}.
1769 Both the global mappings and the mappings local to the current
1770 buffer are checked for a match.
1771 If no matching mapping is found 0 is returned.
1772 The following characters are recognized in {mode}:
1773 n Normal mode
1774 v Visual mode
1775 o Operator-pending mode
1776 i Insert mode
1777 l Language-Argument ("r", "f", "t", etc.)
1778 c Command-line mode
1779 When {mode} is omitted, "nvo" is used.
1780
1781 This function is useful to check if a mapping already exists
1782 to a function in a Vim script. Example: >
1783 :if !hasmapto('\ABCdoit')
1784 : map <Leader>d \ABCdoit
1785 :endif
1786< This installs the mapping to "\ABCdoit" only if there isn't
1787 already a mapping to "\ABCdoit".
1788
1789histadd({history}, {item}) *histadd()*
1790 Add the String {item} to the history {history} which can be
1791 one of: *hist-names*
1792 "cmd" or ":" command line history
1793 "search" or "/" search pattern history
1794 "expr" or "=" typed expression history
1795 "input" or "@" input line history
1796 If {item} does already exist in the history, it will be
1797 shifted to become the newest entry.
1798 The result is a Number: 1 if the operation was successful,
1799 otherwise 0 is returned.
1800
1801 Example: >
1802 :call histadd("input", strftime("%Y %b %d"))
1803 :let date=input("Enter date: ")
1804< This function is not available in the |sandbox|.
1805
1806histdel({history} [, {item}]) *histdel()*
1807 Clear {history}, ie. delete all its entries. See |hist-names|
1808 for the possible values of {history}.
1809
1810 If the parameter {item} is given as String, this is seen
1811 as regular expression. All entries matching that expression
1812 will be removed from the history (if there are any).
1813 Upper/lowercase must match, unless "\c" is used |/\c|.
1814 If {item} is a Number, it will be interpreted as index, see
1815 |:history-indexing|. The respective entry will be removed
1816 if it exists.
1817
1818 The result is a Number: 1 for a successful operation,
1819 otherwise 0 is returned.
1820
1821 Examples:
1822 Clear expression register history: >
1823 :call histdel("expr")
1824<
1825 Remove all entries starting with "*" from the search history: >
1826 :call histdel("/", '^\*')
1827<
1828 The following three are equivalent: >
1829 :call histdel("search", histnr("search"))
1830 :call histdel("search", -1)
1831 :call histdel("search", '^'.histget("search", -1).'$')
1832<
1833 To delete the last search pattern and use the last-but-one for
1834 the "n" command and 'hlsearch': >
1835 :call histdel("search", -1)
1836 :let @/ = histget("search", -1)
1837
1838histget({history} [, {index}]) *histget()*
1839 The result is a String, the entry with Number {index} from
1840 {history}. See |hist-names| for the possible values of
1841 {history}, and |:history-indexing| for {index}. If there is
1842 no such entry, an empty String is returned. When {index} is
1843 omitted, the most recent item from the history is used.
1844
1845 Examples:
1846 Redo the second last search from history. >
1847 :execute '/' . histget("search", -2)
1848
1849< Define an Ex command ":H {num}" that supports re-execution of
1850 the {num}th entry from the output of |:history|. >
1851 :command -nargs=1 H execute histget("cmd", 0+<args>)
1852<
1853histnr({history}) *histnr()*
1854 The result is the Number of the current entry in {history}.
1855 See |hist-names| for the possible values of {history}.
1856 If an error occurred, -1 is returned.
1857
1858 Example: >
1859 :let inp_index = histnr("expr")
1860<
1861hlexists({name}) *hlexists()*
1862 The result is a Number, which is non-zero if a highlight group
1863 called {name} exists. This is when the group has been
1864 defined in some way. Not necessarily when highlighting has
1865 been defined for it, it may also have been used for a syntax
1866 item.
1867 *highlight_exists()*
1868 Obsolete name: highlight_exists().
1869
1870 *hlID()*
1871hlID({name}) The result is a Number, which is the ID of the highlight group
1872 with name {name}. When the highlight group doesn't exist,
1873 zero is returned.
1874 This can be used to retrieve information about the highlight
1875 group. For example, to get the background color of the
1876 "Comment" group: >
1877 :echo synIDattr(synIDtrans(hlID("Comment")), "bg")
1878< *highlightID()*
1879 Obsolete name: highlightID().
1880
1881hostname() *hostname()*
1882 The result is a String, which is the name of the machine on
1883 which Vim is currently running. Machine names greater than
1884 256 characters long are truncated.
1885
1886iconv({expr}, {from}, {to}) *iconv()*
1887 The result is a String, which is the text {expr} converted
1888 from encoding {from} to encoding {to}.
1889 When the conversion fails an empty string is returned.
1890 The encoding names are whatever the iconv() library function
1891 can accept, see ":!man 3 iconv".
1892 Most conversions require Vim to be compiled with the |+iconv|
1893 feature. Otherwise only UTF-8 to latin1 conversion and back
1894 can be done.
1895 This can be used to display messages with special characters,
1896 no matter what 'encoding' is set to. Write the message in
1897 UTF-8 and use: >
1898 echo iconv(utf8_str, "utf-8", &enc)
1899< Note that Vim uses UTF-8 for all Unicode encodings, conversion
1900 from/to UCS-2 is automatically changed to use UTF-8. You
1901 cannot use UCS-2 in a string anyway, because of the NUL bytes.
1902 {only available when compiled with the +multi_byte feature}
1903
1904 *indent()*
1905indent({lnum}) The result is a Number, which is indent of line {lnum} in the
1906 current buffer. The indent is counted in spaces, the value
1907 of 'tabstop' is relevant. {lnum} is used just like in
1908 |getline()|.
1909 When {lnum} is invalid -1 is returned.
1910
1911input({prompt} [, {text}]) *input()*
1912 The result is a String, which is whatever the user typed on
1913 the command-line. The parameter is either a prompt string, or
1914 a blank string (for no prompt). A '\n' can be used in the
1915 prompt to start a new line. The highlighting set with
1916 |:echohl| is used for the prompt. The input is entered just
1917 like a command-line, with the same editing commands and
1918 mappings. There is a separate history for lines typed for
1919 input().
1920 If the optional {text} is present, this is used for the
1921 default reply, as if the user typed this.
1922 NOTE: This must not be used in a startup file, for the
1923 versions that only run in GUI mode (e.g., the Win32 GUI).
1924 Note: When input() is called from within a mapping it will
1925 consume remaining characters from that mapping, because a
1926 mapping is handled like the characters were typed.
1927 Use |inputsave()| before input() and |inputrestore()|
1928 after input() to avoid that. Another solution is to avoid
1929 that further characters follow in the mapping, e.g., by using
1930 |:execute| or |:normal|.
1931
1932 Example: >
1933 :if input("Coffee or beer? ") == "beer"
1934 : echo "Cheers!"
1935 :endif
1936< Example with default text: >
1937 :let color = input("Color? ", "white")
1938< Example with a mapping: >
1939 :nmap \x :call GetFoo()<CR>:exe "/" . Foo<CR>
1940 :function GetFoo()
1941 : call inputsave()
1942 : let g:Foo = input("enter search pattern: ")
1943 : call inputrestore()
1944 :endfunction
1945
1946inputdialog({prompt} [, {text} [, {cancelreturn}]]) *inputdialog()*
1947 Like input(), but when the GUI is running and text dialogs are
1948 supported, a dialog window pops up to input the text.
1949 Example: >
1950 :let n = inputdialog("value for shiftwidth", &sw)
1951 :if n != ""
1952 : let &sw = n
1953 :endif
1954< When the dialog is cancelled {cancelreturn} is returned. When
1955 omitted an empty string is returned.
1956 Hitting <Enter> works like pressing the OK button. Hitting
1957 <Esc> works like pressing the Cancel button.
1958
1959inputrestore() *inputrestore()*
1960 Restore typeahead that was saved with a previous inputsave().
1961 Should be called the same number of times inputsave() is
1962 called. Calling it more often is harmless though.
1963 Returns 1 when there is nothing to restore, 0 otherwise.
1964
1965inputsave() *inputsave()*
1966 Preserve typeahead (also from mappings) and clear it, so that
1967 a following prompt gets input from the user. Should be
1968 followed by a matching inputrestore() after the prompt. Can
1969 be used several times, in which case there must be just as
1970 many inputrestore() calls.
1971 Returns 1 when out of memory, 0 otherwise.
1972
1973inputsecret({prompt} [, {text}]) *inputsecret()*
1974 This function acts much like the |input()| function with but
1975 two exceptions:
1976 a) the user's response will be displayed as a sequence of
1977 asterisks ("*") thereby keeping the entry secret, and
1978 b) the user's response will not be recorded on the input
1979 |history| stack.
1980 The result is a String, which is whatever the user actually
1981 typed on the command-line in response to the issued prompt.
1982
1983isdirectory({directory}) *isdirectory()*
1984 The result is a Number, which is non-zero when a directory
1985 with the name {directory} exists. If {directory} doesn't
1986 exist, or isn't a directory, the result is FALSE. {directory}
1987 is any expression, which is used as a String.
1988
1989 *libcall()* *E364* *E368*
1990libcall({libname}, {funcname}, {argument})
1991 Call function {funcname} in the run-time library {libname}
1992 with single argument {argument}.
1993 This is useful to call functions in a library that you
1994 especially made to be used with Vim. Since only one argument
1995 is possible, calling standard library functions is rather
1996 limited.
1997 The result is the String returned by the function. If the
1998 function returns NULL, this will appear as an empty string ""
1999 to Vim.
2000 If the function returns a number, use libcallnr()!
2001 If {argument} is a number, it is passed to the function as an
2002 int; if {argument} is a string, it is passed as a
2003 null-terminated string.
2004 This function will fail in |restricted-mode|.
2005
2006 libcall() allows you to write your own 'plug-in' extensions to
2007 Vim without having to recompile the program. It is NOT a
2008 means to call system functions! If you try to do so Vim will
2009 very probably crash.
2010
2011 For Win32, the functions you write must be placed in a DLL
2012 and use the normal C calling convention (NOT Pascal which is
2013 used in Windows System DLLs). The function must take exactly
2014 one parameter, either a character pointer or a long integer,
2015 and must return a character pointer or NULL. The character
2016 pointer returned must point to memory that will remain valid
2017 after the function has returned (e.g. in static data in the
2018 DLL). If it points to allocated memory, that memory will
2019 leak away. Using a static buffer in the function should work,
2020 it's then freed when the DLL is unloaded.
2021
2022 WARNING: If the function returns a non-valid pointer, Vim may
2023 crash! This also happens if the function returns a number,
2024 because Vim thinks it's a pointer.
2025 For Win32 systems, {libname} should be the filename of the DLL
2026 without the ".DLL" suffix. A full path is only required if
2027 the DLL is not in the usual places.
2028 For Unix: When compiling your own plugins, remember that the
2029 object code must be compiled as position-independent ('PIC').
2030 {only in Win32 on some Unix versions, when the |+libcall|
2031 feature is present}
2032 Examples: >
2033 :echo libcall("libc.so", "getenv", "HOME")
2034 :echo libcallnr("/usr/lib/libc.so", "getpid", "")
2035<
2036 *libcallnr()*
2037libcallnr({libname}, {funcname}, {argument})
2038 Just like libcall(), but used for a function that returns an
2039 int instead of a string.
2040 {only in Win32 on some Unix versions, when the |+libcall|
2041 feature is present}
2042 Example (not very useful...): >
2043 :call libcallnr("libc.so", "printf", "Hello World!\n")
2044 :call libcallnr("libc.so", "sleep", 10)
2045<
2046 *line()*
2047line({expr}) The result is a Number, which is the line number of the file
2048 position given with {expr}. The accepted positions are:
2049 . the cursor position
2050 $ the last line in the current buffer
2051 'x position of mark x (if the mark is not set, 0 is
2052 returned)
2053 Note that only marks in the current file can be used.
2054 Examples: >
2055 line(".") line number of the cursor
2056 line("'t") line number of mark t
2057 line("'" . marker) line number of mark marker
2058< *last-position-jump*
2059 This autocommand jumps to the last known position in a file
2060 just after opening it, if the '" mark is set: >
2061 :au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"" | endif
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002062
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063line2byte({lnum}) *line2byte()*
2064 Return the byte count from the start of the buffer for line
2065 {lnum}. This includes the end-of-line character, depending on
2066 the 'fileformat' option for the current buffer. The first
2067 line returns 1.
2068 This can also be used to get the byte count for the line just
2069 below the last line: >
2070 line2byte(line("$") + 1)
2071< This is the file size plus one.
2072 When {lnum} is invalid, or the |+byte_offset| feature has been
2073 disabled at compile time, -1 is returned.
2074 Also see |byte2line()|, |go| and |:goto|.
2075
2076lispindent({lnum}) *lispindent()*
2077 Get the amount of indent for line {lnum} according the lisp
2078 indenting rules, as with 'lisp'.
2079 The indent is counted in spaces, the value of 'tabstop' is
2080 relevant. {lnum} is used just like in |getline()|.
2081 When {lnum} is invalid or Vim was not compiled the
2082 |+lispindent| feature, -1 is returned.
2083
2084localtime() *localtime()*
2085 Return the current time, measured as seconds since 1st Jan
2086 1970. See also |strftime()| and |getftime()|.
2087
2088maparg({name}[, {mode}]) *maparg()*
2089 Return the rhs of mapping {name} in mode {mode}. When there
2090 is no mapping for {name}, an empty String is returned.
2091 These characters can be used for {mode}:
2092 "n" Normal
2093 "v" Visual
2094 "o" Operator-pending
2095 "i" Insert
2096 "c" Cmd-line
2097 "l" langmap |language-mapping|
2098 "" Normal, Visual and Operator-pending
2099 When {mode} is omitted, the modes from "" are used.
2100 The {name} can have special key names, like in the ":map"
2101 command. The returned String has special characters
2102 translated like in the output of the ":map" command listing.
2103 The mappings local to the current buffer are checked first,
2104 then the global mappings.
2105
2106mapcheck({name}[, {mode}]) *mapcheck()*
2107 Check if there is a mapping that matches with {name} in mode
2108 {mode}. See |maparg()| for {mode} and special names in
2109 {name}.
2110 A match happens with a mapping that starts with {name} and
2111 with a mapping which is equal to the start of {name}.
2112
2113 matches mapping "a" "ab" "abc" ~
2114 mapcheck("a") yes yes yes
2115 mapcheck("abc") yes yes yes
2116 mapcheck("ax") yes no no
2117 mapcheck("b") no no no
2118
2119 The difference with maparg() is that mapcheck() finds a
2120 mapping that matches with {name}, while maparg() only finds a
2121 mapping for {name} exactly.
2122 When there is no mapping that starts with {name}, an empty
2123 String is returned. If there is one, the rhs of that mapping
2124 is returned. If there are several mappings that start with
2125 {name}, the rhs of one of them is returned.
2126 The mappings local to the current buffer are checked first,
2127 then the global mappings.
2128 This function can be used to check if a mapping can be added
2129 without being ambiguous. Example: >
2130 :if mapcheck("_vv") == ""
2131 : map _vv :set guifont=7x13<CR>
2132 :endif
2133< This avoids adding the "_vv" mapping when there already is a
2134 mapping for "_v" or for "_vvv".
2135
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00002136match({expr}, {pat}[, {start}[, {count}]]) *match()*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 The result is a Number, which gives the index (byte offset) in
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00002138 {expr} where {pat} matches.
2139 A match at the first character returns zero.
2140 If there is no match -1 is returned.
2141 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 :echo match("testing", "ing")
2143< results in "4".
2144 See |string-match| for how {pat} is used.
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00002145 When {count} is given use the {count}'th match. When a match
2146 is found the search for the next one starts on character
2147 further. Thus this example results in 1: >
2148 echo match("testing", "..", 0, 2)
2149< If {start} is given, the search starts from index {start}.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 The result, however, is still the index counted from the
2151 first character. Example: >
2152 :echo match("testing", "ing", 2)
2153< result is again "4". >
2154 :echo match("testing", "ing", 4)
2155< result is again "4". >
2156 :echo match("testing", "t", 2)
2157< result is "3".
2158 If {start} < 0, it will be set to 0.
2159 If {start} > strlen({expr}) -1 is returned.
2160 See |pattern| for the patterns that are accepted.
2161 The 'ignorecase' option is used to set the ignore-caseness of
2162 the pattern. 'smartcase' is NOT used. The matching is always
2163 done like 'magic' is set and 'cpoptions' is empty.
2164
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00002165matchend({expr}, {pat}[, {start}[, {count}]]) *matchend()*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 Same as match(), but return the index of first character after
2167 the match. Example: >
2168 :echo matchend("testing", "ing")
2169< results in "7".
2170 The {start}, if given, has the same meaning as for match(). >
2171 :echo matchend("testing", "ing", 2)
2172< results in "7". >
2173 :echo matchend("testing", "ing", 5)
2174< result is "-1".
2175
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00002176matchstr({expr}, {pat}[, {start}[, {count}]]) *matchstr()*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 Same as match(), but return the matched string. Example: >
2178 :echo matchstr("testing", "ing")
2179< results in "ing".
2180 When there is no match "" is returned.
2181 The {start}, if given, has the same meaning as for match(). >
2182 :echo matchstr("testing", "ing", 2)
2183< results in "ing". >
2184 :echo matchstr("testing", "ing", 5)
2185< result is "".
2186
2187 *mode()*
2188mode() Return a string that indicates the current mode:
2189 n Normal
2190 v Visual by character
2191 V Visual by line
2192 CTRL-V Visual blockwise
2193 s Select by character
2194 S Select by line
2195 CTRL-S Select blockwise
2196 i Insert
2197 R Replace
2198 c Command-line
2199 r Hit-enter prompt
2200 This is useful in the 'statusline' option. In most other
2201 places it always returns "c" or "n".
2202
2203nextnonblank({lnum}) *nextnonblank()*
2204 Return the line number of the first line at or below {lnum}
2205 that is not blank. Example: >
2206 if getline(nextnonblank(1)) =~ "Java"
2207< When {lnum} is invalid or there is no non-blank line at or
2208 below it, zero is returned.
2209 See also |prevnonblank()|.
2210
2211nr2char({expr}) *nr2char()*
2212 Return a string with a single character, which has the number
2213 value {expr}. Examples: >
2214 nr2char(64) returns "@"
2215 nr2char(32) returns " "
2216< The current 'encoding' is used. Example for "utf-8": >
2217 nr2char(300) returns I with bow character
2218< Note that a NUL character in the file is specified with
2219 nr2char(10), because NULs are represented with newline
2220 characters. nr2char(0) is a real NUL and terminates the
2221 string, thus isn't very useful.
2222
2223prevnonblank({lnum}) *prevnonblank()*
2224 Return the line number of the first line at or above {lnum}
2225 that is not blank. Example: >
2226 let ind = indent(prevnonblank(v:lnum - 1))
2227< When {lnum} is invalid or there is no non-blank line at or
2228 above it, zero is returned.
2229 Also see |nextnonblank()|.
2230
2231 *remote_expr()* *E449*
2232remote_expr({server}, {string} [, {idvar}])
2233 Send the {string} to {server}. The string is sent as an
2234 expression and the result is returned after evaluation.
2235 If {idvar} is present, it is taken as the name of a
2236 variable and a {serverid} for later use with
2237 remote_read() is stored there.
2238 See also |clientserver| |RemoteReply|.
2239 This function is not available in the |sandbox|.
2240 {only available when compiled with the |+clientserver| feature}
2241 Note: Any errors will cause a local error message to be issued
2242 and the result will be the empty string.
2243 Examples: >
2244 :echo remote_expr("gvim", "2+2")
2245 :echo remote_expr("gvim1", "b:current_syntax")
2246<
2247
2248remote_foreground({server}) *remote_foreground()*
2249 Move the Vim server with the name {server} to the foreground.
2250 This works like: >
2251 remote_expr({server}, "foreground()")
2252< Except that on Win32 systems the client does the work, to work
2253 around the problem that the OS doesn't always allow the server
2254 to bring itself to the foreground.
2255 This function is not available in the |sandbox|.
2256 {only in the Win32, Athena, Motif and GTK GUI versions and the
2257 Win32 console version}
2258
2259
2260remote_peek({serverid} [, {retvar}]) *remote_peek()*
2261 Returns a positive number if there are available strings
2262 from {serverid}. Copies any reply string into the variable
2263 {retvar} if specified. {retvar} must be a string with the
2264 name of a variable.
2265 Returns zero if none are available.
2266 Returns -1 if something is wrong.
2267 See also |clientserver|.
2268 This function is not available in the |sandbox|.
2269 {only available when compiled with the |+clientserver| feature}
2270 Examples: >
2271 :let repl = ""
2272 :echo "PEEK: ".remote_peek(id, "repl").": ".repl
2273
2274remote_read({serverid}) *remote_read()*
2275 Return the oldest available reply from {serverid} and consume
2276 it. It blocks until a reply is available.
2277 See also |clientserver|.
2278 This function is not available in the |sandbox|.
2279 {only available when compiled with the |+clientserver| feature}
2280 Example: >
2281 :echo remote_read(id)
2282<
2283 *remote_send()* *E241*
2284remote_send({server}, {string} [, {idvar}])
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002285 Send the {string} to {server}. The string is sent as input
2286 keys and the function returns immediately. At the Vim server
2287 the keys are not mapped |:map|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 If {idvar} is present, it is taken as the name of a
2289 variable and a {serverid} for later use with
2290 remote_read() is stored there.
2291 See also |clientserver| |RemoteReply|.
2292 This function is not available in the |sandbox|.
2293 {only available when compiled with the |+clientserver| feature}
2294 Note: Any errors will be reported in the server and may mess
2295 up the display.
2296 Examples: >
2297 :echo remote_send("gvim", ":DropAndReply ".file, "serverid").
2298 \ remote_read(serverid)
2299
2300 :autocmd NONE RemoteReply *
2301 \ echo remote_read(expand("<amatch>"))
2302 :echo remote_send("gvim", ":sleep 10 | echo ".
2303 \ 'server2client(expand("<client>"), "HELLO")<CR>')
2304
2305
2306rename({from}, {to}) *rename()*
2307 Rename the file by the name {from} to the name {to}. This
2308 should also work to move files across file systems. The
2309 result is a Number, which is 0 if the file was renamed
2310 successfully, and non-zero when the renaming failed.
2311 This function is not available in the |sandbox|.
2312
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00002313repeat({expr}, {count}) *repeat()*
2314 Repeat {expr} {count} times and return the concatenated
2315 result. Example: >
2316 :let seperator = repeat('-', 80)
2317< When {count} is zero or negative the result is empty.
2318
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319resolve({filename}) *resolve()* *E655*
2320 On MS-Windows, when {filename} is a shortcut (a .lnk file),
2321 returns the path the shortcut points to in a simplified form.
2322 On Unix, repeat resolving symbolic links in all path
2323 components of {filename} and return the simplified result.
2324 To cope with link cycles, resolving of symbolic links is
2325 stopped after 100 iterations.
2326 On other systems, return the simplified {filename}.
2327 The simplification step is done as by |simplify()|.
2328 resolve() keeps a leading path component specifying the
2329 current directory (provided the result is still a relative
2330 path name) and also keeps a trailing path separator.
2331
2332search({pattern} [, {flags}]) *search()*
2333 Search for regexp pattern {pattern}. The search starts at the
2334 cursor position.
2335 {flags} is a String, which can contain these character flags:
2336 'b' search backward instead of forward
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00002337 'n' do Not move the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 'w' wrap around the end of the file
2339 'W' don't wrap around the end of the file
2340 If neither 'w' or 'W' is given, the 'wrapscan' option applies.
2341
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00002342 When a match has been found its line number is returned.
2343 The cursor will be positioned at the match, unless the 'n'
2344 flag is used).
2345 If there is no match a 0 is returned and the cursor doesn't
2346 move. No error message is given.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347
2348 Example (goes over all files in the argument list): >
2349 :let n = 1
2350 :while n <= argc() " loop over all files in arglist
2351 : exe "argument " . n
2352 : " start at the last char in the file and wrap for the
2353 : " first search to find match at start of file
2354 : normal G$
2355 : let flags = "w"
2356 : while search("foo", flags) > 0
2357 : s/foo/bar/g
2358 : let flags = "W"
2359 : endwhile
2360 : update " write the file if modified
2361 : let n = n + 1
2362 :endwhile
2363<
2364 *searchpair()*
2365searchpair({start}, {middle}, {end} [, {flags} [, {skip}]])
2366 Search for the match of a nested start-end pair. This can be
2367 used to find the "endif" that matches an "if", while other
2368 if/endif pairs in between are ignored.
2369 The search starts at the cursor. If a match is found, the
2370 cursor is positioned at it and the line number is returned.
2371 If no match is found 0 or -1 is returned and the cursor
2372 doesn't move. No error message is given.
2373
2374 {start}, {middle} and {end} are patterns, see |pattern|. They
2375 must not contain \( \) pairs. Use of \%( \) is allowed. When
2376 {middle} is not empty, it is found when searching from either
2377 direction, but only when not in a nested start-end pair. A
2378 typical use is: >
2379 searchpair('\<if\>', '\<else\>', '\<endif\>')
2380< By leaving {middle} empty the "else" is skipped.
2381
2382 {flags} are used like with |search()|. Additionally:
2383 'n' do Not move the cursor
2384 'r' Repeat until no more matches found; will find the
2385 outer pair
2386 'm' return number of Matches instead of line number with
2387 the match; will only be > 1 when 'r' is used.
2388
2389 When a match for {start}, {middle} or {end} is found, the
2390 {skip} expression is evaluated with the cursor positioned on
2391 the start of the match. It should return non-zero if this
2392 match is to be skipped. E.g., because it is inside a comment
2393 or a string.
2394 When {skip} is omitted or empty, every match is accepted.
2395 When evaluating {skip} causes an error the search is aborted
2396 and -1 returned.
2397
2398 The value of 'ignorecase' is used. 'magic' is ignored, the
2399 patterns are used like it's on.
2400
2401 The search starts exactly at the cursor. A match with
2402 {start}, {middle} or {end} at the next character, in the
2403 direction of searching, is the first one found. Example: >
2404 if 1
2405 if 2
2406 endif 2
2407 endif 1
2408< When starting at the "if 2", with the cursor on the "i", and
2409 searching forwards, the "endif 2" is found. When starting on
2410 the character just before the "if 2", the "endif 1" will be
2411 found. That's because the "if 2" will be found first, and
2412 then this is considered to be a nested if/endif from "if 2" to
2413 "endif 2".
2414 When searching backwards and {end} is more than one character,
2415 it may be useful to put "\zs" at the end of the pattern, so
2416 that when the cursor is inside a match with the end it finds
2417 the matching start.
2418
2419 Example, to find the "endif" command in a Vim script: >
2420
2421 :echo searchpair('\<if\>', '\<el\%[seif]\>', '\<en\%[dif]\>', 'W',
2422 \ 'getline(".") =~ "^\\s*\""')
2423
2424< The cursor must be at or after the "if" for which a match is
2425 to be found. Note that single-quote strings are used to avoid
2426 having to double the backslashes. The skip expression only
2427 catches comments at the start of a line, not after a command.
2428 Also, a word "en" or "if" halfway a line is considered a
2429 match.
2430 Another example, to search for the matching "{" of a "}": >
2431
2432 :echo searchpair('{', '', '}', 'bW')
2433
2434< This works when the cursor is at or before the "}" for which a
2435 match is to be found. To reject matches that syntax
2436 highlighting recognized as strings: >
2437
2438 :echo searchpair('{', '', '}', 'bW',
2439 \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "string"')
2440<
2441server2client( {clientid}, {string}) *server2client()*
2442 Send a reply string to {clientid}. The most recent {clientid}
2443 that sent a string can be retrieved with expand("<client>").
2444 {only available when compiled with the |+clientserver| feature}
2445 Note:
2446 This id has to be stored before the next command can be
2447 received. Ie. before returning from the received command and
2448 before calling any commands that waits for input.
2449 See also |clientserver|.
2450 Example: >
2451 :echo server2client(expand("<client>"), "HELLO")
2452<
2453serverlist() *serverlist()*
2454 Return a list of available server names, one per line.
2455 When there are no servers or the information is not available
2456 an empty string is returned. See also |clientserver|.
2457 {only available when compiled with the |+clientserver| feature}
2458 Example: >
2459 :echo serverlist()
2460<
2461setbufvar({expr}, {varname}, {val}) *setbufvar()*
2462 Set option or local variable {varname} in buffer {expr} to
2463 {val}.
2464 This also works for a global or local window option, but it
2465 doesn't work for a global or local window variable.
2466 For a local window option the global value is unchanged.
2467 For the use of {expr}, see |bufname()| above.
2468 Note that the variable name without "b:" must be used.
2469 Examples: >
2470 :call setbufvar(1, "&mod", 1)
2471 :call setbufvar("todo", "myvar", "foobar")
2472< This function is not available in the |sandbox|.
2473
2474setcmdpos({pos}) *setcmdpos()*
2475 Set the cursor position in the command line to byte position
2476 {pos}. The first position is 1.
2477 Use |getcmdpos()| to obtain the current position.
2478 Only works while editing the command line, thus you must use
2479 |c_CTRL-\_e| or |c_CTRL-R_=|. The position is set after the
2480 command line is set to the expression.
2481 When the number is too big the cursor is put at the end of the
2482 line. A number smaller than one has undefined results.
2483 Returns 0 when successful, 1 when not editing the command
2484 line.
2485
2486setline({lnum}, {line}) *setline()*
2487 Set line {lnum} of the current buffer to {line}. If this
2488 succeeds, 0 is returned. If this fails (most likely because
2489 {lnum} is invalid) 1 is returned. Example: >
2490 :call setline(5, strftime("%c"))
2491< Note: The '[ and '] marks are not set.
2492
2493 *setreg()*
2494setreg({regname}, {value} [,{options}])
2495 Set the register {regname} to {value}.
2496 If {options} contains "a" or {regname} is upper case,
2497 then the value is appended.
2498 {options} can also contains a register type specification:
2499 "c" or "v" |characterwise| mode
2500 "l" or "V" |linewise| mode
2501 "b" or "<CTRL-V>" |blockwise-visual| mode
2502 If a number immediately follows "b" or "<CTRL-V>" then this is
2503 used as the width of the selection - if it is not specified
2504 then the width of the block is set to the number of characters
2505 in the longest line (counting a <TAB> as 1 character).
2506
2507 If {options} contains no register settings, then the default
2508 is to use character mode unless {value} ends in a <NL>.
2509 Setting the '=' register is not possible.
2510 Returns zero for success, non-zero for failure.
2511
2512 Examples: >
2513 :call setreg(v:register, @*)
2514 :call setreg('*', @%, 'ac')
2515 :call setreg('a', "1\n2\n3", 'b5')
2516
2517< This example shows using the functions to save and restore a
2518 register. >
2519 :let var_a = getreg('a')
2520 :let var_amode = getregtype('a')
2521 ....
2522 :call setreg('a', var_a, var_amode)
2523
2524< You can also change the type of a register by appending
2525 nothing: >
2526 :call setreg('a', '', 'al')
2527
2528setwinvar({nr}, {varname}, {val}) *setwinvar()*
2529 Set option or local variable {varname} in window {nr} to
2530 {val}.
2531 This also works for a global or local buffer option, but it
2532 doesn't work for a global or local buffer variable.
2533 For a local buffer option the global value is unchanged.
2534 Note that the variable name without "w:" must be used.
2535 Examples: >
2536 :call setwinvar(1, "&list", 0)
2537 :call setwinvar(2, "myvar", "foobar")
2538< This function is not available in the |sandbox|.
2539
2540simplify({filename}) *simplify()*
2541 Simplify the file name as much as possible without changing
2542 the meaning. Shortcuts (on MS-Windows) or symbolic links (on
2543 Unix) are not resolved. If the first path component in
2544 {filename} designates the current directory, this will be
2545 valid for the result as well. A trailing path separator is
2546 not removed either.
2547 Example: >
2548 simplify("./dir/.././/file/") == "./file/"
2549< Note: The combination "dir/.." is only removed if "dir" is
2550 a searchable directory or does not exist. On Unix, it is also
2551 removed when "dir" is a symbolic link within the same
2552 directory. In order to resolve all the involved symbolic
2553 links before simplifying the path name, use |resolve()|.
2554
2555strftime({format} [, {time}]) *strftime()*
2556 The result is a String, which is a formatted date and time, as
2557 specified by the {format} string. The given {time} is used,
2558 or the current time if no time is given. The accepted
2559 {format} depends on your system, thus this is not portable!
2560 See the manual page of the C function strftime() for the
2561 format. The maximum length of the result is 80 characters.
2562 See also |localtime()| and |getftime()|.
2563 The language can be changed with the |:language| command.
2564 Examples: >
2565 :echo strftime("%c") Sun Apr 27 11:49:23 1997
2566 :echo strftime("%Y %b %d %X") 1997 Apr 27 11:53:25
2567 :echo strftime("%y%m%d %T") 970427 11:53:55
2568 :echo strftime("%H:%M") 11:55
2569 :echo strftime("%c", getftime("file.c"))
2570 Show mod time of file.c.
2571<
2572stridx({haystack}, {needle}) *stridx()*
2573 The result is a Number, which gives the index in {haystack} of
2574 the first occurrence of the String {needle} in the String
2575 {haystack}. The search is done case-sensitive. For advanced
2576 searches use |match()|.
2577 If the {needle} does not occur in {haystack} it returns -1.
2578 See also |strridx()|. Examples: >
2579 :echo stridx("An Example", "Example") 3
2580 :echo stridx("Starting point", "Start") 0
2581 :echo stridx("Starting point", "start") -1
2582<
2583 *strlen()*
2584strlen({expr}) The result is a Number, which is the length of the String
2585 {expr} in bytes. If you want to count the number of
2586 multi-byte characters use something like this: >
2587
2588 :let len = strlen(substitute(str, ".", "x", "g"))
2589
2590< Composing characters are not counted.
2591
2592strpart({src}, {start}[, {len}]) *strpart()*
2593 The result is a String, which is part of {src}, starting from
2594 byte {start}, with the length {len}.
2595 When non-existing bytes are included, this doesn't result in
2596 an error, the bytes are simply omitted.
2597 If {len} is missing, the copy continues from {start} till the
2598 end of the {src}. >
2599 strpart("abcdefg", 3, 2) == "de"
2600 strpart("abcdefg", -2, 4) == "ab"
2601 strpart("abcdefg", 5, 4) == "fg"
2602 strpart("abcdefg", 3) == "defg"
2603< Note: To get the first character, {start} must be 0. For
2604 example, to get three bytes under and after the cursor: >
2605 strpart(getline(line(".")), col(".") - 1, 3)
2606<
2607strridx({haystack}, {needle}) *strridx()*
2608 The result is a Number, which gives the index in {haystack} of
2609 the last occurrence of the String {needle} in the String
2610 {haystack}. The search is done case-sensitive. For advanced
2611 searches use |match()|.
2612 If the {needle} does not occur in {haystack} it returns -1.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002613 If the {needle} is empty the length of {haystack} is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 See also |stridx()|. Examples: >
2615 :echo strridx("an angry armadillo", "an") 3
2616<
2617strtrans({expr}) *strtrans()*
2618 The result is a String, which is {expr} with all unprintable
2619 characters translated into printable characters |'isprint'|.
2620 Like they are shown in a window. Example: >
2621 echo strtrans(@a)
2622< This displays a newline in register a as "^@" instead of
2623 starting a new line.
2624
2625submatch({nr}) *submatch()*
2626 Only for an expression in a |:substitute| command. Returns
2627 the {nr}'th submatch of the matched text. When {nr} is 0
2628 the whole matched text is returned.
2629 Example: >
2630 :s/\d\+/\=submatch(0) + 1/
2631< This finds the first number in the line and adds one to it.
2632 A line break is included as a newline character.
2633
2634substitute({expr}, {pat}, {sub}, {flags}) *substitute()*
2635 The result is a String, which is a copy of {expr}, in which
2636 the first match of {pat} is replaced with {sub}. This works
2637 like the ":substitute" command (without any flags). But the
2638 matching with {pat} is always done like the 'magic' option is
2639 set and 'cpoptions' is empty (to make scripts portable).
2640 See |string-match| for how {pat} is used.
2641 And a "~" in {sub} is not replaced with the previous {sub}.
2642 Note that some codes in {sub} have a special meaning
2643 |sub-replace-special|. For example, to replace something with
2644 "\n" (two characters), use "\\\\n" or '\\n'.
2645 When {pat} does not match in {expr}, {expr} is returned
2646 unmodified.
2647 When {flags} is "g", all matches of {pat} in {expr} are
2648 replaced. Otherwise {flags} should be "".
2649 Example: >
2650 :let &path = substitute(&path, ",\\=[^,]*$", "", "")
2651< This removes the last component of the 'path' option. >
2652 :echo substitute("testing", ".*", "\\U\\0", "")
2653< results in "TESTING".
2654
Bram Moolenaar47136d72004-10-12 20:02:24 +00002655synID({lnum}, {col}, {trans}) *synID()*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 The result is a Number, which is the syntax ID at the position
Bram Moolenaar47136d72004-10-12 20:02:24 +00002657 {lnum} and {col} in the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 The syntax ID can be used with |synIDattr()| and
2659 |synIDtrans()| to obtain syntax information about text.
Bram Moolenaar47136d72004-10-12 20:02:24 +00002660 {col} is 1 for the leftmost column, {lnum} is 1 for the first
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 line.
2662 When {trans} is non-zero, transparent items are reduced to the
2663 item that they reveal. This is useful when wanting to know
2664 the effective color. When {trans} is zero, the transparent
2665 item is returned. This is useful when wanting to know which
2666 syntax item is effective (e.g. inside parens).
2667 Warning: This function can be very slow. Best speed is
2668 obtained by going through the file in forward direction.
2669
2670 Example (echoes the name of the syntax item under the cursor): >
2671 :echo synIDattr(synID(line("."), col("."), 1), "name")
2672<
2673synIDattr({synID}, {what} [, {mode}]) *synIDattr()*
2674 The result is a String, which is the {what} attribute of
2675 syntax ID {synID}. This can be used to obtain information
2676 about a syntax item.
2677 {mode} can be "gui", "cterm" or "term", to get the attributes
2678 for that mode. When {mode} is omitted, or an invalid value is
2679 used, the attributes for the currently active highlighting are
2680 used (GUI, cterm or term).
2681 Use synIDtrans() to follow linked highlight groups.
2682 {what} result
2683 "name" the name of the syntax item
2684 "fg" foreground color (GUI: color name used to set
2685 the color, cterm: color number as a string,
2686 term: empty string)
2687 "bg" background color (like "fg")
2688 "fg#" like "fg", but for the GUI and the GUI is
2689 running the name in "#RRGGBB" form
2690 "bg#" like "fg#" for "bg"
2691 "bold" "1" if bold
2692 "italic" "1" if italic
2693 "reverse" "1" if reverse
2694 "inverse" "1" if inverse (= reverse)
2695 "underline" "1" if underlined
2696
2697 Example (echoes the color of the syntax item under the
2698 cursor): >
2699 :echo synIDattr(synIDtrans(synID(line("."), col("."), 1)), "fg")
2700<
2701synIDtrans({synID}) *synIDtrans()*
2702 The result is a Number, which is the translated syntax ID of
2703 {synID}. This is the syntax group ID of what is being used to
2704 highlight the character. Highlight links given with
2705 ":highlight link" are followed.
2706
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002707system({expr} [, {input}]) *system()* *E677*
2708 Get the output of the shell command {expr}.
2709 When {input} is given, this string is written to a file and
2710 passed as stdin to the command. The string is written as-is,
2711 you need to take care of using the correct line separators
2712 yourself.
2713 Note: newlines in {expr} may cause the command to fail. The
2714 characters in 'shellquote' and 'shellxquote' may also cause
2715 trouble.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716 This is not to be used for interactive commands.
2717 The result is a String. Example: >
2718
2719 :let files = system("ls")
2720
2721< To make the result more system-independent, the shell output
2722 is filtered to replace <CR> with <NL> for Macintosh, and
2723 <CR><NL> with <NL> for DOS-like systems.
2724 The command executed is constructed using several options:
2725 'shell' 'shellcmdflag' 'shellxquote' {expr} 'shellredir' {tmp} 'shellxquote'
2726 ({tmp} is an automatically generated file name).
2727 For Unix and OS/2 braces are put around {expr} to allow for
2728 concatenated commands.
2729
2730 The resulting error code can be found in |v:shell_error|.
2731 This function will fail in |restricted-mode|.
2732 Unlike ":!cmd" there is no automatic check for changed files.
2733 Use |:checktime| to force a check.
2734
2735tempname() *tempname()* *temp-file-name*
2736 The result is a String, which is the name of a file that
2737 doesn't exist. It can be used for a temporary file. The name
2738 is different for at least 26 consecutive calls. Example: >
2739 :let tmpfile = tempname()
2740 :exe "redir > " . tmpfile
2741< For Unix, the file will be in a private directory (only
2742 accessible by the current user) to avoid security problems
2743 (e.g., a symlink attack or other people reading your file).
2744 When Vim exits the directory and all files in it are deleted.
2745 For MS-Windows forward slashes are used when the 'shellslash'
2746 option is set or when 'shellcmdflag' starts with '-'.
2747
2748tolower({expr}) *tolower()*
2749 The result is a copy of the String given, with all uppercase
2750 characters turned into lowercase (just like applying |gu| to
2751 the string).
2752
2753toupper({expr}) *toupper()*
2754 The result is a copy of the String given, with all lowercase
2755 characters turned into uppercase (just like applying |gU| to
2756 the string).
2757
Bram Moolenaar8299df92004-07-10 09:47:34 +00002758tr({src}, {fromstr}, {tostr}) *tr()*
2759 The result is a copy of the {src} string with all characters
2760 which appear in {fromstr} replaced by the character in that
2761 position in the {tostr} string. Thus the first character in
2762 {fromstr} is translated into the first character in {tostr}
2763 and so on. Exactly like the unix "tr" command.
2764 This code also deals with multibyte characters properly.
2765
2766 Examples: >
2767 echo tr("hello there", "ht", "HT")
2768< returns "Hello THere" >
2769 echo tr("<blob>", "<>", "{}")
2770< returns "{blob}"
2771
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772type({expr}) *type()*
2773 The result is a Number:
2774 0 if {expr} has the type Number
2775 1 if {expr} has the type String
2776
2777virtcol({expr}) *virtcol()*
2778 The result is a Number, which is the screen column of the file
2779 position given with {expr}. That is, the last screen position
2780 occupied by the character at that position, when the screen
2781 would be of unlimited width. When there is a <Tab> at the
2782 position, the returned Number will be the column at the end of
2783 the <Tab>. For example, for a <Tab> in column 1, with 'ts'
2784 set to 8, it returns 8.
2785 For the byte position use |col()|.
2786 When Virtual editing is active in the current mode, a position
2787 beyond the end of the line can be returned. |'virtualedit'|
2788 The accepted positions are:
2789 . the cursor position
2790 $ the end of the cursor line (the result is the
2791 number of displayed characters in the cursor line
2792 plus one)
2793 'x position of mark x (if the mark is not set, 0 is
2794 returned)
2795 Note that only marks in the current file can be used.
2796 Examples: >
2797 virtcol(".") with text "foo^Lbar", with cursor on the "^L", returns 5
2798 virtcol("$") with text "foo^Lbar", returns 9
2799 virtcol("'t") with text " there", with 't at 'h', returns 6
2800< The first column is 1. 0 is returned for an error.
2801
2802visualmode([expr]) *visualmode()*
2803 The result is a String, which describes the last Visual mode
2804 used. Initially it returns an empty string, but once Visual
2805 mode has been used, it returns "v", "V", or "<CTRL-V>" (a
2806 single CTRL-V character) for character-wise, line-wise, or
2807 block-wise Visual mode respectively.
2808 Example: >
2809 :exe "normal " . visualmode()
2810< This enters the same Visual mode as before. It is also useful
2811 in scripts if you wish to act differently depending on the
2812 Visual mode that was used.
2813
2814 If an expression is supplied that results in a non-zero number
2815 or a non-empty string, then the Visual mode will be cleared
2816 and the old value is returned. Note that " " and "0" are also
2817 non-empty strings, thus cause the mode to be cleared.
2818
2819 *winbufnr()*
2820winbufnr({nr}) The result is a Number, which is the number of the buffer
2821 associated with window {nr}. When {nr} is zero, the number of
2822 the buffer in the current window is returned. When window
2823 {nr} doesn't exist, -1 is returned.
2824 Example: >
2825 :echo "The file in the current window is " . bufname(winbufnr(0))
2826<
2827 *wincol()*
2828wincol() The result is a Number, which is the virtual column of the
2829 cursor in the window. This is counting screen cells from the
2830 left side of the window. The leftmost column is one.
2831
2832winheight({nr}) *winheight()*
2833 The result is a Number, which is the height of window {nr}.
2834 When {nr} is zero, the height of the current window is
2835 returned. When window {nr} doesn't exist, -1 is returned.
2836 An existing window always has a height of zero or more.
2837 Examples: >
2838 :echo "The current window has " . winheight(0) . " lines."
2839<
2840 *winline()*
2841winline() The result is a Number, which is the screen line of the cursor
2842 in the window. This is counting screen lines from the top of
2843 the window. The first line is one.
2844
2845 *winnr()*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00002846winnr([{arg}]) The result is a Number, which is the number of the current
2847 window. The top window has number 1.
2848 When the optional argument is "$", the number of the
2849 last window is returnd (the window count).
2850 When the optional argument is "#", the number of the last
2851 accessed window is returned (where |CTRL-W_p| goes to).
2852 If there is no previous window 0 is returned.
2853 The number can be used with |CTRL-W_w| and ":wincmd w"
2854 |:wincmd|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855
2856 *winrestcmd()*
2857winrestcmd() Returns a sequence of |:resize| commands that should restore
2858 the current window sizes. Only works properly when no windows
2859 are opened or closed and the current window is unchanged.
2860 Example: >
2861 :let cmd = winrestcmd()
2862 :call MessWithWindowSizes()
2863 :exe cmd
2864
2865winwidth({nr}) *winwidth()*
2866 The result is a Number, which is the width of window {nr}.
2867 When {nr} is zero, the width of the current window is
2868 returned. When window {nr} doesn't exist, -1 is returned.
2869 An existing window always has a width of zero or more.
2870 Examples: >
2871 :echo "The current window has " . winwidth(0) . " columns."
2872 :if winwidth(0) <= 50
2873 : exe "normal 50\<C-W>|"
2874 :endif
2875<
2876
2877 *feature-list*
2878There are three types of features:
28791. Features that are only supported when they have been enabled when Vim
2880 was compiled |+feature-list|. Example: >
2881 :if has("cindent")
28822. Features that are only supported when certain conditions have been met.
2883 Example: >
2884 :if has("gui_running")
2885< *has-patch*
28863. Included patches. First check |v:version| for the version of Vim.
2887 Then the "patch123" feature means that patch 123 has been included for
2888 this version. Example (checking version 6.2.148 or later): >
2889 :if v:version > 602 || v:version == 602 && has("patch148")
2890
2891all_builtin_terms Compiled with all builtin terminals enabled.
2892amiga Amiga version of Vim.
2893arabic Compiled with Arabic support |Arabic|.
2894arp Compiled with ARP support (Amiga).
2895autocmd Compiled with autocommands support.
2896balloon_eval Compiled with |balloon-eval| support.
2897beos BeOS version of Vim.
2898browse Compiled with |:browse| support, and browse() will
2899 work.
2900builtin_terms Compiled with some builtin terminals.
2901byte_offset Compiled with support for 'o' in 'statusline'
2902cindent Compiled with 'cindent' support.
2903clientserver Compiled with remote invocation support |clientserver|.
2904clipboard Compiled with 'clipboard' support.
2905cmdline_compl Compiled with |cmdline-completion| support.
2906cmdline_hist Compiled with |cmdline-history| support.
2907cmdline_info Compiled with 'showcmd' and 'ruler' support.
2908comments Compiled with |'comments'| support.
2909cryptv Compiled with encryption support |encryption|.
2910cscope Compiled with |cscope| support.
2911compatible Compiled to be very Vi compatible.
2912debug Compiled with "DEBUG" defined.
2913dialog_con Compiled with console dialog support.
2914dialog_gui Compiled with GUI dialog support.
2915diff Compiled with |vimdiff| and 'diff' support.
2916digraphs Compiled with support for digraphs.
2917dnd Compiled with support for the "~ register |quote_~|.
2918dos32 32 bits DOS (DJGPP) version of Vim.
2919dos16 16 bits DOS version of Vim.
2920ebcdic Compiled on a machine with ebcdic character set.
2921emacs_tags Compiled with support for Emacs tags.
2922eval Compiled with expression evaluation support. Always
2923 true, of course!
2924ex_extra Compiled with extra Ex commands |+ex_extra|.
2925extra_search Compiled with support for |'incsearch'| and
2926 |'hlsearch'|
2927farsi Compiled with Farsi support |farsi|.
2928file_in_path Compiled with support for |gf| and |<cfile>|
2929find_in_path Compiled with support for include file searches
2930 |+find_in_path|.
2931fname_case Case in file names matters (for Amiga, MS-DOS, and
2932 Windows this is not present).
2933folding Compiled with |folding| support.
2934footer Compiled with GUI footer support. |gui-footer|
2935fork Compiled to use fork()/exec() instead of system().
2936gettext Compiled with message translation |multi-lang|
2937gui Compiled with GUI enabled.
2938gui_athena Compiled with Athena GUI.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002939gui_beos Compiled with BeOS GUI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940gui_gtk Compiled with GTK+ GUI (any version).
2941gui_gtk2 Compiled with GTK+ 2 GUI (gui_gtk is also defined).
Bram Moolenaar843ee412004-06-30 16:16:41 +00002942gui_kde Compiled with KDE GUI |KVim|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943gui_mac Compiled with Macintosh GUI.
2944gui_motif Compiled with Motif GUI.
2945gui_photon Compiled with Photon GUI.
2946gui_win32 Compiled with MS Windows Win32 GUI.
2947gui_win32s idem, and Win32s system being used (Windows 3.1)
2948gui_running Vim is running in the GUI, or it will start soon.
2949hangul_input Compiled with Hangul input support. |hangul|
2950iconv Can use iconv() for conversion.
2951insert_expand Compiled with support for CTRL-X expansion commands in
2952 Insert mode.
2953jumplist Compiled with |jumplist| support.
2954keymap Compiled with 'keymap' support.
2955langmap Compiled with 'langmap' support.
2956libcall Compiled with |libcall()| support.
2957linebreak Compiled with 'linebreak', 'breakat' and 'showbreak'
2958 support.
2959lispindent Compiled with support for lisp indenting.
2960listcmds Compiled with commands for the buffer list |:files|
2961 and the argument list |arglist|.
2962localmap Compiled with local mappings and abbr. |:map-local|
2963mac Macintosh version of Vim.
2964macunix Macintosh version of Vim, using Unix files (OS-X).
2965menu Compiled with support for |:menu|.
2966mksession Compiled with support for |:mksession|.
2967modify_fname Compiled with file name modifiers. |filename-modifiers|
2968mouse Compiled with support mouse.
2969mouseshape Compiled with support for 'mouseshape'.
2970mouse_dec Compiled with support for Dec terminal mouse.
2971mouse_gpm Compiled with support for gpm (Linux console mouse)
2972mouse_netterm Compiled with support for netterm mouse.
2973mouse_pterm Compiled with support for qnx pterm mouse.
2974mouse_xterm Compiled with support for xterm mouse.
2975multi_byte Compiled with support for editing Korean et al.
2976multi_byte_ime Compiled with support for IME input method.
2977multi_lang Compiled with support for multiple languages.
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002978mzscheme Compiled with MzScheme interface |mzscheme|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979netbeans_intg Compiled with support for |netbeans|.
Bram Moolenaar009b2592004-10-24 19:18:58 +00002980netbeans_enabled Compiled with support for |netbeans| and it's used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981ole Compiled with OLE automation support for Win32.
2982os2 OS/2 version of Vim.
2983osfiletype Compiled with support for osfiletypes |+osfiletype|
2984path_extra Compiled with up/downwards search in 'path' and 'tags'
2985perl Compiled with Perl interface.
2986postscript Compiled with PostScript file printing.
2987printer Compiled with |:hardcopy| support.
2988python Compiled with Python interface.
2989qnx QNX version of Vim.
2990quickfix Compiled with |quickfix| support.
2991rightleft Compiled with 'rightleft' support.
2992ruby Compiled with Ruby interface |ruby|.
2993scrollbind Compiled with 'scrollbind' support.
2994showcmd Compiled with 'showcmd' support.
2995signs Compiled with |:sign| support.
2996smartindent Compiled with 'smartindent' support.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002997sniff Compiled with SNiFF interface support.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998statusline Compiled with support for 'statusline', 'rulerformat'
2999 and special formats of 'titlestring' and 'iconstring'.
3000sun_workshop Compiled with support for Sun |workshop|.
3001syntax Compiled with syntax highlighting support.
3002syntax_items There are active syntax highlighting items for the
3003 current buffer.
3004system Compiled to use system() instead of fork()/exec().
3005tag_binary Compiled with binary searching in tags files
3006 |tag-binary-search|.
3007tag_old_static Compiled with support for old static tags
3008 |tag-old-static|.
3009tag_any_white Compiled with support for any white characters in tags
3010 files |tag-any-white|.
3011tcl Compiled with Tcl interface.
3012terminfo Compiled with terminfo instead of termcap.
3013termresponse Compiled with support for |t_RV| and |v:termresponse|.
3014textobjects Compiled with support for |text-objects|.
3015tgetent Compiled with tgetent support, able to use a termcap
3016 or terminfo file.
3017title Compiled with window title support |'title'|.
3018toolbar Compiled with support for |gui-toolbar|.
3019unix Unix version of Vim.
3020user_commands User-defined commands.
3021viminfo Compiled with viminfo support.
3022vim_starting True while initial source'ing takes place.
3023vertsplit Compiled with vertically split windows |:vsplit|.
3024virtualedit Compiled with 'virtualedit' option.
3025visual Compiled with Visual mode.
3026visualextra Compiled with extra Visual mode commands.
3027 |blockwise-operators|.
3028vms VMS version of Vim.
3029vreplace Compiled with |gR| and |gr| commands.
3030wildignore Compiled with 'wildignore' option.
3031wildmenu Compiled with 'wildmenu' option.
3032windows Compiled with support for more than one window.
3033winaltkeys Compiled with 'winaltkeys' option.
3034win16 Win16 version of Vim (MS-Windows 3.1).
3035win32 Win32 version of Vim (MS-Windows 95/98/ME/NT/2000/XP).
3036win64 Win64 version of Vim (MS-Windows 64 bit).
3037win32unix Win32 version of Vim, using Unix files (Cygwin)
3038win95 Win32 version for MS-Windows 95/98/ME.
3039writebackup Compiled with 'writebackup' default on.
3040xfontset Compiled with X fontset support |xfontset|.
3041xim Compiled with X input method support |xim|.
3042xsmp Compiled with X session management support.
3043xsmp_interact Compiled with interactive X session management support.
3044xterm_clipboard Compiled with support for xterm clipboard.
3045xterm_save Compiled with support for saving and restoring the
3046 xterm screen.
3047x11 Compiled with X11 support.
3048
3049 *string-match*
3050Matching a pattern in a String
3051
3052A regexp pattern as explained at |pattern| is normally used to find a match in
3053the buffer lines. When a pattern is used to find a match in a String, almost
3054everything works in the same way. The difference is that a String is handled
3055like it is one line. When it contains a "\n" character, this is not seen as a
3056line break for the pattern. It can be matched with a "\n" in the pattern, or
3057with ".". Example: >
3058 :let a = "aaaa\nxxxx"
3059 :echo matchstr(a, "..\n..")
3060 aa
3061 xx
3062 :echo matchstr(a, "a.x")
3063 a
3064 x
3065
3066Don't forget that "^" will only match at the first character of the String and
3067"$" at the last character of the string. They don't match after or before a
3068"\n".
3069
3070==============================================================================
30715. Defining functions *user-functions*
3072
3073New functions can be defined. These can be called just like builtin
3074functions. The function executes a sequence of Ex commands. Normal mode
3075commands can be executed with the |:normal| command.
3076
3077The function name must start with an uppercase letter, to avoid confusion with
3078builtin functions. To prevent from using the same name in different scripts
3079avoid obvious, short names. A good habit is to start the function name with
3080the name of the script, e.g., "HTMLcolor()".
3081
3082It's also possible to use curly braces, see |curly-braces-names|.
3083
3084 *local-function*
3085A function local to a script must start with "s:". A local script function
3086can only be called from within the script and from functions, user commands
3087and autocommands defined in the script. It is also possible to call the
3088function from a mappings defined in the script, but then |<SID>| must be used
3089instead of "s:" when the mapping is expanded outside of the script.
3090
3091 *:fu* *:function* *E128* *E129* *E123*
3092:fu[nction] List all functions and their arguments.
3093
3094:fu[nction] {name} List function {name}.
3095 *E124* *E125*
3096:fu[nction][!] {name}([arguments]) [range] [abort]
3097 Define a new function by the name {name}. The name
3098 must be made of alphanumeric characters and '_', and
3099 must start with a capital or "s:" (see above).
3100 *function-argument* *a:var*
3101 An argument can be defined by giving its name. In the
3102 function this can then be used as "a:name" ("a:" for
3103 argument).
3104 Up to 20 arguments can be given, separated by commas.
3105 Finally, an argument "..." can be specified, which
3106 means that more arguments may be following. In the
3107 function they can be used as "a:1", "a:2", etc. "a:0"
3108 is set to the number of extra arguments (which can be
3109 0).
3110 When not using "...", the number of arguments in a
3111 function call must be equal to the number of named
3112 arguments. When using "...", the number of arguments
3113 may be larger.
3114 It is also possible to define a function without any
3115 arguments. You must still supply the () then.
3116 The body of the function follows in the next lines,
3117 until the matching |:endfunction|. It is allowed to
3118 define another function inside a function body.
3119 *E127* *E122*
3120 When a function by this name already exists and [!] is
3121 not used an error message is given. When [!] is used,
3122 an existing function is silently replaced. Unless it
3123 is currently being executed, that is an error.
3124 *a:firstline* *a:lastline*
3125 When the [range] argument is added, the function is
3126 expected to take care of a range itself. The range is
3127 passed as "a:firstline" and "a:lastline". If [range]
3128 is excluded, ":{range}call" will call the function for
3129 each line in the range, with the cursor on the start
3130 of each line. See |function-range-example|.
3131 When the [abort] argument is added, the function will
3132 abort as soon as an error is detected.
3133 The last used search pattern and the redo command "."
3134 will not be changed by the function.
3135
3136 *:endf* *:endfunction* *E126* *E193*
3137:endf[unction] The end of a function definition. Must be on a line
3138 by its own, without other commands.
3139
3140 *:delf* *:delfunction* *E130* *E131*
3141:delf[unction] {name} Delete function {name}.
3142
3143 *:retu* *:return* *E133*
3144:retu[rn] [expr] Return from a function. When "[expr]" is given, it is
3145 evaluated and returned as the result of the function.
3146 If "[expr]" is not given, the number 0 is returned.
3147 When a function ends without an explicit ":return",
3148 the number 0 is returned.
3149 Note that there is no check for unreachable lines,
3150 thus there is no warning if commands follow ":return".
3151
3152 If the ":return" is used after a |:try| but before the
3153 matching |:finally| (if present), the commands
3154 following the ":finally" up to the matching |:endtry|
3155 are executed first. This process applies to all
3156 nested ":try"s inside the function. The function
3157 returns at the outermost ":endtry".
3158
3159
3160Inside a function variables can be used. These are local variables, which
3161will disappear when the function returns. Global variables need to be
3162accessed with "g:".
3163
3164Example: >
3165 :function Table(title, ...)
3166 : echohl Title
3167 : echo a:title
3168 : echohl None
3169 : let idx = 1
3170 : while idx <= a:0
3171 : echo a:{idx} . ' '
3172 : let idx = idx + 1
3173 : endwhile
3174 : return idx
3175 :endfunction
3176
3177This function can then be called with: >
3178 let lines = Table("Table", "line1", "line2")
3179 let lines = Table("Empty Table")
3180
3181To return more than one value, pass the name of a global variable: >
3182 :function Compute(n1, n2, divname)
3183 : if a:n2 == 0
3184 : return "fail"
3185 : endif
3186 : let g:{a:divname} = a:n1 / a:n2
3187 : return "ok"
3188 :endfunction
3189
3190This function can then be called with: >
3191 :let success = Compute(13, 1324, "div")
3192 :if success == "ok"
3193 : echo div
3194 :endif
3195
3196An alternative is to return a command that can be executed. This also works
3197with local variables in a calling function. Example: >
3198 :function Foo()
3199 : execute Bar()
3200 : echo "line " . lnum . " column " . col
3201 :endfunction
3202
3203 :function Bar()
3204 : return "let lnum = " . line(".") . " | let col = " . col(".")
3205 :endfunction
3206
3207The names "lnum" and "col" could also be passed as argument to Bar(), to allow
3208the caller to set the names.
3209
3210 *:cal* *:call* *E107*
3211:[range]cal[l] {name}([arguments])
3212 Call a function. The name of the function and its arguments
3213 are as specified with |:function|. Up to 20 arguments can be
3214 used.
3215 Without a range and for functions that accept a range, the
3216 function is called once. When a range is given the cursor is
3217 positioned at the start of the first line before executing the
3218 function.
3219 When a range is given and the function doesn't handle it
3220 itself, the function is executed for each line in the range,
3221 with the cursor in the first column of that line. The cursor
3222 is left at the last line (possibly moved by the last function
3223 call). The arguments are re-evaluated for each line. Thus
3224 this works:
3225 *function-range-example* >
3226 :function Mynumber(arg)
3227 : echo line(".") . " " . a:arg
3228 :endfunction
3229 :1,5call Mynumber(getline("."))
3230<
3231 The "a:firstline" and "a:lastline" are defined anyway, they
3232 can be used to do something different at the start or end of
3233 the range.
3234
3235 Example of a function that handles the range itself: >
3236
3237 :function Cont() range
3238 : execute (a:firstline + 1) . "," . a:lastline . 's/^/\t\\ '
3239 :endfunction
3240 :4,8call Cont()
3241<
3242 This function inserts the continuation character "\" in front
3243 of all the lines in the range, except the first one.
3244
3245 *E132*
3246The recursiveness of user functions is restricted with the |'maxfuncdepth'|
3247option.
3248
3249 *autoload-functions*
3250When using many or large functions, it's possible to automatically define them
3251only when they are used. Use the FuncUndefined autocommand event with a
3252pattern that matches the function(s) to be defined. Example: >
3253
3254 :au FuncUndefined BufNet* source ~/vim/bufnetfuncs.vim
3255
3256The file "~/vim/bufnetfuncs.vim" should then define functions that start with
3257"BufNet". Also see |FuncUndefined|.
3258
3259==============================================================================
32606. Curly braces names *curly-braces-names*
3261
3262Wherever you can use a variable, you can use a "curly braces name" variable.
3263This is a regular variable name with one or more expressions wrapped in braces
3264{} like this: >
3265 my_{adjective}_variable
3266
3267When Vim encounters this, it evaluates the expression inside the braces, puts
3268that in place of the expression, and re-interprets the whole as a variable
3269name. So in the above example, if the variable "adjective" was set to
3270"noisy", then the reference would be to "my_noisy_variable", whereas if
3271"adjective" was set to "quiet", then it would be to "my_quiet_variable".
3272
3273One application for this is to create a set of variables governed by an option
3274value. For example, the statement >
3275 echo my_{&background}_message
3276
3277would output the contents of "my_dark_message" or "my_light_message" depending
3278on the current value of 'background'.
3279
3280You can use multiple brace pairs: >
3281 echo my_{adverb}_{adjective}_message
3282..or even nest them: >
3283 echo my_{ad{end_of_word}}_message
3284where "end_of_word" is either "verb" or "jective".
3285
3286However, the expression inside the braces must evaluate to a valid single
3287variable name. e.g. this is invalid: >
3288 :let foo='a + b'
3289 :echo c{foo}d
3290.. since the result of expansion is "ca + bd", which is not a variable name.
3291
3292 *curly-braces-function-names*
3293You can call and define functions by an evaluated name in a similar way.
3294Example: >
3295 :let func_end='whizz'
3296 :call my_func_{func_end}(parameter)
3297
3298This would call the function "my_func_whizz(parameter)".
3299
3300==============================================================================
33017. Commands *expression-commands*
3302
3303:let {var-name} = {expr1} *:let* *E18*
3304 Set internal variable {var-name} to the result of the
3305 expression {expr1}. The variable will get the type
3306 from the {expr}. If {var-name} didn't exist yet, it
3307 is created.
3308
3309:let ${env-name} = {expr1} *:let-environment* *:let-$*
3310 Set environment variable {env-name} to the result of
3311 the expression {expr1}. The type is always String.
3312
3313:let @{reg-name} = {expr1} *:let-register* *:let-@*
3314 Write the result of the expression {expr1} in register
3315 {reg-name}. {reg-name} must be a single letter, and
3316 must be the name of a writable register (see
3317 |registers|). "@@" can be used for the unnamed
3318 register, "@/" for the search pattern.
3319 If the result of {expr1} ends in a <CR> or <NL>, the
3320 register will be linewise, otherwise it will be set to
3321 characterwise.
3322 This can be used to clear the last search pattern: >
3323 :let @/ = ""
3324< This is different from searching for an empty string,
3325 that would match everywhere.
3326
3327:let &{option-name} = {expr1} *:let-option* *:let-star*
3328 Set option {option-name} to the result of the
3329 expression {expr1}. The value is always converted to
3330 the type of the option.
3331 For an option local to a window or buffer the effect
3332 is just like using the |:set| command: both the local
3333 value and the global value is changed.
3334
3335:let &l:{option-name} = {expr1}
3336 Like above, but only set the local value of an option
3337 (if there is one). Works like |:setlocal|.
3338
3339:let &g:{option-name} = {expr1}
3340 Like above, but only set the global value of an option
3341 (if there is one). Works like |:setglobal|.
3342
3343 *E106*
3344:let {var-name} .. List the value of variable {var-name}. Several
3345 variable names may be given.
3346
3347:let List the values of all variables.
3348
3349 *:unlet* *:unl* *E108*
3350:unl[et][!] {var-name} ...
3351 Remove the internal variable {var-name}. Several
3352 variable names can be given, they are all removed.
3353 With [!] no error message is given for non-existing
3354 variables.
3355
3356:if {expr1} *:if* *:endif* *:en* *E171* *E579* *E580*
3357:en[dif] Execute the commands until the next matching ":else"
3358 or ":endif" if {expr1} evaluates to non-zero.
3359
3360 From Vim version 4.5 until 5.0, every Ex command in
3361 between the ":if" and ":endif" is ignored. These two
3362 commands were just to allow for future expansions in a
3363 backwards compatible way. Nesting was allowed. Note
3364 that any ":else" or ":elseif" was ignored, the "else"
3365 part was not executed either.
3366
3367 You can use this to remain compatible with older
3368 versions: >
3369 :if version >= 500
3370 : version-5-specific-commands
3371 :endif
3372< The commands still need to be parsed to find the
3373 "endif". Sometimes an older Vim has a problem with a
3374 new command. For example, ":silent" is recognized as
3375 a ":substitute" command. In that case ":execute" can
3376 avoid problems: >
3377 :if version >= 600
3378 : execute "silent 1,$delete"
3379 :endif
3380<
3381 NOTE: The ":append" and ":insert" commands don't work
3382 properly in between ":if" and ":endif".
3383
3384 *:else* *:el* *E581* *E583*
3385:el[se] Execute the commands until the next matching ":else"
3386 or ":endif" if they previously were not being
3387 executed.
3388
3389 *:elseif* *:elsei* *E582* *E584*
3390:elsei[f] {expr1} Short for ":else" ":if", with the addition that there
3391 is no extra ":endif".
3392
3393:wh[ile] {expr1} *:while* *:endwhile* *:wh* *:endw*
3394 *E170* *E585* *E588*
3395:endw[hile] Repeat the commands between ":while" and ":endwhile",
3396 as long as {expr1} evaluates to non-zero.
3397 When an error is detected from a command inside the
3398 loop, execution continues after the "endwhile".
3399
3400 NOTE: The ":append" and ":insert" commands don't work
3401 properly inside a ":while" loop.
3402
3403 *:continue* *:con* *E586*
3404:con[tinue] When used inside a ":while", jumps back to the
3405 ":while". If it is used after a |:try| inside the
3406 ":while" but before the matching |:finally| (if
3407 present), the commands following the ":finally" up to
3408 the matching |:endtry| are executed first. This
3409 process applies to all nested ":try"s inside the
3410 ":while". The outermost ":endtry" then jumps back to
3411 the ":while".
3412
3413 *:break* *:brea* *E587*
3414:brea[k] When used inside a ":while", skips to the command
3415 after the matching ":endwhile". If it is used after
3416 a |:try| inside the ":while" but before the matching
3417 |:finally| (if present), the commands following the
3418 ":finally" up to the matching |:endtry| are executed
3419 first. This process applies to all nested ":try"s
3420 inside the ":while". The outermost ":endtry" then
3421 jumps to the command after the ":endwhile".
3422
3423:try *:try* *:endt* *:endtry* *E600* *E601* *E602*
3424:endt[ry] Change the error handling for the commands between
3425 ":try" and ":endtry" including everything being
3426 executed across ":source" commands, function calls,
3427 or autocommand invocations.
3428
3429 When an error or interrupt is detected and there is
3430 a |:finally| command following, execution continues
3431 after the ":finally". Otherwise, or when the
3432 ":endtry" is reached thereafter, the next
3433 (dynamically) surrounding ":try" is checked for
3434 a corresponding ":finally" etc. Then the script
3435 processing is terminated. (Whether a function
3436 definition has an "abort" argument does not matter.)
3437 Example: >
3438 :try | edit too much | finally | echo "cleanup" | endtry
3439 :echo "impossible" " not reached, script terminated above
3440<
3441 Moreover, an error or interrupt (dynamically) inside
3442 ":try" and ":endtry" is converted to an exception. It
3443 can be caught as if it were thrown by a |:throw|
3444 command (see |:catch|). In this case, the script
3445 processing is not terminated.
3446
3447 The value "Vim:Interrupt" is used for an interrupt
3448 exception. An error in a Vim command is converted
3449 to a value of the form "Vim({command}):{errmsg}",
3450 other errors are converted to a value of the form
3451 "Vim:{errmsg}". {command} is the full command name,
3452 and {errmsg} is the message that is displayed if the
3453 error exception is not caught, always beginning with
3454 the error number.
3455 Examples: >
3456 :try | sleep 100 | catch /^Vim:Interrupt$/ | endtry
3457 :try | edit | catch /^Vim(edit):E\d\+/ | echo "error" | endtry
3458<
3459 *:cat* *:catch* *E603* *E604* *E605*
3460:cat[ch] /{pattern}/ The following commands until the next ":catch",
3461 |:finally|, or |:endtry| that belongs to the same
3462 |:try| as the ":catch" are executed when an exception
3463 matching {pattern} is being thrown and has not yet
3464 been caught by a previous ":catch". Otherwise, these
3465 commands are skipped.
3466 When {pattern} is omitted all errors are caught.
3467 Examples: >
3468 :catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C)
3469 :catch /^Vim\%((\a\+)\)\=:E/ " catch all Vim errors
3470 :catch /^Vim\%((\a\+)\)\=:/ " catch errors and interrupts
3471 :catch /^Vim(write):/ " catch all errors in :write
3472 :catch /^Vim\%((\a\+)\)\=:E123/ " catch error E123
3473 :catch /my-exception/ " catch user exception
3474 :catch /.*/ " catch everything
3475 :catch " same as /.*/
3476<
3477 Another character can be used instead of / around the
3478 {pattern}, so long as it does not have a special
3479 meaning (e.g., '|' or '"') and doesn't occur inside
3480 {pattern}.
3481 NOTE: It is not reliable to ":catch" the TEXT of
3482 an error message because it may vary in different
3483 locales.
3484
3485 *:fina* *:finally* *E606* *E607*
3486:fina[lly] The following commands until the matching |:endtry|
3487 are executed whenever the part between the matching
3488 |:try| and the ":finally" is left: either by falling
3489 through to the ":finally" or by a |:continue|,
3490 |:break|, |:finish|, or |:return|, or by an error or
3491 interrupt or exception (see |:throw|).
3492
3493 *:th* *:throw* *E608*
3494:th[row] {expr1} The {expr1} is evaluated and thrown as an exception.
3495 If the ":throw" is used after a |:try| but before the
3496 first corresponding |:catch|, commands are skipped
3497 until the first ":catch" matching {expr1} is reached.
3498 If there is no such ":catch" or if the ":throw" is
3499 used after a ":catch" but before the |:finally|, the
3500 commands following the ":finally" (if present) up to
3501 the matching |:endtry| are executed. If the ":throw"
3502 is after the ":finally", commands up to the ":endtry"
3503 are skipped. At the ":endtry", this process applies
3504 again for the next dynamically surrounding ":try"
3505 (which may be found in a calling function or sourcing
3506 script), until a matching ":catch" has been found.
3507 If the exception is not caught, the command processing
3508 is terminated.
3509 Example: >
3510 :try | throw "oops" | catch /^oo/ | echo "caught" | endtry
3511<
3512
3513 *:ec* *:echo*
3514:ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The
3515 first {expr1} starts on a new line.
3516 Also see |:comment|.
3517 Use "\n" to start a new line. Use "\r" to move the
3518 cursor to the first column.
3519 Uses the highlighting set by the |:echohl| command.
3520 Cannot be followed by a comment.
3521 Example: >
3522 :echo "the value of 'shell' is" &shell
3523< A later redraw may make the message disappear again.
3524 To avoid that a command from before the ":echo" causes
3525 a redraw afterwards (redraws are often postponed until
3526 you type something), force a redraw with the |:redraw|
3527 command. Example: >
3528 :new | redraw | echo "there is a new window"
3529<
3530 *:echon*
3531:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
3532 |:comment|.
3533 Uses the highlighting set by the |:echohl| command.
3534 Cannot be followed by a comment.
3535 Example: >
3536 :echon "the value of 'shell' is " &shell
3537<
3538 Note the difference between using ":echo", which is a
3539 Vim command, and ":!echo", which is an external shell
3540 command: >
3541 :!echo % --> filename
3542< The arguments of ":!" are expanded, see |:_%|. >
3543 :!echo "%" --> filename or "filename"
3544< Like the previous example. Whether you see the double
3545 quotes or not depends on your 'shell'. >
3546 :echo % --> nothing
3547< The '%' is an illegal character in an expression. >
3548 :echo "%" --> %
3549< This just echoes the '%' character. >
3550 :echo expand("%") --> filename
3551< This calls the expand() function to expand the '%'.
3552
3553 *:echoh* *:echohl*
3554:echoh[l] {name} Use the highlight group {name} for the following
3555 |:echo|, |:echon| and |:echomsg| commands. Also used
3556 for the |input()| prompt. Example: >
3557 :echohl WarningMsg | echo "Don't panic!" | echohl None
3558< Don't forget to set the group back to "None",
3559 otherwise all following echo's will be highlighted.
3560
3561 *:echom* *:echomsg*
3562:echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
3563 message in the |message-history|.
3564 Spaces are placed between the arguments as with the
3565 |:echo| command. But unprintable characters are
3566 displayed, not interpreted.
3567 Uses the highlighting set by the |:echohl| command.
3568 Example: >
3569 :echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see."
3570<
3571 *:echoe* *:echoerr*
3572:echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
3573 message in the |message-history|. When used in a
3574 script or function the line number will be added.
3575 Spaces are placed between the arguments as with the
3576 :echo command. When used inside a try conditional,
3577 the message is raised as an error exception instead
3578 (see |try-echoerr|).
3579 Example: >
3580 :echoerr "This script just failed!"
3581< If you just want a highlighted message use |:echohl|.
3582 And to get a beep: >
3583 :exe "normal \<Esc>"
3584<
3585 *:exe* *:execute*
3586:exe[cute] {expr1} .. Executes the string that results from the evaluation
3587 of {expr1} as an Ex command. Multiple arguments are
3588 concatenated, with a space in between. {expr1} is
3589 used as the processed command, command line editing
3590 keys are not recognized.
3591 Cannot be followed by a comment.
3592 Examples: >
3593 :execute "buffer " nextbuf
3594 :execute "normal " count . "w"
3595<
3596 ":execute" can be used to append a command to commands
3597 that don't accept a '|'. Example: >
3598 :execute '!ls' | echo "theend"
3599
3600< ":execute" is also a nice way to avoid having to type
3601 control characters in a Vim script for a ":normal"
3602 command: >
3603 :execute "normal ixxx\<Esc>"
3604< This has an <Esc> character, see |expr-string|.
3605
3606 Note: The executed string may be any command-line, but
3607 you cannot start or end a "while" or "if" command.
3608 Thus this is illegal: >
3609 :execute 'while i > 5'
3610 :execute 'echo "test" | break'
3611<
3612 It is allowed to have a "while" or "if" command
3613 completely in the executed string: >
3614 :execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
3615<
3616
3617 *:comment*
3618 ":execute", ":echo" and ":echon" cannot be followed by
3619 a comment directly, because they see the '"' as the
3620 start of a string. But, you can use '|' followed by a
3621 comment. Example: >
3622 :echo "foo" | "this is a comment
3623
3624==============================================================================
36258. Exception handling *exception-handling*
3626
3627The Vim script language comprises an exception handling feature. This section
3628explains how it can be used in a Vim script.
3629
3630Exceptions may be raised by Vim on an error or on interrupt, see
3631|catch-errors| and |catch-interrupt|. You can also explicitly throw an
3632exception by using the ":throw" command, see |throw-catch|.
3633
3634
3635TRY CONDITIONALS *try-conditionals*
3636
3637Exceptions can be caught or can cause cleanup code to be executed. You can
3638use a try conditional to specify catch clauses (that catch exceptions) and/or
3639a finally clause (to be executed for cleanup).
3640 A try conditional begins with a |:try| command and ends at the matching
3641|:endtry| command. In between, you can use a |:catch| command to start
3642a catch clause, or a |:finally| command to start a finally clause. There may
3643be none or multiple catch clauses, but there is at most one finally clause,
3644which must not be followed by any catch clauses. The lines before the catch
3645clauses and the finally clause is called a try block. >
3646
3647 :try
3648 : ...
3649 : ... TRY BLOCK
3650 : ...
3651 :catch /{pattern}/
3652 : ...
3653 : ... CATCH CLAUSE
3654 : ...
3655 :catch /{pattern}/
3656 : ...
3657 : ... CATCH CLAUSE
3658 : ...
3659 :finally
3660 : ...
3661 : ... FINALLY CLAUSE
3662 : ...
3663 :endtry
3664
3665The try conditional allows to watch code for exceptions and to take the
3666appropriate actions. Exceptions from the try block may be caught. Exceptions
3667from the try block and also the catch clauses may cause cleanup actions.
3668 When no exception is thrown during execution of the try block, the control
3669is transferred to the finally clause, if present. After its execution, the
3670script continues with the line following the ":endtry".
3671 When an exception occurs during execution of the try block, the remaining
3672lines in the try block are skipped. The exception is matched against the
3673patterns specified as arguments to the ":catch" commands. The catch clause
3674after the first matching ":catch" is taken, other catch clauses are not
3675executed. The catch clause ends when the next ":catch", ":finally", or
3676":endtry" command is reached - whatever is first. Then, the finally clause
3677(if present) is executed. When the ":endtry" is reached, the script execution
3678continues in the following line as usual.
3679 When an exception that does not match any of the patterns specified by the
3680":catch" commands is thrown in the try block, the exception is not caught by
3681that try conditional and none of the catch clauses is executed. Only the
3682finally clause, if present, is taken. The exception pends during execution of
3683the finally clause. It is resumed at the ":endtry", so that commands after
3684the ":endtry" are not executed and the exception might be caught elsewhere,
3685see |try-nesting|.
3686 When during execution of a catch clause another exception is thrown, the
3687remaining lines in that catch clause are not executed. The new exception is
3688not matched against the patterns in any of the ":catch" commands of the same
3689try conditional and none of its catch clauses is taken. If there is, however,
3690a finally clause, it is executed, and the exception pends during its
3691execution. The commands following the ":endtry" are not executed. The new
3692exception might, however, be caught elsewhere, see |try-nesting|.
3693 When during execution of the finally clause (if present) an exception is
3694thrown, the remaining lines in the finally clause are skipped. If the finally
3695clause has been taken because of an exception from the try block or one of the
3696catch clauses, the original (pending) exception is discarded. The commands
3697following the ":endtry" are not executed, and the exception from the finally
3698clause is propagated and can be caught elsewhere, see |try-nesting|.
3699
3700The finally clause is also executed, when a ":break" or ":continue" for
3701a ":while" loop enclosing the complete try conditional is executed from the
3702try block or a catch clause. Or when a ":return" or ":finish" is executed
3703from the try block or a catch clause of a try conditional in a function or
3704sourced script, respectively. The ":break", ":continue", ":return", or
3705":finish" pends during execution of the finally clause and is resumed when the
3706":endtry" is reached. It is, however, discarded when an exception is thrown
3707from the finally clause.
3708 When a ":break" or ":continue" for a ":while" loop enclosing the complete
3709try conditional or when a ":return" or ":finish" is encountered in the finally
3710clause, the rest of the finally clause is skipped, and the ":break",
3711":continue", ":return" or ":finish" is executed as usual. If the finally
3712clause has been taken because of an exception or an earlier ":break",
3713":continue", ":return", or ":finish" from the try block or a catch clause,
3714this pending exception or command is discarded.
3715
3716For examples see |throw-catch| and |try-finally|.
3717
3718
3719NESTING OF TRY CONDITIONALS *try-nesting*
3720
3721Try conditionals can be nested arbitrarily. That is, a complete try
3722conditional can be put into the try block, a catch clause, or the finally
3723clause of another try conditional. If the inner try conditional does not
3724catch an exception thrown in its try block or throws a new exception from one
3725of its catch clauses or its finally clause, the outer try conditional is
3726checked according to the rules above. If the inner try conditional is in the
3727try block of the outer try conditional, its catch clauses are checked, but
3728otherwise only the finally clause is executed. It does not matter for
3729nesting, whether the inner try conditional is directly contained in the outer
3730one, or whether the outer one sources a script or calls a function containing
3731the inner try conditional.
3732
3733When none of the active try conditionals catches an exception, just their
3734finally clauses are executed. Thereafter, the script processing terminates.
3735An error message is displayed in case of an uncaught exception explicitly
3736thrown by a ":throw" command. For uncaught error and interrupt exceptions
3737implicitly raised by Vim, the error message(s) or interrupt message are shown
3738as usual.
3739
3740For examples see |throw-catch|.
3741
3742
3743EXAMINING EXCEPTION HANDLING CODE *except-examine*
3744
3745Exception handling code can get tricky. If you are in doubt what happens, set
3746'verbose' to 13 or use the ":13verbose" command modifier when sourcing your
3747script file. Then you see when an exception is thrown, discarded, caught, or
3748finished. When using a verbosity level of at least 14, things pending in
3749a finally clause are also shown. This information is also given in debug mode
3750(see |debug-scripts|).
3751
3752
3753THROWING AND CATCHING EXCEPTIONS *throw-catch*
3754
3755You can throw any number or string as an exception. Use the |:throw| command
3756and pass the value to be thrown as argument: >
3757 :throw 4711
3758 :throw "string"
3759< *throw-expression*
3760You can also specify an expression argument. The expression is then evaluated
3761first, and the result is thrown: >
3762 :throw 4705 + strlen("string")
3763 :throw strpart("strings", 0, 6)
3764
3765An exception might be thrown during evaluation of the argument of the ":throw"
3766command. Unless it is caught there, the expression evaluation is abandoned.
3767The ":throw" command then does not throw a new exception.
3768 Example: >
3769
3770 :function! Foo(arg)
3771 : try
3772 : throw a:arg
3773 : catch /foo/
3774 : endtry
3775 : return 1
3776 :endfunction
3777 :
3778 :function! Bar()
3779 : echo "in Bar"
3780 : return 4710
3781 :endfunction
3782 :
3783 :throw Foo("arrgh") + Bar()
3784
3785This throws "arrgh", and "in Bar" is not displayed since Bar() is not
3786executed. >
3787 :throw Foo("foo") + Bar()
3788however displays "in Bar" and throws 4711.
3789
3790Any other command that takes an expression as argument might also be
3791abandoned by an (uncaught) exception during the expression evaluation. The
3792exception is then propagated to the caller of the command.
3793 Example: >
3794
3795 :if Foo("arrgh")
3796 : echo "then"
3797 :else
3798 : echo "else"
3799 :endif
3800
3801Here neither of "then" or "else" is displayed.
3802
3803 *catch-order*
3804Exceptions can be caught by a try conditional with one or more |:catch|
3805commands, see |try-conditionals|. The values to be caught by each ":catch"
3806command can be specified as a pattern argument. The subsequent catch clause
3807gets executed when a matching exception is caught.
3808 Example: >
3809
3810 :function! Foo(value)
3811 : try
3812 : throw a:value
3813 : catch /^\d\+$/
3814 : echo "Number thrown"
3815 : catch /.*/
3816 : echo "String thrown"
3817 : endtry
3818 :endfunction
3819 :
3820 :call Foo(0x1267)
3821 :call Foo('string')
3822
3823The first call to Foo() displays "Number thrown", the second "String thrown".
3824An exception is matched against the ":catch" commands in the order they are
3825specified. Only the first match counts. So you should place the more
3826specific ":catch" first. The following order does not make sense: >
3827
3828 : catch /.*/
3829 : echo "String thrown"
3830 : catch /^\d\+$/
3831 : echo "Number thrown"
3832
3833The first ":catch" here matches always, so that the second catch clause is
3834never taken.
3835
3836 *throw-variables*
3837If you catch an exception by a general pattern, you may access the exact value
3838in the variable |v:exception|: >
3839
3840 : catch /^\d\+$/
3841 : echo "Number thrown. Value is" v:exception
3842
3843You may also be interested where an exception was thrown. This is stored in
3844|v:throwpoint|. Note that "v:exception" and "v:throwpoint" are valid for the
3845exception most recently caught as long it is not finished.
3846 Example: >
3847
3848 :function! Caught()
3849 : if v:exception != ""
3850 : echo 'Caught "' . v:exception . '" in ' . v:throwpoint
3851 : else
3852 : echo 'Nothing caught'
3853 : endif
3854 :endfunction
3855 :
3856 :function! Foo()
3857 : try
3858 : try
3859 : try
3860 : throw 4711
3861 : finally
3862 : call Caught()
3863 : endtry
3864 : catch /.*/
3865 : call Caught()
3866 : throw "oops"
3867 : endtry
3868 : catch /.*/
3869 : call Caught()
3870 : finally
3871 : call Caught()
3872 : endtry
3873 :endfunction
3874 :
3875 :call Foo()
3876
3877This displays >
3878
3879 Nothing caught
3880 Caught "4711" in function Foo, line 4
3881 Caught "oops" in function Foo, line 10
3882 Nothing caught
3883
3884A practical example: The following command ":LineNumber" displays the line
3885number in the script or function where it has been used: >
3886
3887 :function! LineNumber()
3888 : return substitute(v:throwpoint, '.*\D\(\d\+\).*', '\1', "")
3889 :endfunction
3890 :command! LineNumber try | throw "" | catch | echo LineNumber() | endtry
3891<
3892 *try-nested*
3893An exception that is not caught by a try conditional can be caught by
3894a surrounding try conditional: >
3895
3896 :try
3897 : try
3898 : throw "foo"
3899 : catch /foobar/
3900 : echo "foobar"
3901 : finally
3902 : echo "inner finally"
3903 : endtry
3904 :catch /foo/
3905 : echo "foo"
3906 :endtry
3907
3908The inner try conditional does not catch the exception, just its finally
3909clause is executed. The exception is then caught by the outer try
3910conditional. The example displays "inner finally" and then "foo".
3911
3912 *throw-from-catch*
3913You can catch an exception and throw a new one to be caught elsewhere from the
3914catch clause: >
3915
3916 :function! Foo()
3917 : throw "foo"
3918 :endfunction
3919 :
3920 :function! Bar()
3921 : try
3922 : call Foo()
3923 : catch /foo/
3924 : echo "Caught foo, throw bar"
3925 : throw "bar"
3926 : endtry
3927 :endfunction
3928 :
3929 :try
3930 : call Bar()
3931 :catch /.*/
3932 : echo "Caught" v:exception
3933 :endtry
3934
3935This displays "Caught foo, throw bar" and then "Caught bar".
3936
3937 *rethrow*
3938There is no real rethrow in the Vim script language, but you may throw
3939"v:exception" instead: >
3940
3941 :function! Bar()
3942 : try
3943 : call Foo()
3944 : catch /.*/
3945 : echo "Rethrow" v:exception
3946 : throw v:exception
3947 : endtry
3948 :endfunction
3949< *try-echoerr*
3950Note that this method cannot be used to "rethrow" Vim error or interrupt
3951exceptions, because it is not possible to fake Vim internal exceptions.
3952Trying so causes an error exception. You should throw your own exception
3953denoting the situation. If you want to cause a Vim error exception containing
3954the original error exception value, you can use the |:echoerr| command: >
3955
3956 :try
3957 : try
3958 : asdf
3959 : catch /.*/
3960 : echoerr v:exception
3961 : endtry
3962 :catch /.*/
3963 : echo v:exception
3964 :endtry
3965
3966This code displays
3967
3968 Vim(echoerr):Vim:E492: Not an editor command: asdf ~
3969
3970
3971CLEANUP CODE *try-finally*
3972
3973Scripts often change global settings and restore them at their end. If the
3974user however interrupts the script by pressing CTRL-C, the settings remain in
3975an inconsistent state. The same may happen to you in the development phase of
3976a script when an error occurs or you explicitly throw an exception without
3977catching it. You can solve these problems by using a try conditional with
3978a finally clause for restoring the settings. Its execution is guaranteed on
3979normal control flow, on error, on an explicit ":throw", and on interrupt.
3980(Note that errors and interrupts from inside the try conditional are converted
3981to exceptions. When not caught, they terminate the script after the finally
3982clause has been executed.)
3983Example: >
3984
3985 :try
3986 : let s:saved_ts = &ts
3987 : set ts=17
3988 :
3989 : " Do the hard work here.
3990 :
3991 :finally
3992 : let &ts = s:saved_ts
3993 : unlet s:saved_ts
3994 :endtry
3995
3996This method should be used locally whenever a function or part of a script
3997changes global settings which need to be restored on failure or normal exit of
3998that function or script part.
3999
4000 *break-finally*
4001Cleanup code works also when the try block or a catch clause is left by
4002a ":continue", ":break", ":return", or ":finish".
4003 Example: >
4004
4005 :let first = 1
4006 :while 1
4007 : try
4008 : if first
4009 : echo "first"
4010 : let first = 0
4011 : continue
4012 : else
4013 : throw "second"
4014 : endif
4015 : catch /.*/
4016 : echo v:exception
4017 : break
4018 : finally
4019 : echo "cleanup"
4020 : endtry
4021 : echo "still in while"
4022 :endwhile
4023 :echo "end"
4024
4025This displays "first", "cleanup", "second", "cleanup", and "end". >
4026
4027 :function! Foo()
4028 : try
4029 : return 4711
4030 : finally
4031 : echo "cleanup\n"
4032 : endtry
4033 : echo "Foo still active"
4034 :endfunction
4035 :
4036 :echo Foo() "returned by Foo"
4037
4038This displays "cleanup" and "4711 returned by Foo". You don't need to add an
4039extra ":return" in the finally clause. (Above all, this would override the
4040return value.)
4041
4042 *except-from-finally*
4043Using either of ":continue", ":break", ":return", ":finish", or ":throw" in
4044a finally clause is possible, but not recommended since it abandons the
4045cleanup actions for the try conditional. But, of course, interrupt and error
4046exceptions might get raised from a finally clause.
4047 Example where an error in the finally clause stops an interrupt from
4048working correctly: >
4049
4050 :try
4051 : try
4052 : echo "Press CTRL-C for interrupt"
4053 : while 1
4054 : endwhile
4055 : finally
4056 : unlet novar
4057 : endtry
4058 :catch /novar/
4059 :endtry
4060 :echo "Script still running"
4061 :sleep 1
4062
4063If you need to put commands that could fail into a finally clause, you should
4064think about catching or ignoring the errors in these commands, see
4065|catch-errors| and |ignore-errors|.
4066
4067
4068CATCHING ERRORS *catch-errors*
4069
4070If you want to catch specific errors, you just have to put the code to be
4071watched in a try block and add a catch clause for the error message. The
4072presence of the try conditional causes all errors to be converted to an
4073exception. No message is displayed and |v:errmsg| is not set then. To find
4074the right pattern for the ":catch" command, you have to know how the format of
4075the error exception is.
4076 Error exceptions have the following format: >
4077
4078 Vim({cmdname}):{errmsg}
4079or >
4080 Vim:{errmsg}
4081
4082{cmdname} is the name of the command that failed; the second form is used when
4083the command name is not known. {errmsg} is the error message usually produced
4084when the error occurs outside try conditionals. It always begins with
4085a capital "E", followed by a two or three-digit error number, a colon, and
4086a space.
4087
4088Examples:
4089
4090The command >
4091 :unlet novar
4092normally produces the error message >
4093 E108: No such variable: "novar"
4094which is converted inside try conditionals to an exception >
4095 Vim(unlet):E108: No such variable: "novar"
4096
4097The command >
4098 :dwim
4099normally produces the error message >
4100 E492: Not an editor command: dwim
4101which is converted inside try conditionals to an exception >
4102 Vim:E492: Not an editor command: dwim
4103
4104You can catch all ":unlet" errors by a >
4105 :catch /^Vim(unlet):/
4106or all errors for misspelled command names by a >
4107 :catch /^Vim:E492:/
4108
4109Some error messages may be produced by different commands: >
4110 :function nofunc
4111and >
4112 :delfunction nofunc
4113both produce the error message >
4114 E128: Function name must start with a capital: nofunc
4115which is converted inside try conditionals to an exception >
4116 Vim(function):E128: Function name must start with a capital: nofunc
4117or >
4118 Vim(delfunction):E128: Function name must start with a capital: nofunc
4119respectively. You can catch the error by its number independently on the
4120command that caused it if you use the following pattern: >
4121 :catch /^Vim(\a\+):E128:/
4122
4123Some commands like >
4124 :let x = novar
4125produce multiple error messages, here: >
4126 E121: Undefined variable: novar
4127 E15: Invalid expression: novar
4128Only the first is used for the exception value, since it is the most specific
4129one (see |except-several-errors|). So you can catch it by >
4130 :catch /^Vim(\a\+):E121:/
4131
4132You can catch all errors related to the name "nofunc" by >
4133 :catch /\<nofunc\>/
4134
4135You can catch all Vim errors in the ":write" and ":read" commands by >
4136 :catch /^Vim(\(write\|read\)):E\d\+:/
4137
4138You can catch all Vim errors by the pattern >
4139 :catch /^Vim\((\a\+)\)\=:E\d\+:/
4140<
4141 *catch-text*
4142NOTE: You should never catch the error message text itself: >
4143 :catch /No such variable/
4144only works in the english locale, but not when the user has selected
4145a different language by the |:language| command. It is however helpful to
4146cite the message text in a comment: >
4147 :catch /^Vim(\a\+):E108:/ " No such variable
4148
4149
4150IGNORING ERRORS *ignore-errors*
4151
4152You can ignore errors in a specific Vim command by catching them locally: >
4153
4154 :try
4155 : write
4156 :catch
4157 :endtry
4158
4159But you are strongly recommended NOT to use this simple form, since it could
4160catch more than you want. With the ":write" command, some autocommands could
4161be executed and cause errors not related to writing, for instance: >
4162
4163 :au BufWritePre * unlet novar
4164
4165There could even be such errors you are not responsible for as a script
4166writer: a user of your script might have defined such autocommands. You would
4167then hide the error from the user.
4168 It is much better to use >
4169
4170 :try
4171 : write
4172 :catch /^Vim(write):/
4173 :endtry
4174
4175which only catches real write errors. So catch only what you'd like to ignore
4176intentionally.
4177
4178For a single command that does not cause execution of autocommands, you could
4179even suppress the conversion of errors to exceptions by the ":silent!"
4180command: >
4181 :silent! nunmap k
4182This works also when a try conditional is active.
4183
4184
4185CATCHING INTERRUPTS *catch-interrupt*
4186
4187When there are active try conditionals, an interrupt (CTRL-C) is converted to
4188the exception "Vim:Interrupt". You can catch it like every exception. The
4189script is not terminated, then.
4190 Example: >
4191
4192 :function! TASK1()
4193 : sleep 10
4194 :endfunction
4195
4196 :function! TASK2()
4197 : sleep 20
4198 :endfunction
4199
4200 :while 1
4201 : let command = input("Type a command: ")
4202 : try
4203 : if command == ""
4204 : continue
4205 : elseif command == "END"
4206 : break
4207 : elseif command == "TASK1"
4208 : call TASK1()
4209 : elseif command == "TASK2"
4210 : call TASK2()
4211 : else
4212 : echo "\nIllegal command:" command
4213 : continue
4214 : endif
4215 : catch /^Vim:Interrupt$/
4216 : echo "\nCommand interrupted"
4217 : " Caught the interrupt. Continue with next prompt.
4218 : endtry
4219 :endwhile
4220
4221You can interrupt a task here by pressing CTRL-C; the script then asks for
4222a new command. If you press CTRL-C at the prompt, the script is terminated.
4223
4224For testing what happens when CTRL-C would be pressed on a specific line in
4225your script, use the debug mode and execute the |>quit| or |>interrupt|
4226command on that line. See |debug-scripts|.
4227
4228
4229CATCHING ALL *catch-all*
4230
4231The commands >
4232
4233 :catch /.*/
4234 :catch //
4235 :catch
4236
4237catch everything, error exceptions, interrupt exceptions and exceptions
4238explicitly thrown by the |:throw| command. This is useful at the top level of
4239a script in order to catch unexpected things.
4240 Example: >
4241
4242 :try
4243 :
4244 : " do the hard work here
4245 :
4246 :catch /MyException/
4247 :
4248 : " handle known problem
4249 :
4250 :catch /^Vim:Interrupt$/
4251 : echo "Script interrupted"
4252 :catch /.*/
4253 : echo "Internal error (" . v:exception . ")"
4254 : echo " - occurred at " . v:throwpoint
4255 :endtry
4256 :" end of script
4257
4258Note: Catching all might catch more things than you want. Thus, you are
4259strongly encouraged to catch only for problems that you can really handle by
4260specifying a pattern argument to the ":catch".
4261 Example: Catching all could make it nearly impossible to interrupt a script
4262by pressing CTRL-C: >
4263
4264 :while 1
4265 : try
4266 : sleep 1
4267 : catch
4268 : endtry
4269 :endwhile
4270
4271
4272EXCEPTIONS AND AUTOCOMMANDS *except-autocmd*
4273
4274Exceptions may be used during execution of autocommands. Example: >
4275
4276 :autocmd User x try
4277 :autocmd User x throw "Oops!"
4278 :autocmd User x catch
4279 :autocmd User x echo v:exception
4280 :autocmd User x endtry
4281 :autocmd User x throw "Arrgh!"
4282 :autocmd User x echo "Should not be displayed"
4283 :
4284 :try
4285 : doautocmd User x
4286 :catch
4287 : echo v:exception
4288 :endtry
4289
4290This displays "Oops!" and "Arrgh!".
4291
4292 *except-autocmd-Pre*
4293For some commands, autocommands get executed before the main action of the
4294command takes place. If an exception is thrown and not caught in the sequence
4295of autocommands, the sequence and the command that caused its execution are
4296abandoned and the exception is propagated to the caller of the command.
4297 Example: >
4298
4299 :autocmd BufWritePre * throw "FAIL"
4300 :autocmd BufWritePre * echo "Should not be displayed"
4301 :
4302 :try
4303 : write
4304 :catch
4305 : echo "Caught:" v:exception "from" v:throwpoint
4306 :endtry
4307
4308Here, the ":write" command does not write the file currently being edited (as
4309you can see by checking 'modified'), since the exception from the BufWritePre
4310autocommand abandons the ":write". The exception is then caught and the
4311script displays: >
4312
4313 Caught: FAIL from BufWrite Auto commands for "*"
4314<
4315 *except-autocmd-Post*
4316For some commands, autocommands get executed after the main action of the
4317command has taken place. If this main action fails and the command is inside
4318an active try conditional, the autocommands are skipped and an error exception
4319is thrown that can be caught by the caller of the command.
4320 Example: >
4321
4322 :autocmd BufWritePost * echo "File successfully written!"
4323 :
4324 :try
4325 : write /i/m/p/o/s/s/i/b/l/e
4326 :catch
4327 : echo v:exception
4328 :endtry
4329
4330This just displays: >
4331
4332 Vim(write):E212: Can't open file for writing (/i/m/p/o/s/s/i/b/l/e)
4333
4334If you really need to execute the autocommands even when the main action
4335fails, trigger the event from the catch clause.
4336 Example: >
4337
4338 :autocmd BufWritePre * set noreadonly
4339 :autocmd BufWritePost * set readonly
4340 :
4341 :try
4342 : write /i/m/p/o/s/s/i/b/l/e
4343 :catch
4344 : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e
4345 :endtry
4346<
4347You can also use ":silent!": >
4348
4349 :let x = "ok"
4350 :let v:errmsg = ""
4351 :autocmd BufWritePost * if v:errmsg != ""
4352 :autocmd BufWritePost * let x = "after fail"
4353 :autocmd BufWritePost * endif
4354 :try
4355 : silent! write /i/m/p/o/s/s/i/b/l/e
4356 :catch
4357 :endtry
4358 :echo x
4359
4360This displays "after fail".
4361
4362If the main action of the command does not fail, exceptions from the
4363autocommands will be catchable by the caller of the command: >
4364
4365 :autocmd BufWritePost * throw ":-("
4366 :autocmd BufWritePost * echo "Should not be displayed"
4367 :
4368 :try
4369 : write
4370 :catch
4371 : echo v:exception
4372 :endtry
4373<
4374 *except-autocmd-Cmd*
4375For some commands, the normal action can be replaced by a sequence of
4376autocommands. Exceptions from that sequence will be catchable by the caller
4377of the command.
4378 Example: For the ":write" command, the caller cannot know whether the file
4379had actually been written when the exception occurred. You need to tell it in
4380some way. >
4381
4382 :if !exists("cnt")
4383 : let cnt = 0
4384 :
4385 : autocmd BufWriteCmd * if &modified
4386 : autocmd BufWriteCmd * let cnt = cnt + 1
4387 : autocmd BufWriteCmd * if cnt % 3 == 2
4388 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4389 : autocmd BufWriteCmd * endif
4390 : autocmd BufWriteCmd * write | set nomodified
4391 : autocmd BufWriteCmd * if cnt % 3 == 0
4392 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4393 : autocmd BufWriteCmd * endif
4394 : autocmd BufWriteCmd * echo "File successfully written!"
4395 : autocmd BufWriteCmd * endif
4396 :endif
4397 :
4398 :try
4399 : write
4400 :catch /^BufWriteCmdError$/
4401 : if &modified
4402 : echo "Error on writing (file contents not changed)"
4403 : else
4404 : echo "Error after writing"
4405 : endif
4406 :catch /^Vim(write):/
4407 : echo "Error on writing"
4408 :endtry
4409
4410When this script is sourced several times after making changes, it displays
4411first >
4412 File successfully written!
4413then >
4414 Error on writing (file contents not changed)
4415then >
4416 Error after writing
4417etc.
4418
4419 *except-autocmd-ill*
4420You cannot spread a try conditional over autocommands for different events.
4421The following code is ill-formed: >
4422
4423 :autocmd BufWritePre * try
4424 :
4425 :autocmd BufWritePost * catch
4426 :autocmd BufWritePost * echo v:exception
4427 :autocmd BufWritePost * endtry
4428 :
4429 :write
4430
4431
4432EXCEPTION HIERARCHIES AND PARAMETERIZED EXCEPTIONS *except-hier-param*
4433
4434Some programming languages allow to use hierarchies of exception classes or to
4435pass additional information with the object of an exception class. You can do
4436similar things in Vim.
4437 In order to throw an exception from a hierarchy, just throw the complete
4438class name with the components separated by a colon, for instance throw the
4439string "EXCEPT:MATHERR:OVERFLOW" for an overflow in a mathematical library.
4440 When you want to pass additional information with your exception class, add
4441it in parentheses, for instance throw the string "EXCEPT:IO:WRITEERR(myfile)"
4442for an error when writing "myfile".
4443 With the appropriate patterns in the ":catch" command, you can catch for
4444base classes or derived classes of your hierarchy. Additional information in
4445parentheses can be cut out from |v:exception| with the ":substitute" command.
4446 Example: >
4447
4448 :function! CheckRange(a, func)
4449 : if a:a < 0
4450 : throw "EXCEPT:MATHERR:RANGE(" . a:func . ")"
4451 : endif
4452 :endfunction
4453 :
4454 :function! Add(a, b)
4455 : call CheckRange(a:a, "Add")
4456 : call CheckRange(a:b, "Add")
4457 : let c = a:a + a:b
4458 : if c < 0
4459 : throw "EXCEPT:MATHERR:OVERFLOW"
4460 : endif
4461 : return c
4462 :endfunction
4463 :
4464 :function! Div(a, b)
4465 : call CheckRange(a:a, "Div")
4466 : call CheckRange(a:b, "Div")
4467 : if (a:b == 0)
4468 : throw "EXCEPT:MATHERR:ZERODIV"
4469 : endif
4470 : return a:a / a:b
4471 :endfunction
4472 :
4473 :function! Write(file)
4474 : try
4475 : execute "write" a:file
4476 : catch /^Vim(write):/
4477 : throw "EXCEPT:IO(" . getcwd() . ", " . a:file . "):WRITEERR"
4478 : endtry
4479 :endfunction
4480 :
4481 :try
4482 :
4483 : " something with arithmetics and I/O
4484 :
4485 :catch /^EXCEPT:MATHERR:RANGE/
4486 : let function = substitute(v:exception, '.*(\(\a\+\)).*', '\1', "")
4487 : echo "Range error in" function
4488 :
4489 :catch /^EXCEPT:MATHERR/ " catches OVERFLOW and ZERODIV
4490 : echo "Math error"
4491 :
4492 :catch /^EXCEPT:IO/
4493 : let dir = substitute(v:exception, '.*(\(.\+\),\s*.\+).*', '\1', "")
4494 : let file = substitute(v:exception, '.*(.\+,\s*\(.\+\)).*', '\1', "")
4495 : if file !~ '^/'
4496 : let file = dir . "/" . file
4497 : endif
4498 : echo 'I/O error for "' . file . '"'
4499 :
4500 :catch /^EXCEPT/
4501 : echo "Unspecified error"
4502 :
4503 :endtry
4504
4505The exceptions raised by Vim itself (on error or when pressing CTRL-C) use
4506a flat hierarchy: they are all in the "Vim" class. You cannot throw yourself
4507exceptions with the "Vim" prefix; they are reserved for Vim.
4508 Vim error exceptions are parameterized with the name of the command that
4509failed, if known. See |catch-errors|.
4510
4511
4512PECULIARITIES
4513 *except-compat*
4514The exception handling concept requires that the command sequence causing the
4515exception is aborted immediately and control is transferred to finally clauses
4516and/or a catch clause.
4517
4518In the Vim script language there are cases where scripts and functions
4519continue after an error: in functions without the "abort" flag or in a command
4520after ":silent!", control flow goes to the following line, and outside
4521functions, control flow goes to the line following the outermost ":endwhile"
4522or ":endif". On the other hand, errors should be catchable as exceptions
4523(thus, requiring the immediate abortion).
4524
4525This problem has been solved by converting errors to exceptions and using
4526immediate abortion (if not suppressed by ":silent!") only when a try
4527conditional is active. This is no restriction since an (error) exception can
4528be caught only from an active try conditional. If you want an immediate
4529termination without catching the error, just use a try conditional without
4530catch clause. (You can cause cleanup code being executed before termination
4531by specifying a finally clause.)
4532
4533When no try conditional is active, the usual abortion and continuation
4534behavior is used instead of immediate abortion. This ensures compatibility of
4535scripts written for Vim 6.1 and earlier.
4536
4537However, when sourcing an existing script that does not use exception handling
4538commands (or when calling one of its functions) from inside an active try
4539conditional of a new script, you might change the control flow of the existing
4540script on error. You get the immediate abortion on error and can catch the
4541error in the new script. If however the sourced script suppresses error
4542messages by using the ":silent!" command (checking for errors by testing
4543|v:errmsg| if appropriate), its execution path is not changed. The error is
4544not converted to an exception. (See |:silent|.) So the only remaining cause
4545where this happens is for scripts that don't care about errors and produce
4546error messages. You probably won't want to use such code from your new
4547scripts.
4548
4549 *except-syntax-err*
4550Syntax errors in the exception handling commands are never caught by any of
4551the ":catch" commands of the try conditional they belong to. Its finally
4552clauses, however, is executed.
4553 Example: >
4554
4555 :try
4556 : try
4557 : throw 4711
4558 : catch /\(/
4559 : echo "in catch with syntax error"
4560 : catch
4561 : echo "inner catch-all"
4562 : finally
4563 : echo "inner finally"
4564 : endtry
4565 :catch
4566 : echo 'outer catch-all caught "' . v:exception . '"'
4567 : finally
4568 : echo "outer finally"
4569 :endtry
4570
4571This displays: >
4572 inner finally
4573 outer catch-all caught "Vim(catch):E54: Unmatched \("
4574 outer finally
4575The original exception is discarded and an error exception is raised, instead.
4576
4577 *except-single-line*
4578The ":try", ":catch", ":finally", and ":endtry" commands can be put on
4579a single line, but then syntax errors may make it difficult to recognize the
4580"catch" line, thus you better avoid this.
4581 Example: >
4582 :try | unlet! foo # | catch | endtry
4583raises an error exception for the trailing characters after the ":unlet!"
4584argument, but does not see the ":catch" and ":endtry" commands, so that the
4585error exception is discarded and the "E488: Trailing characters" message gets
4586displayed.
4587
4588 *except-several-errors*
4589When several errors appear in a single command, the first error message is
4590usually the most specific one and therefor converted to the error exception.
4591 Example: >
4592 echo novar
4593causes >
4594 E121: Undefined variable: novar
4595 E15: Invalid expression: novar
4596The value of the error exception inside try conditionals is: >
4597 Vim(echo):E121: Undefined variable: novar
4598< *except-syntax-error*
4599But when a syntax error is detected after a normal error in the same command,
4600the syntax error is used for the exception being thrown.
4601 Example: >
4602 unlet novar #
4603causes >
4604 E108: No such variable: "novar"
4605 E488: Trailing characters
4606The value of the error exception inside try conditionals is: >
4607 Vim(unlet):E488: Trailing characters
4608This is done because the syntax error might change the execution path in a way
4609not intended by the user. Example: >
4610 try
4611 try | unlet novar # | catch | echo v:exception | endtry
4612 catch /.*/
4613 echo "outer catch:" v:exception
4614 endtry
4615This displays "outer catch: Vim(unlet):E488: Trailing characters", and then
4616a "E600: Missing :endtry" error message is given, see |except-single-line|.
4617
4618==============================================================================
46199. Examples *eval-examples*
4620
4621Printing in Hex ~
4622>
4623 :" The function Nr2Hex() returns the Hex string of a number.
4624 :func Nr2Hex(nr)
4625 : let n = a:nr
4626 : let r = ""
4627 : while n
4628 : let r = '0123456789ABCDEF'[n % 16] . r
4629 : let n = n / 16
4630 : endwhile
4631 : return r
4632 :endfunc
4633
4634 :" The function String2Hex() converts each character in a string to a two
4635 :" character Hex string.
4636 :func String2Hex(str)
4637 : let out = ''
4638 : let ix = 0
4639 : while ix < strlen(a:str)
4640 : let out = out . Nr2Hex(char2nr(a:str[ix]))
4641 : let ix = ix + 1
4642 : endwhile
4643 : return out
4644 :endfunc
4645
4646Example of its use: >
4647 :echo Nr2Hex(32)
4648result: "20" >
4649 :echo String2Hex("32")
4650result: "3332"
4651
4652
4653Sorting lines (by Robert Webb) ~
4654
4655Here is a Vim script to sort lines. Highlight the lines in Vim and type
4656":Sort". This doesn't call any external programs so it'll work on any
4657platform. The function Sort() actually takes the name of a comparison
4658function as its argument, like qsort() does in C. So you could supply it
4659with different comparison functions in order to sort according to date etc.
4660>
4661 :" Function for use with Sort(), to compare two strings.
4662 :func! Strcmp(str1, str2)
4663 : if (a:str1 < a:str2)
4664 : return -1
4665 : elseif (a:str1 > a:str2)
4666 : return 1
4667 : else
4668 : return 0
4669 : endif
4670 :endfunction
4671
4672 :" Sort lines. SortR() is called recursively.
4673 :func! SortR(start, end, cmp)
4674 : if (a:start >= a:end)
4675 : return
4676 : endif
4677 : let partition = a:start - 1
4678 : let middle = partition
4679 : let partStr = getline((a:start + a:end) / 2)
4680 : let i = a:start
4681 : while (i <= a:end)
4682 : let str = getline(i)
4683 : exec "let result = " . a:cmp . "(str, partStr)"
4684 : if (result <= 0)
4685 : " Need to put it before the partition. Swap lines i and partition.
4686 : let partition = partition + 1
4687 : if (result == 0)
4688 : let middle = partition
4689 : endif
4690 : if (i != partition)
4691 : let str2 = getline(partition)
4692 : call setline(i, str2)
4693 : call setline(partition, str)
4694 : endif
4695 : endif
4696 : let i = i + 1
4697 : endwhile
4698
4699 : " Now we have a pointer to the "middle" element, as far as partitioning
4700 : " goes, which could be anywhere before the partition. Make sure it is at
4701 : " the end of the partition.
4702 : if (middle != partition)
4703 : let str = getline(middle)
4704 : let str2 = getline(partition)
4705 : call setline(middle, str2)
4706 : call setline(partition, str)
4707 : endif
4708 : call SortR(a:start, partition - 1, a:cmp)
4709 : call SortR(partition + 1, a:end, a:cmp)
4710 :endfunc
4711
4712 :" To Sort a range of lines, pass the range to Sort() along with the name of a
4713 :" function that will compare two lines.
4714 :func! Sort(cmp) range
4715 : call SortR(a:firstline, a:lastline, a:cmp)
4716 :endfunc
4717
4718 :" :Sort takes a range of lines and sorts them.
4719 :command! -nargs=0 -range Sort <line1>,<line2>call Sort("Strcmp")
4720<
4721 *sscanf*
4722There is no sscanf() function in Vim. If you need to extract parts from a
4723line, you can use matchstr() and substitute() to do it. This example shows
4724how to get the file name, line number and column number out of a line like
4725"foobar.txt, 123, 45". >
4726 :" Set up the match bit
4727 :let mx='\(\f\+\),\s*\(\d\+\),\s*\(\d\+\)'
4728 :"get the part matching the whole expression
4729 :let l = matchstr(line, mx)
4730 :"get each item out of the match
4731 :let file = substitute(l, mx, '\1', '')
4732 :let lnum = substitute(l, mx, '\2', '')
4733 :let col = substitute(l, mx, '\3', '')
4734
4735The input is in the variable "line", the results in the variables "file",
4736"lnum" and "col". (idea from Michael Geddes)
4737
4738==============================================================================
473910. No +eval feature *no-eval-feature*
4740
4741When the |+eval| feature was disabled at compile time, none of the expression
4742evaluation commands are available. To prevent this from causing Vim scripts
4743to generate all kinds of errors, the ":if" and ":endif" commands are still
4744recognized, though the argument of the ":if" and everything between the ":if"
4745and the matching ":endif" is ignored. Nesting of ":if" blocks is allowed, but
4746only if the commands are at the start of the line. The ":else" command is not
4747recognized.
4748
4749Example of how to avoid executing commands when the |+eval| feature is
4750missing: >
4751
4752 :if 1
4753 : echo "Expression evaluation is compiled in"
4754 :else
4755 : echo "You will _never_ see this message"
4756 :endif
4757
4758==============================================================================
475911. The sandbox *eval-sandbox* *sandbox* *E48*
4760
4761The 'foldexpr', 'includeexpr', 'indentexpr', 'statusline' and 'foldtext'
4762options are evaluated in a sandbox. This means that you are protected from
4763these expressions having nasty side effects. This gives some safety for when
4764these options are set from a modeline. It is also used when the command from
4765a tags file is executed.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004766The sandbox is also used for the |:sandbox| command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767
4768These items are not allowed in the sandbox:
4769 - changing the buffer text
4770 - defining or changing mapping, autocommands, functions, user commands
4771 - setting certain options (see |option-summary|)
4772 - executing a shell command
4773 - reading or writing a file
4774 - jumping to another buffer or editing a file
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004775This is not guaranteed 100% secure, but it should block most attacks.
4776
4777 *:san* *:sandbox*
4778:sandbox {cmd} Execute {cmd} in the sandbox. Useful to evaluate an
4779 option that may have been set from a modeline, e.g.
4780 'foldexpr'.
4781
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782
4783 vim:tw=78:ts=8:ft=help:norl: