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