blob: ac61023612b454a35d25d3d6bdd501135265783b [file] [log] [blame]
Bram Moolenaard899e512022-05-07 21:54:03 +01001*eval.txt* For Vim version 8.2. Last change: 2022 May 06
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
Bram Moolenaar446cb832008-06-24 21:56:24 +00004 VIM REFERENCE MANUAL by Bram Moolenaar
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6
7Expression evaluation *expression* *expr* *E15* *eval*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00008 *E1002*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009Using 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
Bram Moolenaar58b85342016-08-14 19:54:54 +020012done, the features in this document are not available. See |+eval| and
Bram Moolenaard8b02732005-01-14 21:48:43 +000013|no-eval-feature|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000014
Bram Moolenaar1cae5a02021-12-27 21:28:34 +000015This file is mainly about the backwards compatible (legacy) Vim script. For
Bram Moolenaar2f0936c2022-01-08 21:51:59 +000016specifics of Vim9 script, which can execute much faster, supports type
17checking and much more, see |vim9.txt|. Where the syntax or semantics differ
18a remark is given.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010019
Bram Moolenaar13065c42005-01-08 16:08:21 +0000201. Variables |variables|
21 1.1 Variable types
Bram Moolenaar9588a0f2005-01-08 21:45:39 +000022 1.2 Function references |Funcref|
Bram Moolenaar7c626922005-02-07 22:01:03 +000023 1.3 Lists |Lists|
Bram Moolenaard8b02732005-01-14 21:48:43 +000024 1.4 Dictionaries |Dictionaries|
Bram Moolenaard8968242019-01-15 22:51:57 +010025 1.5 Blobs |Blobs|
26 1.6 More about variables |more-variables|
Bram Moolenaar13065c42005-01-08 16:08:21 +0000272. Expression syntax |expression-syntax|
283. Internal variable |internal-variables|
294. Builtin Functions |functions|
305. Defining functions |user-functions|
316. Curly braces names |curly-braces-names|
327. Commands |expression-commands|
338. Exception handling |exception-handling|
349. Examples |eval-examples|
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003510. Vim script version |vimscript-version|
3611. No +eval feature |no-eval-feature|
3712. The sandbox |eval-sandbox|
3813. Textlock |textlock|
Bram Moolenaared997ad2019-07-21 16:42:00 +020039
40Testing support is documented in |testing.txt|.
41Profiling is documented at |profiling|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
Bram Moolenaar071d4272004-06-13 20:20:40 +000043==============================================================================
441. Variables *variables*
45
Bram Moolenaar13065c42005-01-08 16:08:21 +0000461.1 Variable types ~
Bram Moolenaarf10911e2022-01-29 22:20:48 +000047 *E712* *E896* *E897* *E899* *E1098*
48 *E1107* *E1135* *E1138*
Bram Moolenaar06fe74a2019-08-31 16:20:32 +020049There are ten types of variables:
Bram Moolenaar071d4272004-06-13 20:20:40 +000050
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010051 *Number* *Integer*
52Number A 32 or 64 bit signed number. |expr-number|
Bram Moolenaarf9706e92020-02-22 14:27:04 +010053 The number of bits is available in |v:numbersize|.
Bram Moolenaar6f02b002021-01-10 20:22:54 +010054 Examples: -123 0x10 0177 0o177 0b1011
Bram Moolenaard8b02732005-01-14 21:48:43 +000055
Bram Moolenaar446cb832008-06-24 21:56:24 +000056Float A floating point number. |floating-point-format| *Float*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +000057 {only when compiled with the |+float| feature} *E1076*
Bram Moolenaar446cb832008-06-24 21:56:24 +000058 Examples: 123.456 1.15e-6 -1.1e3
59
Bram Moolenaard8b02732005-01-14 21:48:43 +000060String A NUL terminated string of 8-bit unsigned characters (bytes).
Bram Moolenaar446cb832008-06-24 21:56:24 +000061 |expr-string| Examples: "ab\txx\"--" 'x-z''a,c'
Bram Moolenaard8b02732005-01-14 21:48:43 +000062
Bram Moolenaard8968242019-01-15 22:51:57 +010063List An ordered sequence of items, see |List| for details.
Bram Moolenaard8b02732005-01-14 21:48:43 +000064 Example: [1, 2, ['a', 'b']]
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaar39a58ca2005-06-27 22:42:44 +000066Dictionary An associative, unordered array: Each entry has a key and a
67 value. |Dictionary|
Bram Moolenaard5abb4c2019-07-13 22:46:10 +020068 Examples:
69 {'blue': "#0000ff", 'red': "#ff0000"}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +020070 #{blue: "#0000ff", red: "#ff0000"}
Bram Moolenaar39a58ca2005-06-27 22:42:44 +000071
Bram Moolenaar835dc632016-02-07 14:27:38 +010072Funcref A reference to a function |Funcref|.
73 Example: function("strlen")
Bram Moolenaar1d429612016-05-24 15:44:17 +020074 It can be bound to a dictionary and arguments, it then works
75 like a Partial.
76 Example: function("Callback", [arg], myDict)
Bram Moolenaar835dc632016-02-07 14:27:38 +010077
Bram Moolenaar02e83b42016-02-21 20:10:26 +010078Special |v:false|, |v:true|, |v:none| and |v:null|. *Special*
Bram Moolenaar835dc632016-02-07 14:27:38 +010079
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +020080Job Used for a job, see |job_start()|. *Job* *Jobs*
Bram Moolenaar38a55632016-02-15 22:07:32 +010081
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +020082Channel Used for a channel, see |ch_open()|. *Channel* *Channels*
Bram Moolenaar835dc632016-02-07 14:27:38 +010083
Bram Moolenaard8968242019-01-15 22:51:57 +010084Blob Binary Large Object. Stores any sequence of bytes. See |Blob|
85 for details
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +010086 Example: 0zFF00ED015DAF
87 0z is an empty Blob.
88
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +000089The Number and String types are converted automatically, depending on how they
90are used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
92Conversion from a Number to a String is by making the ASCII representation of
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +020093the Number. Examples:
94 Number 123 --> String "123" ~
95 Number 0 --> String "0" ~
96 Number -1 --> String "-1" ~
Bram Moolenaar00a927d2010-05-14 23:24:24 +020097 *octal*
Bram Moolenaard43906d2020-07-20 21:31:32 +020098Conversion from a String to a Number only happens in legacy Vim script, not in
99Vim9 script. It is done by converting the first digits to a number.
100Hexadecimal "0xf9", Octal "017" or "0o17", and Binary "0b10"
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100101numbers are recognized
Bram Moolenaar5da36052021-12-27 15:39:57 +0000102NOTE: when using |Vim9| script or |scriptversion-4| octal with a leading "0"
103is not recognized. The 0o notation requires patch 8.2.0886.
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100104If the String doesn't start with digits, the result is zero.
Bram Moolenaarfa735342016-01-03 22:14:44 +0100105Examples:
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200106 String "456" --> Number 456 ~
107 String "6bar" --> Number 6 ~
108 String "foo" --> Number 0 ~
109 String "0xf1" --> Number 241 ~
110 String "0100" --> Number 64 ~
Bram Moolenaarc17e66c2020-06-02 21:38:22 +0200111 String "0o100" --> Number 64 ~
Bram Moolenaarfa735342016-01-03 22:14:44 +0100112 String "0b101" --> Number 5 ~
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200113 String "-8" --> Number -8 ~
114 String "+8" --> Number 0 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115
116To force conversion from String to Number, add zero to it: >
117 :echo "0100" + 0
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000118< 64 ~
119
120To avoid a leading zero to cause octal conversion, or for using a different
121base, use |str2nr()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
Bram Moolenaard09091d2019-01-17 16:07:22 +0100123 *TRUE* *FALSE* *Boolean*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124For boolean operators Numbers are used. Zero is FALSE, non-zero is TRUE.
Bram Moolenaar6aa57292021-08-14 21:25:52 +0200125You can also use |v:false| and |v:true|, in Vim9 script |false| and |true|.
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200126When TRUE is returned from a function it is the Number one, FALSE is the
127number zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200129Note that in the command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 :if "foo"
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200131 :" NOT executed
132"foo" is converted to 0, which means FALSE. If the string starts with a
133non-zero number it means TRUE: >
134 :if "8foo"
135 :" executed
136To test for a non-empty string, use empty(): >
Bram Moolenaar3a0d8092012-10-21 03:02:54 +0200137 :if !empty("foo")
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200138
139< *falsy* *truthy*
140An expression can be used as a condition, ignoring the type and only using
141whether the value is "sort of true" or "sort of false". Falsy is:
142 the number zero
143 empty string, blob, list or dictionary
144Other values are truthy. Examples:
145 0 falsy
146 1 truthy
147 -1 truthy
148 0.0 falsy
149 0.1 truthy
150 '' falsy
151 'x' truthy
152 [] falsy
153 [0] truthy
154 {} falsy
155 #{x: 1} truthy
156 0z falsy
157 0z00 truthy
158
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200159 *non-zero-arg*
160Function arguments often behave slightly different from |TRUE|: If the
161argument is present and it evaluates to a non-zero Number, |v:true| or a
Bram Moolenaar64d8e252016-09-06 22:12:34 +0200162non-empty String, then the value is considered to be TRUE.
Bram Moolenaar01164a62017-11-02 22:58:42 +0100163Note that " " and "0" are also non-empty strings, thus considered to be TRUE.
164A List, Dictionary or Float is not a Number or String, thus evaluate to FALSE.
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200165
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000166 *E611* *E745* *E728* *E703* *E729* *E730* *E731* *E908* *E910*
167 *E913* *E974* *E975* *E976*
Bram Moolenaard09091d2019-01-17 16:07:22 +0100168|List|, |Dictionary|, |Funcref|, |Job|, |Channel| and |Blob| types are not
169automatically converted.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000170
Bram Moolenaar446cb832008-06-24 21:56:24 +0000171 *E805* *E806* *E808*
Bram Moolenaar58b85342016-08-14 19:54:54 +0200172When mixing Number and Float the Number is converted to Float. Otherwise
Bram Moolenaar446cb832008-06-24 21:56:24 +0000173there is no automatic conversion of Float. You can use str2float() for String
174to Float, printf() for Float to String and float2nr() for Float to Number.
175
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000176 *E362* *E891* *E892* *E893* *E894* *E907* *E911* *E914*
Bram Moolenaar13d5aee2016-01-21 23:36:05 +0100177When expecting a Float a Number can also be used, but nothing else.
178
Bram Moolenaarf6f32c32016-03-12 19:03:59 +0100179 *no-type-checking*
180You will not get an error if you try to change the type of a variable.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000181
Bram Moolenaar13065c42005-01-08 16:08:21 +0000182
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001831.2 Function references ~
Dominique Pelle7765f5c2022-04-10 11:26:53 +0100184 *Funcref* *E695* *E718* *E1192*
Bram Moolenaar58b85342016-08-14 19:54:54 +0200185A Funcref variable is obtained with the |function()| function, the |funcref()|
186function or created with the lambda expression |expr-lambda|. It can be used
187in an expression in the place of a function name, before the parenthesis
188around the arguments, to invoke the function it refers to. Example: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000189
190 :let Fn = function("MyFunc")
191 :echo Fn()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000192< *E704* *E705* *E707*
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000193A Funcref variable must start with a capital, "s:", "w:", "t:" or "b:". You
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200194can use "g:" but the following name must still start with a capital. You
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000195cannot have both a Funcref variable and a function with the same name.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000196
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000197A special case is defining a function and directly assigning its Funcref to a
198Dictionary entry. Example: >
199 :function dict.init() dict
200 : let self.val = 0
201 :endfunction
202
203The key of the Dictionary can start with a lower case letter. The actual
204function name is not used here. Also see |numbered-function|.
205
206A Funcref can also be used with the |:call| command: >
207 :call Fn()
208 :call dict.init()
Bram Moolenaar13065c42005-01-08 16:08:21 +0000209
210The name of the referenced function can be obtained with |string()|. >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000211 :let func = string(Fn)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000212
213You can use |call()| to invoke a Funcref and use a list variable for the
214arguments: >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000215 :let r = call(Fn, mylist)
Bram Moolenaar1d429612016-05-24 15:44:17 +0200216<
217 *Partial*
218A Funcref optionally binds a Dictionary and/or arguments. This is also called
219a Partial. This is created by passing the Dictionary and/or arguments to
Bram Moolenaar58b85342016-08-14 19:54:54 +0200220function() or funcref(). When calling the function the Dictionary and/or
221arguments will be passed to the function. Example: >
Bram Moolenaar1d429612016-05-24 15:44:17 +0200222
223 let Cb = function('Callback', ['foo'], myDict)
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100224 call Cb('bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200225
226This will invoke the function as if using: >
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100227 call myDict.Callback('foo', 'bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200228
229This is very useful when passing a function around, e.g. in the arguments of
230|ch_open()|.
231
232Note that binding a function to a Dictionary also happens when the function is
233a member of the Dictionary: >
234
235 let myDict.myFunction = MyFunction
236 call myDict.myFunction()
237
238Here MyFunction() will get myDict passed as "self". This happens when the
239"myFunction" member is accessed. When making assigning "myFunction" to
240otherDict and calling it, it will be bound to otherDict: >
241
242 let otherDict.myFunction = myDict.myFunction
243 call otherDict.myFunction()
244
245Now "self" will be "otherDict". But when the dictionary was bound explicitly
246this won't happen: >
247
248 let myDict.myFunction = function(MyFunction, myDict)
249 let otherDict.myFunction = myDict.myFunction
250 call otherDict.myFunction()
251
Bram Moolenaard823fa92016-08-12 16:29:27 +0200252Here "self" will be "myDict", because it was bound explicitly.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000253
254
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002551.3 Lists ~
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200256 *list* *List* *Lists* *E686*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000257A List is an ordered sequence of items. An item can be of any type. Items
Bram Moolenaar58b85342016-08-14 19:54:54 +0200258can be accessed by their index number. Items can be added and removed at any
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000259position in the sequence.
260
Bram Moolenaar13065c42005-01-08 16:08:21 +0000261
262List creation ~
263 *E696* *E697*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100264A List is created with a comma-separated list of items in square brackets.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000265Examples: >
266 :let mylist = [1, two, 3, "four"]
267 :let emptylist = []
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000268
Bram Moolenaar58b85342016-08-14 19:54:54 +0200269An item can be any expression. Using a List for an item creates a
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000270List of Lists: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000271 :let nestlist = [[11, 12], [21, 22], [31, 32]]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000272
273An extra comma after the last item is ignored.
274
Bram Moolenaar13065c42005-01-08 16:08:21 +0000275
276List index ~
277 *list-index* *E684*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000278An item in the List can be accessed by putting the index in square brackets
Bram Moolenaar13065c42005-01-08 16:08:21 +0000279after the List. Indexes are zero-based, thus the first item has index zero. >
280 :let item = mylist[0] " get the first item: 1
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000281 :let item = mylist[2] " get the third item: 3
Bram Moolenaar13065c42005-01-08 16:08:21 +0000282
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000283When the resulting item is a list this can be repeated: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000284 :let item = nestlist[0][1] " get the first list, second item: 12
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000285<
Bram Moolenaar13065c42005-01-08 16:08:21 +0000286A negative index is counted from the end. Index -1 refers to the last item in
287the List, -2 to the last but one item, etc. >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000288 :let last = mylist[-1] " get the last item: "four"
289
Bram Moolenaar13065c42005-01-08 16:08:21 +0000290To avoid an error for an invalid index use the |get()| function. When an item
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000291is not available it returns zero or the default value you specify: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000292 :echo get(mylist, idx)
293 :echo get(mylist, idx, "NONE")
294
295
296List concatenation ~
Bram Moolenaar34453202021-01-31 13:08:38 +0100297 *list-concatenation*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000298Two lists can be concatenated with the "+" operator: >
299 :let longlist = mylist + [5, 6]
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000300 :let mylist += [7, 8]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000301
Bram Moolenaar34453202021-01-31 13:08:38 +0100302To prepend or append an item, turn the item into a list by putting [] around
303it. To change a list in-place, refer to |list-modification| below.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000304
305
306Sublist ~
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200307 *sublist*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000308A part of the List can be obtained by specifying the first and last index,
309separated by a colon in square brackets: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000310 :let shortlist = mylist[2:-1] " get List [3, "four"]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000311
312Omitting the first index is similar to zero. Omitting the last index is
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000313similar to -1. >
Bram Moolenaar540d6e32005-01-09 21:20:18 +0000314 :let endlist = mylist[2:] " from item 2 to the end: [3, "four"]
315 :let shortlist = mylist[2:2] " List with one item: [3]
316 :let otherlist = mylist[:] " make a copy of the List
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000317
Bram Moolenaar6601b622021-01-13 21:47:15 +0100318Notice that the last index is inclusive. If you prefer using an exclusive
319index use the |slice()| method.
320
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000321If the first index is beyond the last item of the List or the second item is
322before the first item, the result is an empty list. There is no error
323message.
324
325If the second index is equal to or greater than the length of the list the
326length minus one is used: >
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000327 :let mylist = [0, 1, 2, 3]
328 :echo mylist[2:8] " result: [2, 3]
329
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000330NOTE: mylist[s:e] means using the variable "s:e" as index. Watch out for
Bram Moolenaar58b85342016-08-14 19:54:54 +0200331using a single letter variable before the ":". Insert a space when needed:
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000332mylist[s : e].
333
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000334
Bram Moolenaar13065c42005-01-08 16:08:21 +0000335List identity ~
Bram Moolenaard8b02732005-01-14 21:48:43 +0000336 *list-identity*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000337When variable "aa" is a list and you assign it to another variable "bb", both
338variables refer to the same list. Thus changing the list "aa" will also
339change "bb": >
340 :let aa = [1, 2, 3]
341 :let bb = aa
342 :call add(aa, 4)
343 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000344< [1, 2, 3, 4]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000345
346Making a copy of a list is done with the |copy()| function. Using [:] also
347works, as explained above. This creates a shallow copy of the list: Changing
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000348a list item in the list will also change the item in the copied list: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000349 :let aa = [[1, 'a'], 2, 3]
350 :let bb = copy(aa)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000351 :call add(aa, 4)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000352 :let aa[0][1] = 'aaa'
353 :echo aa
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000354< [[1, aaa], 2, 3, 4] >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000355 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000356< [[1, aaa], 2, 3]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000357
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000358To make a completely independent list use |deepcopy()|. This also makes a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000359copy of the values in the list, recursively. Up to a hundred levels deep.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000360
361The operator "is" can be used to check if two variables refer to the same
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000362List. "isnot" does the opposite. In contrast "==" compares if two lists have
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000363the same value. >
364 :let alist = [1, 2, 3]
365 :let blist = [1, 2, 3]
366 :echo alist is blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000367< 0 >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000368 :echo alist == blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000369< 1
Bram Moolenaar13065c42005-01-08 16:08:21 +0000370
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000371Note about comparing lists: Two lists are considered equal if they have the
372same length and all items compare equal, as with using "==". There is one
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000373exception: When comparing a number with a string they are considered
374different. There is no automatic type conversion, as with using "==" on
375variables. Example: >
376 echo 4 == "4"
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000377< 1 >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000378 echo [4] == ["4"]
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000379< 0
380
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000381Thus comparing Lists is more strict than comparing numbers and strings. You
Bram Moolenaar446cb832008-06-24 21:56:24 +0000382can compare simple values this way too by putting them in a list: >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000383
384 :let a = 5
385 :let b = "5"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000386 :echo a == b
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000387< 1 >
Bram Moolenaar446cb832008-06-24 21:56:24 +0000388 :echo [a] == [b]
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000389< 0
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000390
Bram Moolenaar13065c42005-01-08 16:08:21 +0000391
392List unpack ~
393
394To unpack the items in a list to individual variables, put the variables in
395square brackets, like list items: >
396 :let [var1, var2] = mylist
397
398When the number of variables does not match the number of items in the list
399this produces an error. To handle any extra items from the list append ";"
400and a variable name: >
401 :let [var1, var2; rest] = mylist
402
403This works like: >
404 :let var1 = mylist[0]
405 :let var2 = mylist[1]
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000406 :let rest = mylist[2:]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000407
408Except that there is no error if there are only two items. "rest" will be an
409empty list then.
410
411
412List modification ~
413 *list-modification*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000414To change a specific item of a list use |:let| this way: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000415 :let list[4] = "four"
416 :let listlist[0][3] = item
417
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000418To change part of a list you can specify the first and last item to be
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000419modified. The value must at least have the number of items in the range: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000420 :let list[3:5] = [3, 4, 5]
421
Bram Moolenaar13065c42005-01-08 16:08:21 +0000422Adding and removing items from a list is done with functions. Here are a few
423examples: >
424 :call insert(list, 'a') " prepend item 'a'
425 :call insert(list, 'a', 3) " insert item 'a' before list[3]
426 :call add(list, "new") " append String item
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000427 :call add(list, [1, 2]) " append a List as one new item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000428 :call extend(list, [1, 2]) " extend the list with two more items
429 :let i = remove(list, 3) " remove item 3
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000430 :unlet list[3] " idem
Bram Moolenaar13065c42005-01-08 16:08:21 +0000431 :let l = remove(list, 3, -1) " remove items 3 to last item
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000432 :unlet list[3 : ] " idem
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000433 :call filter(list, 'v:val !~ "x"') " remove items with an 'x'
Bram Moolenaar13065c42005-01-08 16:08:21 +0000434
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000435Changing the order of items in a list: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000436 :call sort(list) " sort a list alphabetically
437 :call reverse(list) " reverse the order of items
Bram Moolenaar327aa022014-03-25 18:24:23 +0100438 :call uniq(sort(list)) " sort and remove duplicates
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000439
Bram Moolenaar13065c42005-01-08 16:08:21 +0000440
441For loop ~
442
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100443The |:for| loop executes commands for each item in a List, String or Blob.
444A variable is set to each item in sequence. Example with a List: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000445 :for item in mylist
446 : call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000447 :endfor
448
449This works like: >
450 :let index = 0
451 :while index < len(mylist)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000452 : let item = mylist[index]
453 : :call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000454 : let index = index + 1
455 :endwhile
456
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000457If all you want to do is modify each item in the list then the |map()|
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000458function will be a simpler method than a for loop.
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000459
Bram Moolenaar58b85342016-08-14 19:54:54 +0200460Just like the |:let| command, |:for| also accepts a list of variables. This
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100461requires the argument to be a List of Lists. >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000462 :for [lnum, col] in [[1, 3], [2, 8], [3, 0]]
463 : call Doit(lnum, col)
464 :endfor
465
466This works like a |:let| command is done for each list item. Again, the types
467must remain the same to avoid an error.
468
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000469It is also possible to put remaining items in a List variable: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000470 :for [i, j; rest] in listlist
471 : call Doit(i, j)
472 : if !empty(rest)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000473 : echo "remainder: " .. string(rest)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000474 : endif
475 :endfor
476
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100477For a Blob one byte at a time is used.
478
479For a String one character, including any composing characters, is used as a
480String. Example: >
481 for c in text
482 echo 'This character is ' .. c
483 endfor
484
Bram Moolenaar13065c42005-01-08 16:08:21 +0000485
486List functions ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000487 *E714*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000488Functions that are useful with a List: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000489 :let r = call(funcname, list) " call a function with an argument list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000490 :if empty(list) " check if list is empty
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000491 :let l = len(list) " number of items in list
492 :let big = max(list) " maximum value in list
493 :let small = min(list) " minimum value in list
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000494 :let xs = count(list, 'x') " count nr of times 'x' appears in list
495 :let i = index(list, 'x') " index of first 'x' in list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000496 :let lines = getline(1, 10) " get ten text lines from buffer
497 :call append('$', lines) " append text lines in buffer
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000498 :let list = split("a b c") " create list from items in a string
499 :let string = join(list, ', ') " create string from list items
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000500 :let s = string(list) " String representation of list
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000501 :call map(list, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000502
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000503Don't forget that a combination of features can make things simple. For
504example, to add up all the numbers in a list: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000505 :exe 'let sum = ' .. join(nrlist, '+')
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000506
Bram Moolenaar13065c42005-01-08 16:08:21 +0000507
Bram Moolenaard8b02732005-01-14 21:48:43 +00005081.4 Dictionaries ~
Bram Moolenaard8968242019-01-15 22:51:57 +0100509 *dict* *Dict* *Dictionaries* *Dictionary*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000510A Dictionary is an associative array: Each entry has a key and a value. The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000511entry can be located with the key. The entries are stored without a specific
512ordering.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000513
514
515Dictionary creation ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000516 *E720* *E721* *E722* *E723*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100517A Dictionary is created with a comma-separated list of entries in curly
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000518braces. Each entry has a key and a value, separated by a colon. Each key can
519only appear once. Examples: >
Bram Moolenaard8b02732005-01-14 21:48:43 +0000520 :let mydict = {1: 'one', 2: 'two', 3: 'three'}
521 :let emptydict = {}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000522< *E713* *E716* *E717*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000523A key is always a String. You can use a Number, it will be converted to a
524String automatically. Thus the String '4' and the number 4 will find the same
Bram Moolenaar58b85342016-08-14 19:54:54 +0200525entry. Note that the String '04' and the Number 04 are different, since the
Bram Moolenaard899e512022-05-07 21:54:03 +0100526Number will be converted to the String '4', leading zeros are dropped. The
527empty string can also be used as a key.
Bram Moolenaar5da36052021-12-27 15:39:57 +0000528
529In |Vim9| script literaly keys can be used if the key consists of alphanumeric
530characters, underscore and dash, see |vim9-literal-dict|.
Bram Moolenaar56c860c2019-08-17 20:09:31 +0200531 *literal-Dict* *#{}*
Bram Moolenaar5da36052021-12-27 15:39:57 +0000532To avoid having to put quotes around every key the #{} form can be used in
533legacy script. This does require the key to consist only of ASCII letters,
534digits, '-' and '_'. Example: >
Bram Moolenaar10455d42019-11-21 15:36:18 +0100535 :let mydict = #{zero: 0, one_key: 1, two-key: 2, 333: 3}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +0200536Note that 333 here is the string "333". Empty keys are not possible with #{}.
Bram Moolenaard899e512022-05-07 21:54:03 +0100537In |Vim9| script the #{} form cannot be used because it can be confused with
538the start of a comment.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000539
Bram Moolenaar58b85342016-08-14 19:54:54 +0200540A value can be any expression. Using a Dictionary for a value creates a
Bram Moolenaard8b02732005-01-14 21:48:43 +0000541nested Dictionary: >
542 :let nestdict = {1: {11: 'a', 12: 'b'}, 2: {21: 'c'}}
543
544An extra comma after the last entry is ignored.
545
546
547Accessing entries ~
548
549The normal way to access an entry is by putting the key in square brackets: >
550 :let val = mydict["one"]
551 :let mydict["four"] = 4
552
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000553You can add new entries to an existing Dictionary this way, unlike Lists.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000554
555For keys that consist entirely of letters, digits and underscore the following
556form can be used |expr-entry|: >
557 :let val = mydict.one
558 :let mydict.four = 4
559
560Since an entry can be any type, also a List and a Dictionary, the indexing and
561key lookup can be repeated: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000562 :echo dict.key[idx].key
Bram Moolenaard8b02732005-01-14 21:48:43 +0000563
564
565Dictionary to List conversion ~
566
Bram Moolenaar58b85342016-08-14 19:54:54 +0200567You may want to loop over the entries in a dictionary. For this you need to
Bram Moolenaard8b02732005-01-14 21:48:43 +0000568turn the Dictionary into a List and pass it to |:for|.
569
570Most often you want to loop over the keys, using the |keys()| function: >
571 :for key in keys(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000572 : echo key .. ': ' .. mydict[key]
Bram Moolenaard8b02732005-01-14 21:48:43 +0000573 :endfor
574
575The List of keys is unsorted. You may want to sort them first: >
576 :for key in sort(keys(mydict))
577
578To loop over the values use the |values()| function: >
579 :for v in values(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000580 : echo "value: " .. v
Bram Moolenaard8b02732005-01-14 21:48:43 +0000581 :endfor
582
583If you want both the key and the value use the |items()| function. It returns
Bram Moolenaard47d5222018-12-09 20:43:55 +0100584a List in which each item is a List with two items, the key and the value: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000585 :for [key, value] in items(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000586 : echo key .. ': ' .. value
Bram Moolenaard8b02732005-01-14 21:48:43 +0000587 :endfor
588
589
590Dictionary identity ~
Bram Moolenaar7c626922005-02-07 22:01:03 +0000591 *dict-identity*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000592Just like Lists you need to use |copy()| and |deepcopy()| to make a copy of a
593Dictionary. Otherwise, assignment results in referring to the same
594Dictionary: >
595 :let onedict = {'a': 1, 'b': 2}
596 :let adict = onedict
597 :let adict['a'] = 11
598 :echo onedict['a']
599 11
600
Bram Moolenaarf3bd51a2005-06-14 22:11:18 +0000601Two Dictionaries compare equal if all the key-value pairs compare equal. For
602more info see |list-identity|.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000603
604
605Dictionary modification ~
606 *dict-modification*
607To change an already existing entry of a Dictionary, or to add a new entry,
608use |:let| this way: >
609 :let dict[4] = "four"
610 :let dict['one'] = item
611
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000612Removing an entry from a Dictionary is done with |remove()| or |:unlet|.
613Three ways to remove the entry with key "aaa" from dict: >
614 :let i = remove(dict, 'aaa')
615 :unlet dict.aaa
616 :unlet dict['aaa']
Bram Moolenaard8b02732005-01-14 21:48:43 +0000617
618Merging a Dictionary with another is done with |extend()|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000619 :call extend(adict, bdict)
620This extends adict with all entries from bdict. Duplicate keys cause entries
621in adict to be overwritten. An optional third argument can change this.
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000622Note that the order of entries in a Dictionary is irrelevant, thus don't
623expect ":echo adict" to show the items from bdict after the older entries in
624adict.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000625
626Weeding out entries from a Dictionary can be done with |filter()|: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000627 :call filter(dict, 'v:val =~ "x"')
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000628This removes all entries from "dict" with a value not matching 'x'.
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200629This can also be used to remove all entries: >
630 call filter(dict, 0)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000631
632
633Dictionary function ~
Bram Moolenaar26402cb2013-02-20 21:26:00 +0100634 *Dictionary-function* *self* *E725* *E862*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000635When a function is defined with the "dict" attribute it can be used in a
Bram Moolenaar58b85342016-08-14 19:54:54 +0200636special way with a dictionary. Example: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000637 :function Mylen() dict
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000638 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000639 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000640 :let mydict = {'data': [0, 1, 2, 3], 'len': function("Mylen")}
641 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000642
643This is like a method in object oriented programming. The entry in the
644Dictionary is a |Funcref|. The local variable "self" refers to the dictionary
645the function was invoked from.
646
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000647It is also possible to add a function without the "dict" attribute as a
648Funcref to a Dictionary, but the "self" variable is not available then.
649
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000650 *numbered-function* *anonymous-function*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000651To avoid the extra name for the function it can be defined and directly
652assigned to a Dictionary in this way: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000653 :let mydict = {'data': [0, 1, 2, 3]}
Bram Moolenaar5a5f4592015-04-13 12:43:06 +0200654 :function mydict.len()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000655 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000656 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000657 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000658
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000659The function will then get a number and the value of dict.len is a |Funcref|
Bram Moolenaar58b85342016-08-14 19:54:54 +0200660that references this function. The function can only be used through a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000661|Funcref|. It will automatically be deleted when there is no |Funcref|
662remaining that refers to it.
663
664It is not necessary to use the "dict" attribute for a numbered function.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000665
Bram Moolenaar1affd722010-08-04 17:49:30 +0200666If you get an error for a numbered function, you can find out what it is with
667a trick. Assuming the function is 42, the command is: >
Bram Moolenaar34cc7d82021-09-21 20:09:51 +0200668 :function g:42
Bram Moolenaar1affd722010-08-04 17:49:30 +0200669
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000670
671Functions for Dictionaries ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000672 *E715*
673Functions that can be used with a Dictionary: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000674 :if has_key(dict, 'foo') " TRUE if dict has entry with key "foo"
675 :if empty(dict) " TRUE if dict is empty
676 :let l = len(dict) " number of items in dict
677 :let big = max(dict) " maximum value in dict
678 :let small = min(dict) " minimum value in dict
679 :let xs = count(dict, 'x') " count nr of times 'x' appears in dict
680 :let s = string(dict) " String representation of dict
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000681 :call map(dict, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaard8b02732005-01-14 21:48:43 +0000682
683
Bram Moolenaard8968242019-01-15 22:51:57 +01006841.5 Blobs ~
685 *blob* *Blob* *Blobs* *E978*
Bram Moolenaaraff74912019-03-30 18:11:49 +0100686A Blob is a binary object. It can be used to read an image from a file and
687send it over a channel, for example.
688
689A Blob mostly behaves like a |List| of numbers, where each number has the
690value of an 8-bit byte, from 0 to 255.
Bram Moolenaard8968242019-01-15 22:51:57 +0100691
692
693Blob creation ~
694
695A Blob can be created with a |blob-literal|: >
696 :let b = 0zFF00ED015DAF
Bram Moolenaar0d17f0d2019-01-22 22:20:38 +0100697Dots can be inserted between bytes (pair of hex characters) for readability,
698they don't change the value: >
699 :let b = 0zFF00.ED01.5DAF
Bram Moolenaard8968242019-01-15 22:51:57 +0100700
701A blob can be read from a file with |readfile()| passing the {type} argument
702set to "B", for example: >
703 :let b = readfile('image.png', 'B')
704
705A blob can be read from a channel with the |ch_readblob()| function.
706
707
708Blob index ~
709 *blob-index* *E979*
710A byte in the Blob can be accessed by putting the index in square brackets
711after the Blob. Indexes are zero-based, thus the first byte has index zero. >
712 :let myblob = 0z00112233
713 :let byte = myblob[0] " get the first byte: 0x00
714 :let byte = myblob[2] " get the third byte: 0x22
715
716A negative index is counted from the end. Index -1 refers to the last byte in
717the Blob, -2 to the last but one byte, etc. >
718 :let last = myblob[-1] " get the last byte: 0x33
719
720To avoid an error for an invalid index use the |get()| function. When an item
721is not available it returns -1 or the default value you specify: >
722 :echo get(myblob, idx)
723 :echo get(myblob, idx, 999)
724
725
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100726Blob iteration ~
727
728The |:for| loop executes commands for each byte of a Blob. The loop variable is
729set to each byte in the Blob. Example: >
730 :for byte in 0z112233
731 : call Doit(byte)
732 :endfor
733This calls Doit() with 0x11, 0x22 and 0x33.
734
735
Bram Moolenaard8968242019-01-15 22:51:57 +0100736Blob concatenation ~
737
738Two blobs can be concatenated with the "+" operator: >
739 :let longblob = myblob + 0z4455
740 :let myblob += 0z6677
741
742To change a blob in-place see |blob-modification| below.
743
744
745Part of a blob ~
746
747A part of the Blob can be obtained by specifying the first and last index,
748separated by a colon in square brackets: >
749 :let myblob = 0z00112233
Bram Moolenaard09091d2019-01-17 16:07:22 +0100750 :let shortblob = myblob[1:2] " get 0z1122
Bram Moolenaard8968242019-01-15 22:51:57 +0100751 :let shortblob = myblob[2:-1] " get 0z2233
752
753Omitting the first index is similar to zero. Omitting the last index is
754similar to -1. >
755 :let endblob = myblob[2:] " from item 2 to the end: 0z2233
756 :let shortblob = myblob[2:2] " Blob with one byte: 0z22
757 :let otherblob = myblob[:] " make a copy of the Blob
758
Bram Moolenaard09091d2019-01-17 16:07:22 +0100759If the first index is beyond the last byte of the Blob or the second index is
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100760before the first index, the result is an empty Blob. There is no error
Bram Moolenaard8968242019-01-15 22:51:57 +0100761message.
762
763If the second index is equal to or greater than the length of the list the
764length minus one is used: >
765 :echo myblob[2:8] " result: 0z2233
766
767
768Blob modification ~
Bram Moolenaara2baa732022-02-04 16:09:54 +0000769 *blob-modification* *E1182* *E1184*
Bram Moolenaard8968242019-01-15 22:51:57 +0100770To change a specific byte of a blob use |:let| this way: >
771 :let blob[4] = 0x44
772
773When the index is just one beyond the end of the Blob, it is appended. Any
774higher index is an error.
775
776To change a sequence of bytes the [:] notation can be used: >
777 let blob[1:3] = 0z445566
Bram Moolenaard09091d2019-01-17 16:07:22 +0100778The length of the replaced bytes must be exactly the same as the value
Bram Moolenaard8968242019-01-15 22:51:57 +0100779provided. *E972*
780
781To change part of a blob you can specify the first and last byte to be
Bram Moolenaard09091d2019-01-17 16:07:22 +0100782modified. The value must have the same number of bytes in the range: >
783 :let blob[3:5] = 0z334455
Bram Moolenaard8968242019-01-15 22:51:57 +0100784
785You can also use the functions |add()|, |remove()| and |insert()|.
786
787
788Blob identity ~
789
790Blobs can be compared for equality: >
791 if blob == 0z001122
792And for equal identity: >
793 if blob is otherblob
794< *blob-identity* *E977*
795When variable "aa" is a Blob and you assign it to another variable "bb", both
796variables refer to the same Blob. Then the "is" operator returns true.
797
798When making a copy using [:] or |copy()| the values are the same, but the
799identity is different: >
800 :let blob = 0z112233
801 :let blob2 = blob
802 :echo blob == blob2
803< 1 >
804 :echo blob is blob2
805< 1 >
806 :let blob3 = blob[:]
807 :echo blob == blob3
808< 1 >
809 :echo blob is blob3
810< 0
811
Bram Moolenaard09091d2019-01-17 16:07:22 +0100812Making a copy of a Blob is done with the |copy()| function. Using [:] also
Bram Moolenaard8968242019-01-15 22:51:57 +0100813works, as explained above.
814
815
8161.6 More about variables ~
Bram Moolenaar13065c42005-01-08 16:08:21 +0000817 *more-variables*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818If you need to know the type of a variable or expression, use the |type()|
819function.
820
821When the '!' flag is included in the 'viminfo' option, global variables that
822start with an uppercase letter, and don't contain a lowercase letter, are
823stored in the viminfo file |viminfo-file|.
824
825When the 'sessionoptions' option contains "global", global variables that
826start with an uppercase letter and contain at least one lowercase letter are
827stored in the session file |session-file|.
828
829variable name can be stored where ~
830my_var_6 not
831My_Var_6 session file
832MY_VAR_6 viminfo file
833
834
Bram Moolenaar5da36052021-12-27 15:39:57 +0000835In legacy script it is possible to form a variable name with curly braces, see
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836|curly-braces-names|.
837
838==============================================================================
8392. Expression syntax *expression-syntax*
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000840 *E1143*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841Expression syntax summary, from least to most significant:
842
Bram Moolenaar50ba5262016-09-22 22:33:02 +0200843|expr1| expr2
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200844 expr2 ? expr1 : expr1 if-then-else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200846|expr2| expr3
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200847 expr3 || expr3 ... logical OR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200849|expr3| expr4
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200850 expr4 && expr4 ... logical AND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200852|expr4| expr5
853 expr5 == expr5 equal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 expr5 != expr5 not equal
855 expr5 > expr5 greater than
856 expr5 >= expr5 greater than or equal
857 expr5 < expr5 smaller than
858 expr5 <= expr5 smaller than or equal
859 expr5 =~ expr5 regexp matches
860 expr5 !~ expr5 regexp doesn't match
861
862 expr5 ==? expr5 equal, ignoring case
863 expr5 ==# expr5 equal, match case
864 etc. As above, append ? for ignoring case, # for
865 matching case
866
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100867 expr5 is expr5 same |List|, |Dictionary| or |Blob| instance
868 expr5 isnot expr5 different |List|, |Dictionary| or |Blob|
869 instance
Bram Moolenaarde8866b2005-01-06 23:24:37 +0000870
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200871|expr5| expr6
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200872 expr6 + expr6 ... number addition, list or blob concatenation
873 expr6 - expr6 ... number subtraction
874 expr6 . expr6 ... string concatenation
875 expr6 .. expr6 ... string concatenation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200877|expr6| expr7
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200878 expr7 * expr7 ... number multiplication
879 expr7 / expr7 ... number division
880 expr7 % expr7 ... number modulo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200882|expr7| expr8
Bram Moolenaar5da36052021-12-27 15:39:57 +0000883 <type>expr8 type check and conversion (|Vim9| only)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200885|expr8| expr9
Bram Moolenaar5da36052021-12-27 15:39:57 +0000886 ! expr8 logical NOT
887 - expr8 unary minus
888 + expr8 unary plus
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000889
Bram Moolenaar5da36052021-12-27 15:39:57 +0000890|expr9| expr10
891 expr9[expr1] byte of a String or item of a |List|
892 expr9[expr1 : expr1] substring of a String or sublist of a |List|
893 expr9.name entry in a |Dictionary|
894 expr9(expr1, ...) function call with |Funcref| variable
895 expr9->name(expr1, ...) |method| call
896
897|expr10| number number constant
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000898 "string" string constant, backslash is special
Bram Moolenaard8b02732005-01-14 21:48:43 +0000899 'string' string constant, ' is doubled
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000900 [expr1, ...] |List|
901 {expr1: expr1, ...} |Dictionary|
Bram Moolenaar5da36052021-12-27 15:39:57 +0000902 #{key: expr1, ...} legacy |Dictionary|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 &option option value
904 (expr1) nested expression
905 variable internal variable
906 va{ria}ble internal variable with curly braces
907 $VAR environment variable
908 @r contents of register 'r'
909 function(expr1, ...) function call
910 func{ti}on(expr1, ...) function call with curly braces
Bram Moolenaar5da36052021-12-27 15:39:57 +0000911 {args -> expr1} legacy lambda expression
912 (args) => expr1 Vim9 lambda expression
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913
914
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200915"..." indicates that the operations in this level can be concatenated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916Example: >
917 &nu || &list && &shell == "csh"
918
919All expressions within one level are parsed from left to right.
920
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000921Expression nesting is limited to 1000 levels deep (300 when build with MSVC)
922to avoid running out of stack and crashing. *E1169*
923
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000925expr1 *expr1* *ternary* *falsy-operator* *??* *E109*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926-----
927
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000928The ternary operator: expr2 ? expr1 : expr1
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200929The falsy operator: expr2 ?? expr1
930
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000931Ternary operator ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932
Bram Moolenaar5da36052021-12-27 15:39:57 +0000933In legacy script the expression before the '?' is evaluated to a number. If
934it evaluates to |TRUE|, the result is the value of the expression between the
935'?' and ':', otherwise the result is the value of the expression after the
936':'.
937
938In |Vim9| script the first expression must evaluate to a boolean, see
939|vim9-boolean|.
940
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941Example: >
942 :echo lnum == 1 ? "top" : lnum
943
944Since the first expression is an "expr2", it cannot contain another ?:. The
945other two expressions can, thus allow for recursive use of ?:.
946Example: >
947 :echo lnum == 1 ? "top" : lnum == 1000 ? "last" : lnum
948
949To keep this readable, using |line-continuation| is suggested: >
950 :echo lnum == 1
951 :\ ? "top"
952 :\ : lnum == 1000
953 :\ ? "last"
954 :\ : lnum
955
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000956You should always put a space before the ':', otherwise it can be mistaken for
957use in a variable such as "a:1".
958
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200959Falsy operator ~
960
961This is also known as the "null coalescing operator", but that's too
962complicated, thus we just call it the falsy operator.
963
964The expression before the '??' is evaluated. If it evaluates to
965|truthy|, this is used as the result. Otherwise the expression after the '??'
966is evaluated and used as the result. This is most useful to have a default
967value for an expression that may result in zero or empty: >
968 echo theList ?? 'list is empty'
969 echo GetName() ?? 'unknown'
970
971These are similar, but not equal: >
972 expr2 ?? expr1
973 expr2 ? expr2 : expr1
Bram Moolenaar5da36052021-12-27 15:39:57 +0000974In the second line "expr2" is evaluated twice. And in |Vim9| script the type
975of expr2 before "?" must be a boolean.
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200976
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977
978expr2 and expr3 *expr2* *expr3*
979---------------
980
Bram Moolenaar04186092016-08-29 21:55:35 +0200981expr3 || expr3 .. logical OR *expr-barbar*
982expr4 && expr4 .. logical AND *expr-&&*
983
Bram Moolenaar5da36052021-12-27 15:39:57 +0000984The "||" and "&&" operators take one argument on each side.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
Bram Moolenaar5da36052021-12-27 15:39:57 +0000986In legacy script the arguments are (converted to) Numbers.
987
988In |Vim9| script the values must be boolean, see |vim9-boolean|. Use "!!" to
989convert any type to a boolean.
990
991The result is:
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200992 input output ~
993n1 n2 n1 || n2 n1 && n2 ~
994|FALSE| |FALSE| |FALSE| |FALSE|
995|FALSE| |TRUE| |TRUE| |FALSE|
996|TRUE| |FALSE| |TRUE| |FALSE|
997|TRUE| |TRUE| |TRUE| |TRUE|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998
999The operators can be concatenated, for example: >
1000
1001 &nu || &list && &shell == "csh"
1002
1003Note that "&&" takes precedence over "||", so this has the meaning of: >
1004
1005 &nu || (&list && &shell == "csh")
1006
1007Once the result is known, the expression "short-circuits", that is, further
1008arguments are not evaluated. This is like what happens in C. For example: >
1009
1010 let a = 1
1011 echo a || b
1012
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001013This is valid even if there is no variable called "b" because "a" is |TRUE|,
1014so the result must be |TRUE|. Similarly below: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
1016 echo exists("b") && b == "yes"
1017
1018This is valid whether "b" has been defined or not. The second clause will
1019only be evaluated if "b" has been defined.
1020
1021
Bram Moolenaara2baa732022-02-04 16:09:54 +00001022expr4 *expr4* *E1153*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023-----
1024
1025expr5 {cmp} expr5
1026
Bram Moolenaar5da36052021-12-27 15:39:57 +00001027Compare two expr5 expressions. In legacy script the result is a 0 if it
1028evaluates to false, or 1 if it evaluates to true. In |Vim9| script the result
1029is |true| or |false|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
Bram Moolenaar446cb832008-06-24 21:56:24 +00001031 *expr-==* *expr-!=* *expr->* *expr->=*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 *expr-<* *expr-<=* *expr-=~* *expr-!~*
1033 *expr-==#* *expr-!=#* *expr->#* *expr->=#*
1034 *expr-<#* *expr-<=#* *expr-=~#* *expr-!~#*
1035 *expr-==?* *expr-!=?* *expr->?* *expr->=?*
1036 *expr-<?* *expr-<=?* *expr-=~?* *expr-!~?*
Bram Moolenaar251e1912011-06-19 05:09:16 +02001037 *expr-is* *expr-isnot* *expr-is#* *expr-isnot#*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001038 *expr-is?* *expr-isnot?* *E1072*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 use 'ignorecase' match case ignore case ~
1040equal == ==# ==?
1041not equal != !=# !=?
1042greater than > ># >?
1043greater than or equal >= >=# >=?
1044smaller than < <# <?
1045smaller than or equal <= <=# <=?
1046regexp matches =~ =~# =~?
1047regexp doesn't match !~ !~# !~?
Bram Moolenaar251e1912011-06-19 05:09:16 +02001048same instance is is# is?
1049different instance isnot isnot# isnot?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050
1051Examples:
1052"abc" ==# "Abc" evaluates to 0
1053"abc" ==? "Abc" evaluates to 1
1054"abc" == "Abc" evaluates to 1 if 'ignorecase' is set, 0 otherwise
Bram Moolenaar5da36052021-12-27 15:39:57 +00001055NOTE: In |Vim9| script 'ignorecase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056
Bram Moolenaar13065c42005-01-08 16:08:21 +00001057 *E691* *E692*
Bram Moolenaar01164a62017-11-02 22:58:42 +01001058A |List| can only be compared with a |List| and only "equal", "not equal",
1059"is" and "isnot" can be used. This compares the values of the list,
1060recursively. Ignoring case means case is ignored when comparing item values.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001061
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001062 *E735* *E736*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001063A |Dictionary| can only be compared with a |Dictionary| and only "equal", "not
Bram Moolenaar01164a62017-11-02 22:58:42 +01001064equal", "is" and "isnot" can be used. This compares the key/values of the
1065|Dictionary| recursively. Ignoring case means case is ignored when comparing
1066item values.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001067
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +02001068 *E694*
Bram Moolenaare18dbe82016-07-02 21:42:23 +02001069A |Funcref| can only be compared with a |Funcref| and only "equal", "not
1070equal", "is" and "isnot" can be used. Case is never ignored. Whether
1071arguments or a Dictionary are bound (with a partial) matters. The
1072Dictionaries must also be equal (or the same, in case of "is") and the
1073arguments must be equal (or the same).
1074
1075To compare Funcrefs to see if they refer to the same function, ignoring bound
1076Dictionary and arguments, use |get()| to get the function name: >
1077 if get(Part1, 'name') == get(Part2, 'name')
1078 " Part1 and Part2 refer to the same function
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001079< *E1037*
Bram Moolenaar5e66b422019-01-24 21:58:10 +01001080Using "is" or "isnot" with a |List|, |Dictionary| or |Blob| checks whether
1081the expressions are referring to the same |List|, |Dictionary| or |Blob|
1082instance. A copy of a |List| is different from the original |List|. When
1083using "is" without a |List|, |Dictionary| or |Blob|, it is equivalent to
1084using "equal", using "isnot" equivalent to using "not equal". Except that
1085a different type means the values are different: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001086 echo 4 == '4'
1087 1
1088 echo 4 is '4'
1089 0
1090 echo 0 is []
1091 0
1092"is#"/"isnot#" and "is?"/"isnot?" can be used to match and ignore case.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001093
Bram Moolenaar5da36052021-12-27 15:39:57 +00001094In legacy script, when comparing a String with a Number, the String is
1095converted to a Number, and the comparison is done on Numbers. This means
1096that: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001097 echo 0 == 'x'
1098 1
1099because 'x' converted to a Number is zero. However: >
1100 echo [0] == ['x']
1101 0
1102Inside a List or Dictionary this conversion is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103
Bram Moolenaar5da36052021-12-27 15:39:57 +00001104In |Vim9| script the types must match.
1105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106When comparing two Strings, this is done with strcmp() or stricmp(). This
1107results in the mathematical difference (comparing byte values), not
1108necessarily the alphabetical difference in the local language.
1109
Bram Moolenaar446cb832008-06-24 21:56:24 +00001110When using the operators with a trailing '#', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001111'ignorecase' is off, the comparing is done with strcmp(): case matters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112
1113When using the operators with a trailing '?', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001114'ignorecase' is set, the comparing is done with stricmp(): case is ignored.
1115
1116'smartcase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
1118The "=~" and "!~" operators match the lefthand argument with the righthand
1119argument, which is used as a pattern. See |pattern| for what a pattern is.
1120This matching is always done like 'magic' was set and 'cpoptions' is empty, no
1121matter what the actual value of 'magic' or 'cpoptions' is. This makes scripts
1122portable. To avoid backslashes in the regexp pattern to be doubled, use a
1123single-quote string, see |literal-string|.
1124Since a string is considered to be a single line, a multi-line pattern
1125(containing \n, backslash-n) will not match. However, a literal NL character
1126can be matched like an ordinary character. Examples:
1127 "foo\nbar" =~ "\n" evaluates to 1
1128 "foo\nbar" =~ "\\n" evaluates to 0
1129
1130
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001131expr5 and expr6 *expr5* *expr6* *E1036* *E1051*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132---------------
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001133expr6 + expr6 Number addition, |List| or |Blob| concatenation *expr-+*
1134expr6 - expr6 Number subtraction *expr--*
1135expr6 . expr6 String concatenation *expr-.*
1136expr6 .. expr6 String concatenation *expr-..*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001138For |Lists| only "+" is possible and then both expr6 must be a list. The
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001139result is a new list with the two lists Concatenated.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001140
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001141For String concatenation ".." is preferred, since "." is ambiguous, it is also
1142used for |Dict| member access and floating point numbers.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001143In |Vim9| script and when |vimscript-version| is 2 or higher, using "." is not
1144allowed.
1145
1146In |Vim9| script the arguments of ".." are converted to String for simple
1147types: Number, Float, Special and Bool. For other types |string()| should be
1148used.
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001149
Bram Moolenaar5e66b422019-01-24 21:58:10 +01001150expr7 * expr7 Number multiplication *expr-star*
1151expr7 / expr7 Number division *expr-/*
1152expr7 % expr7 Number modulo *expr-%*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
Bram Moolenaar5da36052021-12-27 15:39:57 +00001154In legacy script, for all operators except "." and "..", Strings are converted
1155to Numbers.
1156
Bram Moolenaard6e256c2011-12-14 15:32:50 +01001157For bitwise operators see |and()|, |or()| and |xor()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158
Bram Moolenaar5da36052021-12-27 15:39:57 +00001159Note the difference between "+" and ".." in legacy script:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 "123" + "456" = 579
Bram Moolenaar5da36052021-12-27 15:39:57 +00001161 "123" .. "456" = "123456"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162
Bram Moolenaar5da36052021-12-27 15:39:57 +00001163Since '..' has the same precedence as '+' and '-', you need to read: >
1164 1 .. 90 + 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001165As: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001166 (1 .. 90) + 90.0
1167That works in legacy script, since the String "190" is automatically converted
1168to the Number 190, which can be added to the Float 90.0. However: >
1169 1 .. 90 * 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001170Should be read as: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001171 1 .. (90 * 90.0)
1172Since '..' has lower precedence than '*'. This does NOT work, since this
Bram Moolenaar446cb832008-06-24 21:56:24 +00001173attempts to concatenate a Float and a String.
1174
1175When dividing a Number by zero the result depends on the value:
1176 0 / 0 = -0x80000000 (like NaN for Float)
1177 >0 / 0 = 0x7fffffff (like positive infinity)
1178 <0 / 0 = -0x7fffffff (like negative infinity)
1179 (before Vim 7.2 it was always 0x7fffffff)
Bram Moolenaara2baa732022-02-04 16:09:54 +00001180In |Vim9| script dividing a number by zero is an error. *E1154*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001181
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001182When 64-bit Number support is enabled:
1183 0 / 0 = -0x8000000000000000 (like NaN for Float)
1184 >0 / 0 = 0x7fffffffffffffff (like positive infinity)
1185 <0 / 0 = -0x7fffffffffffffff (like negative infinity)
1186
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187When the righthand side of '%' is zero, the result is 0.
1188
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001189None of these work for |Funcref|s.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001190
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001191".", ".." and "%" do not work for Float. *E804* *E1035*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001192
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193
1194expr7 *expr7*
1195-----
Bram Moolenaar5da36052021-12-27 15:39:57 +00001196<type>expr8
1197
1198This is only available in |Vim9| script, see |type-casting|.
1199
1200
1201expr8 *expr8*
1202-----
1203! expr8 logical NOT *expr-!*
1204- expr8 unary minus *expr-unary--*
1205+ expr8 unary plus *expr-unary-+*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001207For '!' |TRUE| becomes |FALSE|, |FALSE| becomes |TRUE| (one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208For '-' the sign of the number is changed.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001209For '+' the number is unchanged. Note: "++" has no effect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210
Bram Moolenaar5da36052021-12-27 15:39:57 +00001211In legacy script a String will be converted to a Number first. Note that if
1212the string does not start with a digit you likely don't get what you expect.
1213
1214In |Vim9| script an error is given when "-" or "+" is used and the type is not
1215a number.
1216
1217In |Vim9| script "!" can be used for any type and the result is always a
1218boolean. Use "!!" to convert any type to a boolean, according to whether the
1219value is |falsy|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220
Bram Moolenaar58b85342016-08-14 19:54:54 +02001221These three can be repeated and mixed. Examples:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 !-1 == 0
1223 !!8 == 1
1224 --9 == 9
1225
1226
Bram Moolenaar5da36052021-12-27 15:39:57 +00001227expr9 *expr9*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228-----
Bram Moolenaar5da36052021-12-27 15:39:57 +00001229This expression is either |expr10| or a sequence of the alternatives below,
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001230in any order. E.g., these are all possible:
Bram Moolenaar5da36052021-12-27 15:39:57 +00001231 expr9[expr1].name
1232 expr9.name[expr1]
1233 expr9(expr1, ...)[expr1].name
1234 expr9->(expr1, ...)[expr1]
Bram Moolenaarac92e252019-08-03 21:58:38 +02001235Evaluation is always from left to right.
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001236
Bram Moolenaar5da36052021-12-27 15:39:57 +00001237expr9[expr1] item of String or |List| *expr-[]* *E111*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001238 *E909* *subscript* *E1062*
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001239In legacy Vim script:
Bram Moolenaar5da36052021-12-27 15:39:57 +00001240If expr9 is a Number or String this results in a String that contains the
1241expr1'th single byte from expr9. expr9 is used as a String (a number is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001242automatically converted to a String), expr1 as a Number. This doesn't
Bram Moolenaar207f0092020-08-30 17:20:20 +02001243recognize multibyte encodings, see `byteidx()` for an alternative, or use
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001244`split()` to turn the string into a list of characters. Example, to get the
1245byte under the cursor: >
Bram Moolenaar61660ea2006-04-07 21:40:07 +00001246 :let c = getline(".")[col(".") - 1]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247
Bram Moolenaara2baa732022-02-04 16:09:54 +00001248In |Vim9| script: *E1147* *E1148*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001249If expr9 is a String this results in a String that contains the expr1'th
1250single character (including any composing characters) from expr9. To use byte
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001251indexes use |strpart()|.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001252
1253Index zero gives the first byte or character. Careful: text column numbers
1254start with one!
1255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256If the length of the String is less than the index, the result is an empty
Bram Moolenaar85084ef2016-01-17 22:26:33 +01001257String. A negative index always results in an empty string (reason: backward
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001258compatibility). Use [-1:] to get the last byte or character.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001259In Vim9 script a negative index is used like with a list: count from the end.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001260
Bram Moolenaar5da36052021-12-27 15:39:57 +00001261If expr9 is a |List| then it results the item at index expr1. See |list-index|
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001262for possible index values. If the index is out of range this results in an
Bram Moolenaar58b85342016-08-14 19:54:54 +02001263error. Example: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001264 :let item = mylist[-1] " get last item
1265
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001266Generally, if a |List| index is equal to or higher than the length of the
1267|List|, or more negative than the length of the |List|, this results in an
1268error.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001269
Bram Moolenaard8b02732005-01-14 21:48:43 +00001270
Bram Moolenaar5da36052021-12-27 15:39:57 +00001271expr9[expr1a : expr1b] substring or sublist *expr-[:]*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001272
Bram Moolenaar5da36052021-12-27 15:39:57 +00001273If expr9 is a String this results in the substring with the bytes or
1274characters from expr1a to and including expr1b. expr9 is used as a String,
Bram Moolenaar207f0092020-08-30 17:20:20 +02001275expr1a and expr1b are used as a Number.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001276
1277In legacy Vim script the indexes are byte indexes. This doesn't recognize
Bram Moolenaar5da36052021-12-27 15:39:57 +00001278multibyte encodings, see |byteidx()| for computing the indexes. If expr9 is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001279a Number it is first converted to a String.
1280
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001281In Vim9 script the indexes are character indexes and include composing
1282characters. To use byte indexes use |strpart()|. To use character indexes
1283without including composing characters use |strcharpart()|.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001284
Bram Moolenaar6601b622021-01-13 21:47:15 +01001285The item at index expr1b is included, it is inclusive. For an exclusive index
1286use the |slice()| function.
1287
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001288If expr1a is omitted zero is used. If expr1b is omitted the length of the
1289string minus one is used.
1290
1291A negative number can be used to measure from the end of the string. -1 is
1292the last character, -2 the last but one, etc.
1293
1294If an index goes out of range for the string characters are omitted. If
1295expr1b is smaller than expr1a the result is an empty string.
1296
1297Examples: >
1298 :let c = name[-1:] " last byte of a string
Bram Moolenaar207f0092020-08-30 17:20:20 +02001299 :let c = name[0:-1] " the whole string
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001300 :let c = name[-2:-2] " last but one byte of a string
1301 :let s = line(".")[4:] " from the fifth byte to the end
1302 :let s = s[:-3] " remove last two bytes
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001303<
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001304 *slice*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001305If expr9 is a |List| this results in a new |List| with the items indicated by
Bram Moolenaar58b85342016-08-14 19:54:54 +02001306the indexes expr1a and expr1b. This works like with a String, as explained
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001307just above. Also see |sublist| below. Examples: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001308 :let l = mylist[:3] " first four items
1309 :let l = mylist[4:4] " List with one item
1310 :let l = mylist[:] " shallow copy of a List
1311
Bram Moolenaar5da36052021-12-27 15:39:57 +00001312If expr9 is a |Blob| this results in a new |Blob| with the bytes in the
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001313indexes expr1a and expr1b, inclusive. Examples: >
1314 :let b = 0zDEADBEEF
1315 :let bs = b[1:2] " 0zADBE
Bram Moolenaard09091d2019-01-17 16:07:22 +01001316 :let bs = b[:] " copy of 0zDEADBEEF
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001317
Bram Moolenaar5da36052021-12-27 15:39:57 +00001318Using expr9[expr1] or expr9[expr1a : expr1b] on a |Funcref| results in an
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001319error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320
Bram Moolenaarda440d22016-01-16 21:27:23 +01001321Watch out for confusion between a namespace and a variable followed by a colon
1322for a sublist: >
1323 mylist[n:] " uses variable n
1324 mylist[s:] " uses namespace s:, error!
1325
Bram Moolenaard8b02732005-01-14 21:48:43 +00001326
Bram Moolenaar5da36052021-12-27 15:39:57 +00001327expr9.name entry in a |Dictionary| *expr-entry*
Bram Moolenaara2baa732022-02-04 16:09:54 +00001328 *E1203* *E1229*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001329If expr9 is a |Dictionary| and it is followed by a dot, then the following
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001330name will be used as a key in the |Dictionary|. This is just like:
Bram Moolenaar5da36052021-12-27 15:39:57 +00001331expr9[name].
Bram Moolenaard8b02732005-01-14 21:48:43 +00001332
1333The name must consist of alphanumeric characters, just like a variable name,
1334but it may start with a number. Curly braces cannot be used.
1335
1336There must not be white space before or after the dot.
1337
1338Examples: >
1339 :let dict = {"one": 1, 2: "two"}
Bram Moolenaar68e65602019-05-26 21:33:31 +02001340 :echo dict.one " shows "1"
1341 :echo dict.2 " shows "two"
1342 :echo dict .2 " error because of space before the dot
Bram Moolenaard8b02732005-01-14 21:48:43 +00001343
1344Note that the dot is also used for String concatenation. To avoid confusion
1345always put spaces around the dot for String concatenation.
1346
1347
Bram Moolenaarf10911e2022-01-29 22:20:48 +00001348expr9(expr1, ...) |Funcref| function call *E1085*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001349
Bram Moolenaar5da36052021-12-27 15:39:57 +00001350When expr9 is a |Funcref| type variable, invoke the function it refers to.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001351
1352
Bram Moolenaar5da36052021-12-27 15:39:57 +00001353expr9->name([args]) method call *method* *->*
1354expr9->{lambda}([args])
Bram Moolenaara2baa732022-02-04 16:09:54 +00001355 *E260* *E276* *E1265*
Bram Moolenaar25e42232019-08-04 15:04:10 +02001356For methods that are also available as global functions this is the same as: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001357 name(expr9 [, args])
1358There can also be methods specifically for the type of "expr9".
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001359
Bram Moolenaar51841322019-08-08 21:10:01 +02001360This allows for chaining, passing the value that one method returns to the
1361next method: >
Bram Moolenaar25e42232019-08-04 15:04:10 +02001362 mylist->filter(filterexpr)->map(mapexpr)->sort()->join()
1363<
Bram Moolenaar22a0c0c2019-08-09 23:25:08 +02001364Example of using a lambda: >
Bram Moolenaar02b31112019-08-31 22:16:38 +02001365 GetPercentage()->{x -> x * 100}()->printf('%d%%')
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001366<
Bram Moolenaar5da36052021-12-27 15:39:57 +00001367When using -> the |expr8| operators will be applied first, thus: >
Bram Moolenaar93cf85f2019-08-17 21:36:28 +02001368 -1.234->string()
1369Is equivalent to: >
1370 (-1.234)->string()
1371And NOT: >
1372 -(1.234->string())
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001373
1374What comes after "->" can be a name, a simple expression (not containing any
Bram Moolenaar944697a2022-02-20 19:48:20 +00001375parenthesis), or any expression in parentheses: >
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001376 base->name(args)
1377 base->some.name(args)
1378 base->alist[idx](args)
1379 base->(getFuncRef())(args)
1380Note that in the last call the base is passed to the function resulting from
1381"(getFuncRef())", inserted before "args".
1382
Bram Moolenaar51841322019-08-08 21:10:01 +02001383 *E274*
1384"->name(" must not contain white space. There can be white space before the
1385"->" and after the "(", thus you can split the lines like this: >
1386 mylist
1387 \ ->filter(filterexpr)
1388 \ ->map(mapexpr)
1389 \ ->sort()
1390 \ ->join()
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001391
1392When using the lambda form there must be no white space between the } and the
1393(.
1394
Bram Moolenaar25e42232019-08-04 15:04:10 +02001395
Bram Moolenaar5da36052021-12-27 15:39:57 +00001396 *expr10*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397number
1398------
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01001399number number constant *expr-number*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001401 *0x* *hex-number* *0o* *octal-number* *binary-number*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001402Decimal, Hexadecimal (starting with 0x or 0X), Binary (starting with 0b or 0B)
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02001403and Octal (starting with 0, 0o or 0O).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
Bram Moolenaar446cb832008-06-24 21:56:24 +00001405 *floating-point-format*
1406Floating point numbers can be written in two forms:
1407
1408 [-+]{N}.{M}
Bram Moolenaar8a94d872015-01-25 13:02:57 +01001409 [-+]{N}.{M}[eE][-+]{exp}
Bram Moolenaar446cb832008-06-24 21:56:24 +00001410
1411{N} and {M} are numbers. Both {N} and {M} must be present and can only
Bram Moolenaar6aa57292021-08-14 21:25:52 +02001412contain digits, except that in |Vim9| script in {N} single quotes between
1413digits are ignored.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001414[-+] means there is an optional plus or minus sign.
1415{exp} is the exponent, power of 10.
Bram Moolenaar58b85342016-08-14 19:54:54 +02001416Only a decimal point is accepted, not a comma. No matter what the current
Bram Moolenaar446cb832008-06-24 21:56:24 +00001417locale is.
1418{only when compiled with the |+float| feature}
1419
1420Examples:
1421 123.456
1422 +0.0001
1423 55.0
1424 -0.123
1425 1.234e03
1426 1.0E-6
1427 -3.1416e+88
1428
1429These are INVALID:
1430 3. empty {M}
1431 1e40 missing .{M}
1432
1433Rationale:
1434Before floating point was introduced, the text "123.456" was interpreted as
1435the two numbers "123" and "456", both converted to a string and concatenated,
1436resulting in the string "123456". Since this was considered pointless, and we
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001437could not find it intentionally being used in Vim scripts, this backwards
Bram Moolenaar446cb832008-06-24 21:56:24 +00001438incompatibility was accepted in favor of being able to use the normal notation
1439for floating point numbers.
1440
Bram Moolenaard47d5222018-12-09 20:43:55 +01001441 *float-pi* *float-e*
1442A few useful values to copy&paste: >
1443 :let pi = 3.14159265359
1444 :let e = 2.71828182846
1445Or, if you don't want to write them in as floating-point literals, you can
1446also use functions, like the following: >
1447 :let pi = acos(-1.0)
1448 :let e = exp(1.0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001449<
Bram Moolenaar446cb832008-06-24 21:56:24 +00001450 *floating-point-precision*
1451The precision and range of floating points numbers depends on what "double"
1452means in the library Vim was compiled with. There is no way to change this at
1453runtime.
1454
1455The default for displaying a |Float| is to use 6 decimal places, like using
1456printf("%g", f). You can select something else when using the |printf()|
1457function. Example: >
1458 :echo printf('%.15e', atan(1))
1459< 7.853981633974483e-01
1460
1461
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462
Bram Moolenaar979243b2015-06-26 19:35:49 +02001463string *string* *String* *expr-string* *E114*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464------
1465"string" string constant *expr-quote*
1466
1467Note that double quotes are used.
1468
1469A string constant accepts these special characters:
1470\... three-digit octal number (e.g., "\316")
1471\.. two-digit octal number (must be followed by non-digit)
1472\. one-digit octal number (must be followed by non-digit)
1473\x.. byte specified with two hex numbers (e.g., "\x1f")
1474\x. byte specified with one hex number (must be followed by non-hex char)
1475\X.. same as \x..
1476\X. same as \x.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001477\u.... character specified with up to 4 hex numbers, stored according to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 current value of 'encoding' (e.g., "\u02a4")
Bram Moolenaar541f92d2015-06-19 13:27:23 +02001479\U.... same as \u but allows up to 8 hex numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480\b backspace <BS>
1481\e escape <Esc>
Bram Moolenaar6e649222021-10-04 21:32:54 +01001482\f formfeed 0x0C
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483\n newline <NL>
1484\r return <CR>
1485\t tab <Tab>
1486\\ backslash
1487\" double quote
Bram Moolenaar00a927d2010-05-14 23:24:24 +02001488\<xxx> Special key named "xxx". e.g. "\<C-W>" for CTRL-W. This is for use
Bram Moolenaar58b85342016-08-14 19:54:54 +02001489 in mappings, the 0x80 byte is escaped.
1490 To use the double quote character it must be escaped: "<M-\">".
Bram Moolenaar6e649222021-10-04 21:32:54 +01001491 Don't use <Char-xxxx> to get a UTF-8 character, use \uxxxx as
Bram Moolenaar58b85342016-08-14 19:54:54 +02001492 mentioned above.
Bram Moolenaarfccd93f2020-05-31 22:06:51 +02001493\<*xxx> Like \<xxx> but prepends a modifier instead of including it in the
1494 character. E.g. "\<C-w>" is one character 0x17 while "\<*C-w>" is four
Bram Moolenaarebe9d342020-05-30 21:52:54 +02001495 bytes: 3 for the CTRL modifier and then character "W".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001497Note that "\xff" is stored as the byte 255, which may be invalid in some
1498encodings. Use "\u00ff" to store character 255 according to the current value
1499of 'encoding'.
1500
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501Note that "\000" and "\x00" force the end of the string.
1502
1503
Bram Moolenaard8968242019-01-15 22:51:57 +01001504blob-literal *blob-literal* *E973*
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001505------------
1506
1507Hexadecimal starting with 0z or 0Z, with an arbitrary number of bytes.
1508The sequence must be an even number of hex characters. Example: >
1509 :let b = 0zFF00ED015DAF
1510
1511
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512literal-string *literal-string* *E115*
1513---------------
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001514'string' string constant *expr-'*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515
1516Note that single quotes are used.
1517
Bram Moolenaar58b85342016-08-14 19:54:54 +02001518This string is taken as it is. No backslashes are removed or have a special
Bram Moolenaard8b02732005-01-14 21:48:43 +00001519meaning. The only exception is that two quotes stand for one quote.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001520
1521Single quoted strings are useful for patterns, so that backslashes do not need
Bram Moolenaar58b85342016-08-14 19:54:54 +02001522to be doubled. These two commands are equivalent: >
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001523 if a =~ "\\s*"
1524 if a =~ '\s*'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525
1526
LemonBoy2eaef102022-05-06 13:14:50 +01001527interpolated-string *interp-string* *E256*
1528--------------------
1529$"string" interpolated string constant *expr-$quote*
1530$'string' interpolated literal string constant *expr-$'*
1531
1532Interpolated strings are an extension of the |string| and |literal-string|,
1533allowing the inclusion of Vim script expressions (see |expr1|). Any
1534expression returning a value can be enclosed between curly braces. The value
1535is converted to a string. All the text and results of the expressions
1536are concatenated to make a new string.
1537
1538To include an opening brace '{' or closing brace '}' in the string content
1539double it.
1540
1541Examples: >
1542 let your_name = input("What's your name? ")
1543 echo $"Hello, {your_name}!"
1544 echo $"The square root of 9 is {sqrt(9)}"
1545
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546option *expr-option* *E112* *E113*
1547------
1548&option option value, local value if possible
1549&g:option global option value
1550&l:option local option value
1551
1552Examples: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001553 echo "tabstop is " .. &tabstop
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if &insertmode
1555
1556Any option name can be used here. See |options|. When using the local value
1557and there is no buffer-local or window-local value, the global value is used
1558anyway.
1559
1560
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001561register *expr-register* *@r*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562--------
1563@r contents of register 'r'
1564
1565The result is the contents of the named register, as a single string.
1566Newlines are inserted where required. To get the contents of the unnamed
Bram Moolenaar58b85342016-08-14 19:54:54 +02001567register use @" or @@. See |registers| for an explanation of the available
Bram Moolenaare7566042005-06-17 22:00:15 +00001568registers.
1569
1570When using the '=' register you get the expression itself, not what it
1571evaluates to. Use |eval()| to evaluate it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572
1573
Bram Moolenaara2baa732022-02-04 16:09:54 +00001574nesting *expr-nesting* *E110*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575-------
1576(expr1) nested expression
1577
1578
1579environment variable *expr-env*
1580--------------------
1581$VAR environment variable
1582
1583The String value of any environment variable. When it is not defined, the
1584result is an empty string.
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001585
1586The functions `getenv()` and `setenv()` can also be used and work for
1587environment variables with non-alphanumeric names.
1588The function `environ()` can be used to get a Dict with all environment
1589variables.
1590
1591
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 *expr-env-expand*
1593Note that there is a difference between using $VAR directly and using
1594expand("$VAR"). Using it directly will only expand environment variables that
1595are known inside the current Vim session. Using expand() will first try using
1596the environment variables known inside the current Vim session. If that
1597fails, a shell will be used to expand the variable. This can be slow, but it
1598does expand all variables that the shell knows about. Example: >
Bram Moolenaar34401cc2014-08-29 15:12:19 +02001599 :echo $shell
1600 :echo expand("$shell")
1601The first one probably doesn't echo anything, the second echoes the $shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602variable (if your shell supports it).
1603
1604
Bram Moolenaarf10911e2022-01-29 22:20:48 +00001605internal variable *expr-variable* *E1015* *E1089*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606-----------------
1607variable internal variable
1608See below |internal-variables|.
1609
1610
Bram Moolenaar05159a02005-02-26 23:04:13 +00001611function call *expr-function* *E116* *E118* *E119* *E120*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612-------------
1613function(expr1, ...) function call
1614See below |functions|.
1615
1616
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001617lambda expression *expr-lambda* *lambda*
1618-----------------
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001619{args -> expr1} legacy lambda expression *E451*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001620(args) => expr1 |Vim9| lambda expression
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001621
1622A lambda expression creates a new unnamed function which returns the result of
Bram Moolenaar42ebd062016-07-17 13:35:14 +02001623evaluating |expr1|. Lambda expressions differ from |user-functions| in
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001624the following ways:
1625
16261. The body of the lambda expression is an |expr1| and not a sequence of |Ex|
1627 commands.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +020016282. The prefix "a:" should not be used for arguments. E.g.: >
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001629 :let F = {arg1, arg2 -> arg1 - arg2}
1630 :echo F(5, 2)
1631< 3
1632
1633The arguments are optional. Example: >
1634 :let F = {-> 'error function'}
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001635 :echo F('ignored')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001636< error function
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001637
Bram Moolenaar5da36052021-12-27 15:39:57 +00001638The |Vim9| lambda does not only use a different syntax, it also adds type
1639checking and can be split over multiple lines, see |vim9-lambda|.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001640
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001641 *closure*
1642Lambda expressions can access outer scope variables and arguments. This is
Bram Moolenaar50ba5262016-09-22 22:33:02 +02001643often called a closure. Example where "i" and "a:arg" are used in a lambda
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001644while they already exist in the function scope. They remain valid even after
1645the function returns: >
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001646 :function Foo(arg)
1647 : let i = 3
1648 : return {x -> x + i - a:arg}
1649 :endfunction
1650 :let Bar = Foo(4)
1651 :echo Bar(6)
1652< 5
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001653
Bram Moolenaar388a5d42020-05-26 21:20:45 +02001654Note that the variables must exist in the outer scope before the lambda is
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001655defined for this to work. See also |:func-closure|.
1656
1657Lambda and closure support can be checked with: >
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001658 if has('lambda')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001659
1660Examples for using a lambda expression with |sort()|, |map()| and |filter()|: >
1661 :echo map([1, 2, 3], {idx, val -> val + 1})
1662< [2, 3, 4] >
1663 :echo sort([3,7,2,1,4], {a, b -> a - b})
1664< [1, 2, 3, 4, 7]
1665
1666The lambda expression is also useful for Channel, Job and timer: >
1667 :let timer = timer_start(500,
1668 \ {-> execute("echo 'Handler called'", "")},
1669 \ {'repeat': 3})
1670< Handler called
1671 Handler called
1672 Handler called
1673
Bram Moolenaar90df4b92021-07-07 20:26:08 +02001674Note that it is possible to cause memory to be used and not freed if the
1675closure is referenced by the context it depends on: >
1676 function Function()
1677 let x = 0
1678 let F = {-> x}
1679 endfunction
1680The closure uses "x" from the function scope, and "F" in that same scope
1681refers to the closure. This cycle results in the memory not being freed.
1682Recommendation: don't do this.
1683
1684Notice how execute() is used to execute an Ex command. That's ugly though.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001685In Vim9 script you can use a command block, see |inline-function|.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001686
1687Lambda expressions have internal names like '<lambda>42'. If you get an error
1688for a lambda expression, you can find what it is with the following command: >
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001689 :function <lambda>42
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001690See also: |numbered-function|
1691
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692==============================================================================
Bram Moolenaar6f4754b2022-01-23 12:07:04 +000016933. Internal variable *internal-variables* *E461* *E1001*
Bram Moolenaar4a748032010-09-30 21:47:56 +02001694
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695An internal variable name can be made up of letters, digits and '_'. But it
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001696cannot start with a digit. In legacy script it is also possible to use curly
Bram Moolenaar5da36052021-12-27 15:39:57 +00001697braces, see |curly-braces-names|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001699In legacy script an internal variable is created with the ":let" command
Bram Moolenaar5da36052021-12-27 15:39:57 +00001700|:let|. An internal variable is explicitly destroyed with the ":unlet"
1701command |:unlet|.
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001702Using a name that is not an internal variable or refers to a variable that has
1703been destroyed results in an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704
Bram Moolenaar5da36052021-12-27 15:39:57 +00001705In |Vim9| script `:let` is not used and variables work differently, see |:var|.
1706
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001707 *variable-scope*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708There are several name spaces for variables. Which one is to be used is
1709specified by what is prepended:
1710
Bram Moolenaar5da36052021-12-27 15:39:57 +00001711 (nothing) In a function: local to the function;
1712 in a legacy script: global;
1713 in a |Vim9| script: local to the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714|buffer-variable| b: Local to the current buffer.
1715|window-variable| w: Local to the current window.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001716|tabpage-variable| t: Local to the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717|global-variable| g: Global.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001718|local-variable| l: Local to a function (only in a legacy function)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719|script-variable| s: Local to a |:source|'ed Vim script.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001720|function-argument| a: Function argument (only in a legacy function).
Bram Moolenaar75b81562014-04-06 14:09:13 +02001721|vim-variable| v: Global, predefined by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001723The scope name by itself can be used as a |Dictionary|. For example, to
1724delete all script-local variables: >
Bram Moolenaar8f999f12005-01-25 22:12:55 +00001725 :for k in keys(s:)
1726 : unlet s:[k]
1727 :endfor
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001728
Bram Moolenaar5da36052021-12-27 15:39:57 +00001729Note: in Vim9 script variables can also be local to a block of commands, see
1730|vim9-scopes|.
Bram Moolenaar531da592013-05-06 05:58:55 +02001731 *buffer-variable* *b:var* *b:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732A variable name that is preceded with "b:" is local to the current buffer.
1733Thus you can have several "b:foo" variables, one for each buffer.
1734This kind of variable is deleted when the buffer is wiped out or deleted with
1735|:bdelete|.
1736
1737One local buffer variable is predefined:
Bram Moolenaarbf884932013-04-05 22:26:15 +02001738 *b:changedtick* *changetick*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739b:changedtick The total number of changes to the current buffer. It is
1740 incremented for each change. An undo command is also a change
Bram Moolenaarc024b462019-06-08 18:07:21 +02001741 in this case. Resetting 'modified' when writing the buffer is
1742 also counted.
1743 This can be used to perform an action only when the buffer has
1744 changed. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 :if my_changedtick != b:changedtick
Bram Moolenaar446cb832008-06-24 21:56:24 +00001746 : let my_changedtick = b:changedtick
1747 : call My_Update()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 :endif
Bram Moolenaar3df01732017-02-17 22:47:16 +01001749< You cannot change or delete the b:changedtick variable.
1750
Bram Moolenaar531da592013-05-06 05:58:55 +02001751 *window-variable* *w:var* *w:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752A variable name that is preceded with "w:" is local to the current window. It
1753is deleted when the window is closed.
1754
Bram Moolenaarad3b3662013-05-17 18:14:19 +02001755 *tabpage-variable* *t:var* *t:*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001756A variable name that is preceded with "t:" is local to the current tab page,
1757It is deleted when the tab page is closed. {not available when compiled
Bram Moolenaardb84e452010-08-15 13:50:43 +02001758without the |+windows| feature}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001759
Bram Moolenaar531da592013-05-06 05:58:55 +02001760 *global-variable* *g:var* *g:*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001761Inside functions and in |Vim9| script global variables are accessed with "g:".
1762Omitting this will access a variable local to a function or script. "g:"
1763can also be used in any other place if you like.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764
Bram Moolenaar531da592013-05-06 05:58:55 +02001765 *local-variable* *l:var* *l:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766Inside functions local variables are accessed without prepending anything.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001767But you can also prepend "l:" if you like. However, without prepending "l:"
1768you may run into reserved variable names. For example "count". By itself it
1769refers to "v:count". Using "l:count" you can have a local variable with the
1770same name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771
1772 *script-variable* *s:var*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001773In a legacy Vim script variables starting with "s:" can be used. They cannot
1774be accessed from outside of the scripts, thus are local to the script.
1775In |Vim9| script the "s:" prefix can be omitted, variables are script-local by
1776default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777
1778They can be used in:
1779- commands executed while the script is sourced
1780- functions defined in the script
1781- autocommands defined in the script
1782- functions and autocommands defined in functions and autocommands which were
1783 defined in the script (recursively)
1784- user defined commands defined in the script
1785Thus not in:
1786- other scripts sourced from this one
1787- mappings
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001788- menus
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789- etc.
1790
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001791Script variables can be used to avoid conflicts with global variable names.
1792Take this example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793
1794 let s:counter = 0
1795 function MyCounter()
1796 let s:counter = s:counter + 1
1797 echo s:counter
1798 endfunction
1799 command Tick call MyCounter()
1800
1801You can now invoke "Tick" from any script, and the "s:counter" variable in
1802that script will not be changed, only the "s:counter" in the script where
1803"Tick" was defined is used.
1804
1805Another example that does the same: >
1806
1807 let s:counter = 0
1808 command Tick let s:counter = s:counter + 1 | echo s:counter
1809
1810When calling a function and invoking a user-defined command, the context for
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001811script variables is set to the script where the function or command was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812defined.
1813
1814The script variables are also available when a function is defined inside a
1815function that is defined in a script. Example: >
1816
1817 let s:counter = 0
1818 function StartCounting(incr)
1819 if a:incr
1820 function MyCounter()
1821 let s:counter = s:counter + 1
1822 endfunction
1823 else
1824 function MyCounter()
1825 let s:counter = s:counter - 1
1826 endfunction
1827 endif
1828 endfunction
1829
1830This defines the MyCounter() function either for counting up or counting down
1831when calling StartCounting(). It doesn't matter from where StartCounting() is
1832called, the s:counter variable will be accessible in MyCounter().
1833
1834When the same script is sourced again it will use the same script variables.
1835They will remain valid as long as Vim is running. This can be used to
1836maintain a counter: >
1837
1838 if !exists("s:counter")
1839 let s:counter = 1
1840 echo "script executed for the first time"
1841 else
1842 let s:counter = s:counter + 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001843 echo "script executed " .. s:counter .. " times now"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 endif
1845
1846Note that this means that filetype plugins don't get a different set of script
1847variables for each buffer. Use local buffer variables instead |b:var|.
1848
1849
Bram Moolenaard47d5222018-12-09 20:43:55 +01001850PREDEFINED VIM VARIABLES *vim-variable* *v:var* *v:*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001851 *E963* *E1063*
Bram Moolenaard47d5222018-12-09 20:43:55 +01001852Some variables can be set by the user, but the type cannot be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001854 *v:argv* *argv-variable*
1855v:argv The command line arguments Vim was invoked with. This is a
1856 list of strings. The first item is the Vim command.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00001857 See |v:progpath| for the command with full path.
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001858
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001859 *v:beval_col* *beval_col-variable*
1860v:beval_col The number of the column, over which the mouse pointer is.
1861 This is the byte index in the |v:beval_lnum| line.
1862 Only valid while evaluating the 'balloonexpr' option.
1863
1864 *v:beval_bufnr* *beval_bufnr-variable*
1865v:beval_bufnr The number of the buffer, over which the mouse pointer is. Only
1866 valid while evaluating the 'balloonexpr' option.
1867
1868 *v:beval_lnum* *beval_lnum-variable*
1869v:beval_lnum The number of the line, over which the mouse pointer is. Only
1870 valid while evaluating the 'balloonexpr' option.
1871
1872 *v:beval_text* *beval_text-variable*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001873v:beval_text The text under or after the mouse pointer. Usually a word as
1874 it is useful for debugging a C program. 'iskeyword' applies,
1875 but a dot and "->" before the position is included. When on a
1876 ']' the text before it is used, including the matching '[' and
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001877 word before it. When on a Visual area within one line the
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +02001878 highlighted text is used. Also see |<cexpr>|.
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001879 Only valid while evaluating the 'balloonexpr' option.
1880
1881 *v:beval_winnr* *beval_winnr-variable*
1882v:beval_winnr The number of the window, over which the mouse pointer is. Only
Bram Moolenaar00654022011-02-25 14:42:19 +01001883 valid while evaluating the 'balloonexpr' option. The first
1884 window has number zero (unlike most other places where a
1885 window gets a number).
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001886
Bram Moolenaar511972d2016-06-04 18:09:59 +02001887 *v:beval_winid* *beval_winid-variable*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001888v:beval_winid The |window-ID| of the window, over which the mouse pointer
1889 is. Otherwise like v:beval_winnr.
Bram Moolenaar511972d2016-06-04 18:09:59 +02001890
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001891 *v:char* *char-variable*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001892v:char Argument for evaluating 'formatexpr' and used for the typed
Bram Moolenaar945e2db2010-06-05 17:43:32 +02001893 character when using <expr> in an abbreviation |:map-<expr>|.
Bram Moolenaare6ae6222013-05-21 21:01:10 +02001894 It is also used by the |InsertCharPre| and |InsertEnter| events.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001895
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 *v:charconvert_from* *charconvert_from-variable*
1897v:charconvert_from
1898 The name of the character encoding of a file to be converted.
1899 Only valid while evaluating the 'charconvert' option.
1900
1901 *v:charconvert_to* *charconvert_to-variable*
1902v:charconvert_to
1903 The name of the character encoding of a file after conversion.
1904 Only valid while evaluating the 'charconvert' option.
1905
1906 *v:cmdarg* *cmdarg-variable*
1907v:cmdarg This variable is used for two purposes:
1908 1. The extra arguments given to a file read/write command.
1909 Currently these are "++enc=" and "++ff=". This variable is
1910 set before an autocommand event for a file read/write
1911 command is triggered. There is a leading space to make it
1912 possible to append this variable directly after the
Bram Moolenaar58b85342016-08-14 19:54:54 +02001913 read/write command. Note: The "+cmd" argument isn't
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 included here, because it will be executed anyway.
1915 2. When printing a PostScript file with ":hardcopy" this is
1916 the argument for the ":hardcopy" command. This can be used
1917 in 'printexpr'.
1918
1919 *v:cmdbang* *cmdbang-variable*
1920v:cmdbang Set like v:cmdarg for a file read/write command. When a "!"
1921 was used the value is 1, otherwise it is 0. Note that this
1922 can only be used in autocommands. For user commands |<bang>|
1923 can be used.
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +02001924 *v:collate* *collate-variable*
1925v:collate The current locale setting for collation order of the runtime
1926 environment. This allows Vim scripts to be aware of the
1927 current locale encoding. Technical: it's the value of
1928 LC_COLLATE. When not using a locale the value is "C".
1929 This variable can not be set directly, use the |:language|
1930 command.
1931 See |multi-lang|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932
Drew Vogele30d1022021-10-24 20:35:07 +01001933 *v:colornames*
1934v:colornames A dictionary that maps color names to hex color strings. These
1935 color names can be used with the |highlight-guifg|,
1936 |highlight-guibg|, and |highlight-guisp| parameters. Updating
1937 an entry in v:colornames has no immediate effect on the syntax
1938 highlighting. The highlight commands (probably in a
1939 colorscheme script) need to be re-evaluated in order to use
1940 the updated color values. For example: >
1941
1942 :let v:colornames['fuscia'] = '#cf3ab4'
1943 :let v:colornames['mauve'] = '#915f6d'
1944 :highlight Normal guifg=fuscia guibg=mauve
1945<
1946 This cannot be used to override the |cterm-colors| but it can
1947 be used to override other colors. For example, the X11 colors
1948 defined in the `colors/lists/default.vim` (previously defined
1949 in |rgb.txt|). When defining new color names in a plugin, the
1950 recommended practice is to set a color entry only when it does
1951 not already exist. For example: >
1952
1953 :call extend(v:colornames, {
1954 \ 'fuscia': '#cf3ab4',
1955 \ 'mauve': '#915f6d,
1956 \ }, 'keep')
1957<
Bram Moolenaar113cb512021-11-07 20:27:04 +00001958 Using |extend()| with the 'keep' option updates each color only
Drew Vogele30d1022021-10-24 20:35:07 +01001959 if it did not exist in |v:colornames|. Doing so allows the
1960 user to choose the precise color value for a common name
1961 by setting it in their |.vimrc|.
1962
1963 It is possible to remove entries from this dictionary but
Drew Vogela0fca172021-11-13 10:50:01 +00001964 doing so is NOT recommended, because it is disruptive to
Drew Vogele30d1022021-10-24 20:35:07 +01001965 other scripts. It is also unlikely to achieve the desired
Bram Moolenaar113cb512021-11-07 20:27:04 +00001966 result because the |:colorscheme| and |:highlight| commands will
Drew Vogele30d1022021-10-24 20:35:07 +01001967 both automatically load all `colors/lists/default.vim` color
1968 scripts.
1969
Bram Moolenaar42a45122015-07-10 17:56:23 +02001970 *v:completed_item* *completed_item-variable*
1971v:completed_item
1972 |Dictionary| containing the |complete-items| for the most
1973 recently completed word after |CompleteDone|. The
1974 |Dictionary| is empty if the completion failed.
1975
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 *v:count* *count-variable*
1977v:count The count given for the last Normal mode command. Can be used
Bram Moolenaar58b85342016-08-14 19:54:54 +02001978 to get the count before a mapping. Read-only. Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001979 :map _x :<C-U>echo "the count is " .. v:count<CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980< Note: The <C-U> is required to remove the line range that you
1981 get when typing ':' after a count.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001982 When there are two counts, as in "3d2w", they are multiplied,
1983 just like what happens in the command, "d6w" for the example.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001984 Also used for evaluating the 'formatexpr' option.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02001985 "count" also works, for backwards compatibility, unless
1986 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987
1988 *v:count1* *count1-variable*
1989v:count1 Just like "v:count", but defaults to one when no count is
1990 used.
1991
1992 *v:ctype* *ctype-variable*
1993v:ctype The current locale setting for characters of the runtime
1994 environment. This allows Vim scripts to be aware of the
1995 current locale encoding. Technical: it's the value of
1996 LC_CTYPE. When not using a locale the value is "C".
1997 This variable can not be set directly, use the |:language|
1998 command.
1999 See |multi-lang|.
2000
2001 *v:dying* *dying-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002002v:dying Normally zero. When a deadly signal is caught it's set to
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 one. When multiple signals are caught the number increases.
2004 Can be used in an autocommand to check if Vim didn't
2005 terminate normally. {only works on Unix}
2006 Example: >
2007 :au VimLeave * if v:dying | echo "\nAAAAaaaarrrggghhhh!!!\n" | endif
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02002008< Note: if another deadly signal is caught when v:dying is one,
2009 VimLeave autocommands will not be executed.
2010
Bram Moolenaarf0068c52020-11-30 17:42:10 +01002011 *v:exiting* *exiting-variable*
2012v:exiting Vim exit code. Normally zero, non-zero when something went
2013 wrong. The value is v:null before invoking the |VimLeavePre|
2014 and |VimLeave| autocmds. See |:q|, |:x| and |:cquit|.
2015 Example: >
2016 :au VimLeave * echo "Exit value is " .. v:exiting
2017<
Bram Moolenaar37f4cbd2019-08-23 20:58:45 +02002018 *v:echospace* *echospace-variable*
2019v:echospace Number of screen cells that can be used for an `:echo` message
2020 in the last screen line before causing the |hit-enter-prompt|.
2021 Depends on 'showcmd', 'ruler' and 'columns'. You need to
2022 check 'cmdheight' for whether there are full-width lines
2023 available above the last line.
2024
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 *v:errmsg* *errmsg-variable*
2026v:errmsg Last given error message. It's allowed to set this variable.
2027 Example: >
2028 :let v:errmsg = ""
2029 :silent! next
2030 :if v:errmsg != ""
2031 : ... handle error
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002032< "errmsg" also works, for backwards compatibility, unless
2033 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034
Bram Moolenaar65a54642018-04-28 16:56:53 +02002035 *v:errors* *errors-variable* *assert-return*
Bram Moolenaar683fa182015-11-30 21:38:24 +01002036v:errors Errors found by assert functions, such as |assert_true()|.
Bram Moolenaar43345542015-11-29 17:35:35 +01002037 This is a list of strings.
2038 The assert functions append an item when an assert fails.
Bram Moolenaar65a54642018-04-28 16:56:53 +02002039 The return value indicates this: a one is returned if an item
2040 was added to v:errors, otherwise zero is returned.
Bram Moolenaar43345542015-11-29 17:35:35 +01002041 To remove old results make it empty: >
2042 :let v:errors = []
2043< If v:errors is set to anything but a list it is made an empty
2044 list by the assert function.
2045
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01002046 *v:event* *event-variable*
2047v:event Dictionary containing information about the current
Bram Moolenaar560979e2020-02-04 22:53:05 +01002048 |autocommand|. See the specific event for what it puts in
2049 this dictionary.
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +02002050 The dictionary is emptied when the |autocommand| finishes,
2051 please refer to |dict-identity| for how to get an independent
2052 copy of it. Use |deepcopy()| if you want to keep the
2053 information after the event triggers. Example: >
2054 au TextYankPost * let g:foo = deepcopy(v:event)
2055<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 *v:exception* *exception-variable*
2057v:exception The value of the exception most recently caught and not
2058 finished. See also |v:throwpoint| and |throw-variables|.
2059 Example: >
2060 :try
2061 : throw "oops"
2062 :catch /.*/
Bram Moolenaar54775062019-07-31 21:07:14 +02002063 : echo "caught " .. v:exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 :endtry
2065< Output: "caught oops".
2066
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002067 *v:false* *false-variable*
2068v:false A Number with value zero. Used to put "false" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002069 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002070 When used as a string this evaluates to "v:false". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002071 echo v:false
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002072< v:false ~
2073 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002074 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002075 In |Vim9| script "false" can be used which has a boolean type.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002076
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002077 *v:fcs_reason* *fcs_reason-variable*
2078v:fcs_reason The reason why the |FileChangedShell| event was triggered.
2079 Can be used in an autocommand to decide what to do and/or what
2080 to set v:fcs_choice to. Possible values:
2081 deleted file no longer exists
2082 conflict file contents, mode or timestamp was
2083 changed and buffer is modified
2084 changed file contents has changed
2085 mode mode of file changed
2086 time only file timestamp changed
2087
2088 *v:fcs_choice* *fcs_choice-variable*
2089v:fcs_choice What should happen after a |FileChangedShell| event was
2090 triggered. Can be used in an autocommand to tell Vim what to
2091 do with the affected buffer:
2092 reload Reload the buffer (does not work if
2093 the file was deleted).
Rob Pilling8196e942022-02-11 15:12:10 +00002094 edit Reload the buffer and detect the
2095 values for options such as
2096 'fileformat', 'fileencoding', 'binary'
2097 (does not work if the file was
2098 deleted).
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002099 ask Ask the user what to do, as if there
2100 was no autocommand. Except that when
2101 only the timestamp changed nothing
2102 will happen.
2103 <empty> Nothing, the autocommand should do
2104 everything that needs to be done.
2105 The default is empty. If another (invalid) value is used then
2106 Vim behaves like it is empty, there is no warning message.
2107
Bram Moolenaar4c295022021-05-02 17:19:11 +02002108 *v:fname* *fname-variable*
Bram Moolenaar90df4b92021-07-07 20:26:08 +02002109v:fname When evaluating 'includeexpr': the file name that was
2110 detected. Empty otherwise.
Bram Moolenaar4c295022021-05-02 17:19:11 +02002111
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 *v:fname_in* *fname_in-variable*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002113v:fname_in The name of the input file. Valid while evaluating:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 option used for ~
2115 'charconvert' file to be converted
2116 'diffexpr' original file
2117 'patchexpr' original file
2118 'printexpr' file to be printed
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002119 And set to the swap file name for |SwapExists|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120
2121 *v:fname_out* *fname_out-variable*
2122v:fname_out The name of the output file. Only valid while
2123 evaluating:
2124 option used for ~
2125 'charconvert' resulting converted file (*)
2126 'diffexpr' output of diff
2127 'patchexpr' resulting patched file
2128 (*) When doing conversion for a write command (e.g., ":w
Bram Moolenaar58b85342016-08-14 19:54:54 +02002129 file") it will be equal to v:fname_in. When doing conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 for a read command (e.g., ":e file") it will be a temporary
2131 file and different from v:fname_in.
2132
2133 *v:fname_new* *fname_new-variable*
2134v:fname_new The name of the new version of the file. Only valid while
2135 evaluating 'diffexpr'.
2136
2137 *v:fname_diff* *fname_diff-variable*
2138v:fname_diff The name of the diff (patch) file. Only valid while
2139 evaluating 'patchexpr'.
2140
2141 *v:folddashes* *folddashes-variable*
2142v:folddashes Used for 'foldtext': dashes representing foldlevel of a closed
2143 fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002144 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145
2146 *v:foldlevel* *foldlevel-variable*
2147v:foldlevel Used for 'foldtext': foldlevel of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002148 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149
2150 *v:foldend* *foldend-variable*
2151v:foldend Used for 'foldtext': last line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002152 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153
2154 *v:foldstart* *foldstart-variable*
2155v:foldstart Used for 'foldtext': first line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002156 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157
Bram Moolenaar817a8802013-11-09 01:44:43 +01002158 *v:hlsearch* *hlsearch-variable*
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002159v:hlsearch Variable that indicates whether search highlighting is on.
Bram Moolenaar76440e22014-11-27 19:14:49 +01002160 Setting it makes sense only if 'hlsearch' is enabled which
2161 requires |+extra_search|. Setting this variable to zero acts
Bram Moolenaar705ada12016-01-24 17:56:50 +01002162 like the |:nohlsearch| command, setting it to one acts like >
Bram Moolenaar817a8802013-11-09 01:44:43 +01002163 let &hlsearch = &hlsearch
Bram Moolenaar86ae7202015-07-10 19:31:35 +02002164< Note that the value is restored when returning from a
2165 function. |function-search-undo|.
2166
Bram Moolenaar843ee412004-06-30 16:16:41 +00002167 *v:insertmode* *insertmode-variable*
2168v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand
2169 events. Values:
2170 i Insert mode
2171 r Replace mode
2172 v Virtual Replace mode
2173
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002174 *v:key* *key-variable*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002175v:key Key of the current item of a |Dictionary|. Only valid while
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002176 evaluating the expression used with |map()| and |filter()|.
2177 Read-only.
2178
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 *v:lang* *lang-variable*
2180v:lang The current locale setting for messages of the runtime
2181 environment. This allows Vim scripts to be aware of the
2182 current language. Technical: it's the value of LC_MESSAGES.
2183 The value is system dependent.
2184 This variable can not be set directly, use the |:language|
2185 command.
2186 It can be different from |v:ctype| when messages are desired
2187 in a different language than what is used for character
2188 encoding. See |multi-lang|.
2189
2190 *v:lc_time* *lc_time-variable*
2191v:lc_time The current locale setting for time messages of the runtime
2192 environment. This allows Vim scripts to be aware of the
2193 current language. Technical: it's the value of LC_TIME.
2194 This variable can not be set directly, use the |:language|
2195 command. See |multi-lang|.
2196
2197 *v:lnum* *lnum-variable*
Bram Moolenaar368373e2010-07-19 20:46:22 +02002198v:lnum Line number for the 'foldexpr' |fold-expr|, 'formatexpr' and
2199 'indentexpr' expressions, tab page number for 'guitablabel'
2200 and 'guitabtooltip'. Only valid while one of these
2201 expressions is being evaluated. Read-only when in the
2202 |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203
naohiro ono56200ee2022-01-01 14:59:44 +00002204 *v:maxcol* *maxcol-variable*
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00002205v:maxcol Maximum line length. Depending on where it is used it can be
Bram Moolenaar944697a2022-02-20 19:48:20 +00002206 screen columns, characters or bytes. The value currently is
2207 2147483647 on all systems.
naohiro ono56200ee2022-01-01 14:59:44 +00002208
Bram Moolenaar219b8702006-11-01 14:32:36 +00002209 *v:mouse_win* *mouse_win-variable*
2210v:mouse_win Window number for a mouse click obtained with |getchar()|.
2211 First window has number 1, like with |winnr()|. The value is
2212 zero when there was no mouse button click.
2213
Bram Moolenaar511972d2016-06-04 18:09:59 +02002214 *v:mouse_winid* *mouse_winid-variable*
2215v:mouse_winid Window ID for a mouse click obtained with |getchar()|.
2216 The value is zero when there was no mouse button click.
2217
Bram Moolenaar219b8702006-11-01 14:32:36 +00002218 *v:mouse_lnum* *mouse_lnum-variable*
2219v:mouse_lnum Line number for a mouse click obtained with |getchar()|.
2220 This is the text line number, not the screen line number. The
2221 value is zero when there was no mouse button click.
2222
2223 *v:mouse_col* *mouse_col-variable*
2224v:mouse_col Column number for a mouse click obtained with |getchar()|.
2225 This is the screen column number, like with |virtcol()|. The
2226 value is zero when there was no mouse button click.
2227
Bram Moolenaard09091d2019-01-17 16:07:22 +01002228 *v:none* *none-variable* *None*
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002229v:none An empty String. Used to put an empty item in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002230 |json_encode()|.
Bram Moolenaar2547aa92020-07-26 17:00:44 +02002231 This can also be used as a function argument to use the
2232 default value, see |none-function_argument|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002233 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002234 When used as a string this evaluates to "v:none". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002235 echo v:none
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002236< v:none ~
2237 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002238 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002239 Note that using `== v:none` and `!= v:none` will often give
2240 an error. Instead, use `is v:none` and `isnot v:none` .
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002241
2242 *v:null* *null-variable*
2243v:null An empty String. Used to put "null" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002244 |json_encode()|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002245 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002246 When used as a string this evaluates to "v:null". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002247 echo v:null
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002248< v:null ~
2249 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002250 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002251 In |Vim9| script `null` can be used without "v:".
2252 In some places `v:null` and `null` can be used for a List,
2253 Dict, Job, etc. that is not set. That is slightly different
2254 than an empty List, Dict, etc.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002255
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002256 *v:numbermax* *numbermax-variable*
2257v:numbermax Maximum value of a number.
2258
Bram Moolenaare0e39172021-01-25 21:14:57 +01002259 *v:numbermin* *numbermin-variable*
Bram Moolenaar2346a632021-06-13 19:02:49 +02002260v:numbermin Minimum value of a number (negative).
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002261
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002262 *v:numbersize* *numbersize-variable*
2263v:numbersize Number of bits in a Number. This is normally 64, but on some
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01002264 systems it may be 32.
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002265
Bram Moolenaard812df62008-11-09 12:46:09 +00002266 *v:oldfiles* *oldfiles-variable*
2267v:oldfiles List of file names that is loaded from the |viminfo| file on
2268 startup. These are the files that Vim remembers marks for.
2269 The length of the List is limited by the ' argument of the
2270 'viminfo' option (default is 100).
Bram Moolenaar8d043172014-01-23 14:24:41 +01002271 When the |viminfo| file is not used the List is empty.
Bram Moolenaard812df62008-11-09 12:46:09 +00002272 Also see |:oldfiles| and |c_#<|.
2273 The List can be modified, but this has no effect on what is
2274 stored in the |viminfo| file later. If you use values other
2275 than String this will cause trouble.
Bram Moolenaardb84e452010-08-15 13:50:43 +02002276 {only when compiled with the |+viminfo| feature}
Bram Moolenaard812df62008-11-09 12:46:09 +00002277
Bram Moolenaar53744302015-07-17 17:38:22 +02002278 *v:option_new*
2279v:option_new New value of the option. Valid while executing an |OptionSet|
2280 autocommand.
2281 *v:option_old*
2282v:option_old Old value of the option. Valid while executing an |OptionSet|
Bram Moolenaard7c96872019-06-15 17:12:48 +02002283 autocommand. Depending on the command used for setting and the
2284 kind of option this is either the local old value or the
2285 global old value.
2286 *v:option_oldlocal*
2287v:option_oldlocal
2288 Old local value of the option. Valid while executing an
2289 |OptionSet| autocommand.
2290 *v:option_oldglobal*
2291v:option_oldglobal
2292 Old global value of the option. Valid while executing an
2293 |OptionSet| autocommand.
Bram Moolenaar53744302015-07-17 17:38:22 +02002294 *v:option_type*
2295v:option_type Scope of the set command. Valid while executing an
2296 |OptionSet| autocommand. Can be either "global" or "local"
Bram Moolenaard7c96872019-06-15 17:12:48 +02002297 *v:option_command*
2298v:option_command
2299 Command used to set the option. Valid while executing an
2300 |OptionSet| autocommand.
2301 value option was set via ~
2302 "setlocal" |:setlocal| or ":let l:xxx"
2303 "setglobal" |:setglobal| or ":let g:xxx"
2304 "set" |:set| or |:let|
2305 "modeline" |modeline|
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002306 *v:operator* *operator-variable*
2307v:operator The last operator given in Normal mode. This is a single
2308 character except for commands starting with <g> or <z>,
2309 in which case it is two characters. Best used alongside
2310 |v:prevcount| and |v:register|. Useful if you want to cancel
2311 Operator-pending mode and then use the operator, e.g.: >
2312 :omap O <Esc>:call MyMotion(v:operator)<CR>
2313< The value remains set until another operator is entered, thus
2314 don't expect it to be empty.
2315 v:operator is not set for |:delete|, |:yank| or other Ex
2316 commands.
2317 Read-only.
2318
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 *v:prevcount* *prevcount-variable*
2320v:prevcount The count given for the last but one Normal mode command.
2321 This is the v:count value of the previous command. Useful if
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002322 you want to cancel Visual or Operator-pending mode and then
2323 use the count, e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 :vmap % <Esc>:call MyFilter(v:prevcount)<CR>
2325< Read-only.
2326
Bram Moolenaar05159a02005-02-26 23:04:13 +00002327 *v:profiling* *profiling-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002328v:profiling Normally zero. Set to one after using ":profile start".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002329 See |profiling|.
2330
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 *v:progname* *progname-variable*
2332v:progname Contains the name (with path removed) with which Vim was
Bram Moolenaard38b0552012-04-25 19:07:41 +02002333 invoked. Allows you to do special initialisations for |view|,
2334 |evim| etc., or any other name you might symlink to Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 Read-only.
2336
Bram Moolenaara1706c92014-04-01 19:55:49 +02002337 *v:progpath* *progpath-variable*
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002338v:progpath Contains the command with which Vim was invoked, in a form
2339 that when passed to the shell will run the same Vim executable
2340 as the current one (if $PATH remains unchanged).
2341 Useful if you want to message a Vim server using a
Bram Moolenaara1706c92014-04-01 19:55:49 +02002342 |--remote-expr|.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002343 To get the full path use: >
2344 echo exepath(v:progpath)
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002345< If the command has a relative path it will be expanded to the
2346 full path, so that it still works after `:cd`. Thus starting
2347 "./vim" results in "/home/user/path/to/vim/src/vim".
2348 On Linux and other systems it will always be the full path.
2349 On Mac it may just be "vim" and using exepath() as mentioned
2350 above should be used to get the full path.
Bram Moolenaar08cab962017-03-04 14:37:18 +01002351 On MS-Windows the executable may be called "vim.exe", but the
2352 ".exe" is not added to v:progpath.
Bram Moolenaara1706c92014-04-01 19:55:49 +02002353 Read-only.
2354
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 *v:register* *register-variable*
Bram Moolenaard58e9292011-02-09 17:07:58 +01002356v:register The name of the register in effect for the current normal mode
Bram Moolenaard38b0552012-04-25 19:07:41 +02002357 command (regardless of whether that command actually used a
2358 register). Or for the currently executing normal mode mapping
2359 (use this in custom commands that take a register).
2360 If none is supplied it is the default register '"', unless
2361 'clipboard' contains "unnamed" or "unnamedplus", then it is
2362 '*' or '+'.
Bram Moolenaard58e9292011-02-09 17:07:58 +01002363 Also see |getreg()| and |setreg()|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002365 *v:scrollstart* *scrollstart-variable*
2366v:scrollstart String describing the script or function that caused the
2367 screen to scroll up. It's only set when it is empty, thus the
2368 first reason is remembered. It is set to "Unknown" for a
2369 typed command.
2370 This can be used to find out why your script causes the
2371 hit-enter prompt.
2372
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 *v:servername* *servername-variable*
Bram Moolenaarc2ce52c2017-08-01 18:35:38 +02002374v:servername The resulting registered |client-server-name| if any.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 Read-only.
2376
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002377
Bram Moolenaar446cb832008-06-24 21:56:24 +00002378v:searchforward *v:searchforward* *searchforward-variable*
2379 Search direction: 1 after a forward search, 0 after a
2380 backward search. It is reset to forward when directly setting
2381 the last search pattern, see |quote/|.
2382 Note that the value is restored when returning from a
2383 function. |function-search-undo|.
2384 Read-write.
2385
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 *v:shell_error* *shell_error-variable*
2387v:shell_error Result of the last shell command. When non-zero, the last
2388 shell command had an error. When zero, there was no problem.
2389 This only works when the shell returns the error code to Vim.
2390 The value -1 is often used when the command could not be
2391 executed. Read-only.
2392 Example: >
2393 :!mv foo bar
2394 :if v:shell_error
2395 : echo 'could not rename "foo" to "bar"!'
2396 :endif
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002397< "shell_error" also works, for backwards compatibility, unless
2398 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399
Bram Moolenaar113cb512021-11-07 20:27:04 +00002400 *v:sizeofint* *sizeofint-variable*
2401v:sizeofint Number of bytes in an int. Depends on how Vim was compiled.
2402 This is only useful for deciding whether a test will give the
2403 expected result.
2404
2405 *v:sizeoflong* *sizeoflong-variable*
2406v:sizeoflong Number of bytes in a long. Depends on how Vim was compiled.
2407 This is only useful for deciding whether a test will give the
2408 expected result.
2409
2410 *v:sizeofpointer* *sizeofpointer-variable*
2411v:sizeofpointer Number of bytes in a pointer. Depends on how Vim was compiled.
2412 This is only useful for deciding whether a test will give the
2413 expected result.
2414
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 *v:statusmsg* *statusmsg-variable*
2416v:statusmsg Last given status message. It's allowed to set this variable.
2417
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002418 *v:swapname* *swapname-variable*
2419v:swapname Only valid when executing |SwapExists| autocommands: Name of
2420 the swap file found. Read-only.
2421
2422 *v:swapchoice* *swapchoice-variable*
2423v:swapchoice |SwapExists| autocommands can set this to the selected choice
2424 for handling an existing swap file:
2425 'o' Open read-only
2426 'e' Edit anyway
2427 'r' Recover
2428 'd' Delete swapfile
2429 'q' Quit
2430 'a' Abort
Bram Moolenaar58b85342016-08-14 19:54:54 +02002431 The value should be a single-character string. An empty value
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002432 results in the user being asked, as would happen when there is
2433 no SwapExists autocommand. The default is empty.
2434
Bram Moolenaarb3480382005-12-11 21:33:32 +00002435 *v:swapcommand* *swapcommand-variable*
Bram Moolenaar4770d092006-01-12 23:22:24 +00002436v:swapcommand Normal mode command to be executed after a file has been
Bram Moolenaarb3480382005-12-11 21:33:32 +00002437 opened. Can be used for a |SwapExists| autocommand to have
Bram Moolenaar58b85342016-08-14 19:54:54 +02002438 another Vim open the file and jump to the right place. For
Bram Moolenaarb3480382005-12-11 21:33:32 +00002439 example, when jumping to a tag the value is ":tag tagname\r".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002440 For ":edit +cmd file" the value is ":cmd\r".
Bram Moolenaarb3480382005-12-11 21:33:32 +00002441
Bram Moolenaard823fa92016-08-12 16:29:27 +02002442 *v:t_TYPE* *v:t_bool* *t_bool-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002443v:t_bool Value of |Boolean| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002444 *v:t_channel* *t_channel-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002445v:t_channel Value of |Channel| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002446 *v:t_dict* *t_dict-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002447v:t_dict Value of |Dictionary| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002448 *v:t_float* *t_float-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002449v:t_float Value of |Float| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002450 *v:t_func* *t_func-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002451v:t_func Value of |Funcref| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002452 *v:t_job* *t_job-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002453v:t_job Value of |Job| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002454 *v:t_list* *t_list-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002455v:t_list Value of |List| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002456 *v:t_none* *t_none-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002457v:t_none Value of |None| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002458 *v:t_number* *t_number-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002459v:t_number Value of |Number| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002460 *v:t_string* *t_string-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002461v:t_string Value of |String| type. Read-only. See: |type()|
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002462 *v:t_blob* *t_blob-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002463v:t_blob Value of |Blob| type. Read-only. See: |type()|
Bram Moolenaarf562e722016-07-19 17:25:25 +02002464
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 *v:termresponse* *termresponse-variable*
2466v:termresponse The escape sequence returned by the terminal for the |t_RV|
Bram Moolenaar58b85342016-08-14 19:54:54 +02002467 termcap entry. It is set when Vim receives an escape sequence
Bram Moolenaarb4230122019-05-30 18:40:53 +02002468 that starts with ESC [ or CSI, then '>' or '?' and ends in a
2469 'c', with only digits and ';' in between.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 When this option is set, the TermResponse autocommand event is
2471 fired, so that you can react to the response from the
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02002472 terminal. You can use |terminalprops()| to see what Vim
2473 figured out about the terminal.
Bram Moolenaarb4230122019-05-30 18:40:53 +02002474 The response from a new xterm is: "<Esc>[> Pp ; Pv ; Pc c". Pp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 is the terminal type: 0 for vt100 and 1 for vt220. Pv is the
2476 patch level (since this was introduced in patch 95, it's
Bram Moolenaarfa3b7232021-12-24 13:18:38 +00002477 always 95 or higher). Pc is always zero.
2478 If Pv is 141 or higher then Vim will try to request terminal
2479 codes. This only works with xterm |xterm-codes|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 {only when compiled with |+termresponse| feature}
2481
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002482 *v:termblinkresp*
2483v:termblinkresp The escape sequence returned by the terminal for the |t_RC|
2484 termcap entry. This is used to find out whether the terminal
2485 cursor is blinking. This is used by |term_getcursor()|.
2486
2487 *v:termstyleresp*
2488v:termstyleresp The escape sequence returned by the terminal for the |t_RS|
2489 termcap entry. This is used to find out what the shape of the
2490 cursor is. This is used by |term_getcursor()|.
2491
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002492 *v:termrbgresp*
2493v:termrbgresp The escape sequence returned by the terminal for the |t_RB|
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002494 termcap entry. This is used to find out what the terminal
2495 background color is, see 'background'.
2496
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002497 *v:termrfgresp*
2498v:termrfgresp The escape sequence returned by the terminal for the |t_RF|
2499 termcap entry. This is used to find out what the terminal
2500 foreground color is.
2501
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002502 *v:termu7resp*
2503v:termu7resp The escape sequence returned by the terminal for the |t_u7|
2504 termcap entry. This is used to find out what the terminal
2505 does with ambiguous width characters, see 'ambiwidth'.
2506
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002507 *v:testing* *testing-variable*
Bram Moolenaar8e8df252016-05-25 21:23:21 +02002508v:testing Must be set before using `test_garbagecollect_now()`.
Bram Moolenaar036986f2017-03-16 17:41:02 +01002509 Also, when set certain error messages won't be shown for 2
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002510 seconds. (e.g. "'dictionary' option is empty")
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002511
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 *v:this_session* *this_session-variable*
2513v:this_session Full filename of the last loaded or saved session file. See
2514 |:mksession|. It is allowed to set this variable. When no
2515 session file has been saved, this variable is empty.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002516 "this_session" also works, for backwards compatibility, unless
2517 |scriptversion| is 3 or higher
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518
2519 *v:throwpoint* *throwpoint-variable*
2520v:throwpoint The point where the exception most recently caught and not
Bram Moolenaar58b85342016-08-14 19:54:54 +02002521 finished was thrown. Not set when commands are typed. See
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 also |v:exception| and |throw-variables|.
2523 Example: >
2524 :try
2525 : throw "oops"
2526 :catch /.*/
2527 : echo "Exception from" v:throwpoint
2528 :endtry
2529< Output: "Exception from test.vim, line 2"
2530
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002531 *v:true* *true-variable*
2532v:true A Number with value one. Used to put "true" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002533 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002534 When used as a string this evaluates to "v:true". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002535 echo v:true
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002536< v:true ~
2537 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002538 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002539 In |Vim9| script "true" can be used which has a boolean type.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002540 *v:val* *val-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002541v:val Value of the current item of a |List| or |Dictionary|. Only
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002542 valid while evaluating the expression used with |map()| and
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002543 |filter()|. Read-only.
2544
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 *v:version* *version-variable*
2546v:version Version number of Vim: Major version number times 100 plus
Bram Moolenaar9b283522019-06-17 22:19:33 +02002547 minor version number. Version 5.0 is 500. Version 5.1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 is 501. Read-only. "version" also works, for backwards
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002549 compatibility, unless |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 Use |has()| to check if a certain patch was included, e.g.: >
Bram Moolenaar6716d9a2014-04-02 12:12:08 +02002551 if has("patch-7.4.123")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552< Note that patch numbers are specific to the version, thus both
2553 version 5.0 and 5.1 may have a patch 123, but these are
2554 completely different.
2555
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002556 *v:versionlong* *versionlong-variable*
Bram Moolenaar9b283522019-06-17 22:19:33 +02002557v:versionlong Like v:version, but also including the patchlevel in the last
2558 four digits. Version 8.1 with patch 123 has value 8010123.
2559 This can be used like this: >
2560 if v:versionlong >= 8010123
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002561< However, if there are gaps in the list of patches included
2562 this will not work well. This can happen if a recent patch
2563 was included into an older version, e.g. for a security fix.
2564 Use the has() function to make sure the patch is actually
2565 included.
2566
Bram Moolenaar14735512016-03-26 21:00:08 +01002567 *v:vim_did_enter* *vim_did_enter-variable*
2568v:vim_did_enter Zero until most of startup is done. It is set to one just
2569 before |VimEnter| autocommands are triggered.
2570
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 *v:warningmsg* *warningmsg-variable*
2572v:warningmsg Last given warning message. It's allowed to set this variable.
2573
Bram Moolenaar727c8762010-10-20 19:17:48 +02002574 *v:windowid* *windowid-variable*
2575v:windowid When any X11 based GUI is running or when running in a
2576 terminal and Vim connects to the X server (|-X|) this will be
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02002577 set to the window ID.
2578 When an MS-Windows GUI is running this will be set to the
2579 window handle.
2580 Otherwise the value is zero.
Bram Moolenaar7571d552016-08-18 22:54:46 +02002581 Note: for windows inside Vim use |winnr()| or |win_getid()|,
2582 see |window-ID|.
Bram Moolenaar727c8762010-10-20 19:17:48 +02002583
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584==============================================================================
25854. Builtin Functions *functions*
2586
2587See |function-list| for a list grouped by what the function is used for.
2588
Bram Moolenaar1cae5a02021-12-27 21:28:34 +00002589The alphabetic list of all builtin functions and details are in a separate
2590help file: |builtin-functions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591
2592==============================================================================
25935. Defining functions *user-functions*
2594
2595New functions can be defined. These can be called just like builtin
2596functions. The function executes a sequence of Ex commands. Normal mode
2597commands can be executed with the |:normal| command.
2598
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002599This section is about the legacy functions. For the Vim9 functions, which
2600execute much faster, support type checking and more, see |vim9.txt|.
2601
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602The function name must start with an uppercase letter, to avoid confusion with
2603builtin functions. To prevent from using the same name in different scripts
2604avoid obvious, short names. A good habit is to start the function name with
2605the name of the script, e.g., "HTMLcolor()".
2606
Bram Moolenaar5da36052021-12-27 15:39:57 +00002607In legacy script it is also possible to use curly braces, see
2608|curly-braces-names|.
2609The |autoload| facility is useful to define a function only when it's called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611 *local-function*
Bram Moolenaar5da36052021-12-27 15:39:57 +00002612A function local to a legacy script must start with "s:". A local script
2613function can only be called from within the script and from functions, user
2614commands and autocommands defined in the script. It is also possible to call
2615the function from a mapping defined in the script, but then |<SID>| must be
2616used instead of "s:" when the mapping is expanded outside of the script.
Bram Moolenaarbcb98982014-05-01 14:08:19 +02002617There are only script-local functions, no buffer-local or window-local
2618functions.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619
Bram Moolenaar5da36052021-12-27 15:39:57 +00002620In |Vim9| script functions are local to the script by default, prefix "g:" to
2621define a global function.
2622
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00002623 *:fu* *:function* *E128* *E129* *E123* *E454*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624:fu[nction] List all functions and their arguments.
2625
2626:fu[nction] {name} List function {name}.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002627 {name} can also be a |Dictionary| entry that is a
2628 |Funcref|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002629 :function dict.init
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002630
2631:fu[nction] /{pattern} List functions with a name matching {pattern}.
2632 Example that lists all functions ending with "File": >
2633 :function /File$
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002634<
2635 *:function-verbose*
2636When 'verbose' is non-zero, listing a function will also display where it was
2637last defined. Example: >
2638
2639 :verbose function SetFileTypeSH
2640 function SetFileTypeSH(name)
2641 Last set from /usr/share/vim/vim-7.0/filetype.vim
2642<
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002643See |:verbose-cmd| for more information.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002644
Bram Moolenaarbcb98982014-05-01 14:08:19 +02002645 *E124* *E125* *E853* *E884*
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002646:fu[nction][!] {name}([arguments]) [range] [abort] [dict] [closure]
Bram Moolenaar01164a62017-11-02 22:58:42 +01002647 Define a new function by the name {name}. The body of
2648 the function follows in the next lines, until the
2649 matching |:endfunction|.
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002650
Bram Moolenaar01164a62017-11-02 22:58:42 +01002651 The name must be made of alphanumeric characters and
2652 '_', and must start with a capital or "s:" (see
2653 above). Note that using "b:" or "g:" is not allowed.
2654 (since patch 7.4.260 E884 is given if the function
2655 name has a colon in the name, e.g. for "foo:bar()".
2656 Before that patch no error was given).
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002657
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002658 {name} can also be a |Dictionary| entry that is a
2659 |Funcref|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002660 :function dict.init(arg)
Bram Moolenaar58b85342016-08-14 19:54:54 +02002661< "dict" must be an existing dictionary. The entry
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002662 "init" is added if it didn't exist yet. Otherwise [!]
Bram Moolenaar58b85342016-08-14 19:54:54 +02002663 is required to overwrite an existing function. The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002664 result is a |Funcref| to a numbered function. The
2665 function can only be used with a |Funcref| and will be
2666 deleted if there are no more references to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 *E127* *E122*
2668 When a function by this name already exists and [!] is
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01002669 not used an error message is given. There is one
2670 exception: When sourcing a script again, a function
2671 that was previously defined in that script will be
2672 silently replaced.
2673 When [!] is used, an existing function is silently
2674 replaced. Unless it is currently being executed, that
2675 is an error.
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002676 NOTE: Use ! wisely. If used without care it can cause
2677 an existing function to be replaced unexpectedly,
2678 which is hard to debug.
Bram Moolenaar388a5d42020-05-26 21:20:45 +02002679 NOTE: In Vim9 script script-local functions cannot be
2680 deleted or redefined.
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002681
2682 For the {arguments} see |function-argument|.
2683
Bram Moolenaar8d043172014-01-23 14:24:41 +01002684 *:func-range* *a:firstline* *a:lastline*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 When the [range] argument is added, the function is
2686 expected to take care of a range itself. The range is
2687 passed as "a:firstline" and "a:lastline". If [range]
2688 is excluded, ":{range}call" will call the function for
2689 each line in the range, with the cursor on the start
2690 of each line. See |function-range-example|.
Bram Moolenaar2df58b42012-11-28 18:21:11 +01002691 The cursor is still moved to the first line of the
2692 range, as is the case with all Ex commands.
Bram Moolenaar8d043172014-01-23 14:24:41 +01002693 *:func-abort*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 When the [abort] argument is added, the function will
2695 abort as soon as an error is detected.
Bram Moolenaar8d043172014-01-23 14:24:41 +01002696 *:func-dict*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002697 When the [dict] argument is added, the function must
Bram Moolenaar58b85342016-08-14 19:54:54 +02002698 be invoked through an entry in a |Dictionary|. The
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002699 local variable "self" will then be set to the
2700 dictionary. See |Dictionary-function|.
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002701 *:func-closure* *E932*
2702 When the [closure] argument is added, the function
2703 can access variables and arguments from the outer
2704 scope. This is usually called a closure. In this
2705 example Bar() uses "x" from the scope of Foo(). It
2706 remains referenced even after Foo() returns: >
2707 :function! Foo()
2708 : let x = 0
2709 : function! Bar() closure
2710 : let x += 1
2711 : return x
2712 : endfunction
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002713 : return funcref('Bar')
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002714 :endfunction
2715
2716 :let F = Foo()
2717 :echo F()
2718< 1 >
2719 :echo F()
2720< 2 >
2721 :echo F()
2722< 3
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723
Bram Moolenaar446cb832008-06-24 21:56:24 +00002724 *function-search-undo*
Bram Moolenaar98692072006-02-04 00:57:42 +00002725 The last used search pattern and the redo command "."
Bram Moolenaar446cb832008-06-24 21:56:24 +00002726 will not be changed by the function. This also
2727 implies that the effect of |:nohlsearch| is undone
2728 when the function returns.
Bram Moolenaar98692072006-02-04 00:57:42 +00002729
Bram Moolenaara2baa732022-02-04 16:09:54 +00002730 *:endf* *:endfunction* *E126* *E193* *W22* *E1151*
Bram Moolenaar663bb232017-06-22 19:12:10 +02002731:endf[unction] [argument]
2732 The end of a function definition. Best is to put it
2733 on a line by its own, without [argument].
2734
2735 [argument] can be:
2736 | command command to execute next
2737 \n command command to execute next
2738 " comment always ignored
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002739 anything else ignored, warning given when
2740 'verbose' is non-zero
Bram Moolenaar663bb232017-06-22 19:12:10 +02002741 The support for a following command was added in Vim
2742 8.0.0654, before that any argument was silently
2743 ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002745 To be able to define a function inside an `:execute`
2746 command, use line breaks instead of |:bar|: >
2747 :exe "func Foo()\necho 'foo'\nendfunc"
2748<
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002749 *:delf* *:delfunction* *E131* *E933* *E1084*
Bram Moolenaar663bb232017-06-22 19:12:10 +02002750:delf[unction][!] {name}
2751 Delete function {name}.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002752 {name} can also be a |Dictionary| entry that is a
2753 |Funcref|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002754 :delfunc dict.init
Bram Moolenaar58b85342016-08-14 19:54:54 +02002755< This will remove the "init" entry from "dict". The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002756 function is deleted if there are no more references to
2757 it.
Bram Moolenaar663bb232017-06-22 19:12:10 +02002758 With the ! there is no error if the function does not
2759 exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 *:retu* *:return* *E133*
2761:retu[rn] [expr] Return from a function. When "[expr]" is given, it is
2762 evaluated and returned as the result of the function.
2763 If "[expr]" is not given, the number 0 is returned.
2764 When a function ends without an explicit ":return",
2765 the number 0 is returned.
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002766 In a :def function *E1095* is given if unreachable
2767 code follows after the `:return`.
2768 In legacy script there is no check for unreachable
2769 lines, thus there is no warning if commands follow
2770 `:return`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771
2772 If the ":return" is used after a |:try| but before the
2773 matching |:finally| (if present), the commands
2774 following the ":finally" up to the matching |:endtry|
2775 are executed first. This process applies to all
2776 nested ":try"s inside the function. The function
2777 returns at the outermost ":endtry".
2778
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002779 *function-argument* *a:var*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002780An argument can be defined by giving its name. In the function this can then
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002781be used as "a:name" ("a:" for argument).
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002782 *a:0* *a:1* *a:000* *E740* *...*
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002783Up to 20 arguments can be given, separated by commas. After the named
2784arguments an argument "..." can be specified, which means that more arguments
2785may optionally be following. In the function the extra arguments can be used
2786as "a:1", "a:2", etc. "a:0" is set to the number of extra arguments (which
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002787can be 0). "a:000" is set to a |List| that contains these arguments. Note
2788that "a:1" is the same as "a:000[0]".
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002789 *E742* *E1090*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00002790The a: scope and the variables in it cannot be changed, they are fixed.
Bram Moolenaar069c1e72016-07-15 21:25:08 +02002791However, if a composite type is used, such as |List| or |Dictionary| , you can
2792change their contents. Thus you can pass a |List| to a function and have the
2793function add an item to it. If you want to make sure the function cannot
2794change a |List| or |Dictionary| use |:lockvar|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002796It is also possible to define a function without any arguments. You must
Bram Moolenaar01164a62017-11-02 22:58:42 +01002797still supply the () then.
2798
Bram Moolenaar98ef2332018-03-18 14:44:37 +01002799It is allowed to define another function inside a function body.
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002800
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002801 *optional-function-argument*
2802You can provide default values for positional named arguments. This makes
2803them optional for function calls. When a positional argument is not
2804specified at a call, the default expression is used to initialize it.
Bram Moolenaard1caa942020-04-10 22:10:56 +02002805This only works for functions declared with `:function` or `:def`, not for
2806lambda expressions |expr-lambda|.
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002807
2808Example: >
2809 function Something(key, value = 10)
Bram Moolenaar8aad88d2019-05-12 13:53:50 +02002810 echo a:key .. ": " .. a:value
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002811 endfunction
2812 call Something('empty') "empty: 10"
Bram Moolenaar8aad88d2019-05-12 13:53:50 +02002813 call Something('key', 20) "key: 20"
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002814
2815The argument default expressions are evaluated at the time of the function
2816call, not definition. Thus it is possible to use an expression which is
Bram Moolenaar68e65602019-05-26 21:33:31 +02002817invalid the moment the function is defined. The expressions are also only
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002818evaluated when arguments are not specified during a call.
Bram Moolenaar2547aa92020-07-26 17:00:44 +02002819 *none-function_argument*
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002820You can pass |v:none| to use the default expression. Note that this means you
2821cannot pass v:none as an ordinary value when an argument has a default
2822expression.
2823
2824Example: >
2825 function Something(a = 10, b = 20, c = 30)
2826 endfunction
2827 call Something(1, v:none, 3) " b = 20
2828<
2829 *E989*
2830Optional arguments with default expressions must occur after any mandatory
2831arguments. You can use "..." after all optional named arguments.
2832
2833It is possible for later argument defaults to refer to prior arguments,
2834but not the other way around. They must be prefixed with "a:", as with all
2835arguments.
2836
2837Example that works: >
2838 :function Okay(mandatory, optional = a:mandatory)
2839 :endfunction
2840Example that does NOT work: >
2841 :function NoGood(first = a:second, second = 10)
2842 :endfunction
2843<
Bram Moolenaard1caa942020-04-10 22:10:56 +02002844When not using "...", the number of arguments in a function call must be at
2845least equal to the number of mandatory named arguments. When using "...", the
2846number of arguments may be larger than the total of mandatory and optional
2847arguments.
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002848
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002849 *local-variables*
Bram Moolenaar069c1e72016-07-15 21:25:08 +02002850Inside a function local variables can be used. These will disappear when the
2851function returns. Global variables need to be accessed with "g:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852
2853Example: >
2854 :function Table(title, ...)
2855 : echohl Title
2856 : echo a:title
2857 : echohl None
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002858 : echo a:0 .. " items:"
Bram Moolenaar677ee682005-01-27 14:41:15 +00002859 : for s in a:000
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002860 : echon ' ' .. s
Bram Moolenaar677ee682005-01-27 14:41:15 +00002861 : endfor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 :endfunction
2863
2864This function can then be called with: >
Bram Moolenaar677ee682005-01-27 14:41:15 +00002865 call Table("Table", "line1", "line2")
2866 call Table("Empty Table")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002868To return more than one value, return a |List|: >
2869 :function Compute(n1, n2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 : if a:n2 == 0
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002871 : return ["fail", 0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 : endif
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002873 : return ["ok", a:n1 / a:n2]
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 :endfunction
2875
2876This function can then be called with: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002877 :let [success, div] = Compute(102, 6)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 :if success == "ok"
2879 : echo div
2880 :endif
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002881<
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00002882 *:cal* *:call* *E107*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883:[range]cal[l] {name}([arguments])
2884 Call a function. The name of the function and its arguments
Bram Moolenaar68e65602019-05-26 21:33:31 +02002885 are as specified with `:function`. Up to 20 arguments can be
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002886 used. The returned value is discarded.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002887 In |Vim9| script using `:call` is optional, these two lines do
2888 the same thing: >
2889 call SomeFunc(arg)
2890 SomeFunc(arg)
2891< Without a range and for functions that accept a range, the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 function is called once. When a range is given the cursor is
2893 positioned at the start of the first line before executing the
2894 function.
2895 When a range is given and the function doesn't handle it
2896 itself, the function is executed for each line in the range,
2897 with the cursor in the first column of that line. The cursor
2898 is left at the last line (possibly moved by the last function
Bram Moolenaar58b85342016-08-14 19:54:54 +02002899 call). The arguments are re-evaluated for each line. Thus
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 this works:
2901 *function-range-example* >
2902 :function Mynumber(arg)
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002903 : echo line(".") .. " " .. a:arg
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 :endfunction
2905 :1,5call Mynumber(getline("."))
2906<
2907 The "a:firstline" and "a:lastline" are defined anyway, they
2908 can be used to do something different at the start or end of
2909 the range.
2910
2911 Example of a function that handles the range itself: >
2912
2913 :function Cont() range
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002914 : execute (a:firstline + 1) .. "," .. a:lastline .. 's/^/\t\\ '
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 :endfunction
2916 :4,8call Cont()
2917<
2918 This function inserts the continuation character "\" in front
2919 of all the lines in the range, except the first one.
2920
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002921 When the function returns a composite value it can be further
2922 dereferenced, but the range will not be used then. Example: >
2923 :4,8call GetDict().method()
2924< Here GetDict() gets the range but method() does not.
2925
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00002926 *E117*
2927When a function cannot be found the error "E117: Unknown function" will be
2928given. If the function was using an autoload path or an autoload import and
2929the script is a |Vim9| script, this may also be caused by the function not
2930being exported.
2931
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 *E132*
2933The recursiveness of user functions is restricted with the |'maxfuncdepth'|
2934option.
2935
Bram Moolenaar25e42232019-08-04 15:04:10 +02002936It is also possible to use `:eval`. It does not support a range, but does
2937allow for method chaining, e.g.: >
2938 eval GetList()->Filter()->append('$')
2939
Bram Moolenaar088e8e32019-08-08 22:15:18 +02002940A function can also be called as part of evaluating an expression or when it
2941is used as a method: >
2942 let x = GetList()
2943 let y = GetList()->Filter()
2944
Bram Moolenaar7c626922005-02-07 22:01:03 +00002945
2946AUTOMATICALLY LOADING FUNCTIONS ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 *autoload-functions*
2948When using many or large functions, it's possible to automatically define them
Bram Moolenaar7c626922005-02-07 22:01:03 +00002949only when they are used. There are two methods: with an autocommand and with
2950the "autoload" directory in 'runtimepath'.
2951
2952
2953Using an autocommand ~
2954
Bram Moolenaar05159a02005-02-26 23:04:13 +00002955This is introduced in the user manual, section |41.14|.
2956
Bram Moolenaar7c626922005-02-07 22:01:03 +00002957The autocommand is useful if you have a plugin that is a long Vim script file.
Bram Moolenaar68e65602019-05-26 21:33:31 +02002958You can define the autocommand and quickly quit the script with `:finish`.
Bram Moolenaar58b85342016-08-14 19:54:54 +02002959That makes Vim startup faster. The autocommand should then load the same file
Bram Moolenaar68e65602019-05-26 21:33:31 +02002960again, setting a variable to skip the `:finish` command.
Bram Moolenaar7c626922005-02-07 22:01:03 +00002961
2962Use the FuncUndefined autocommand event with a pattern that matches the
2963function(s) to be defined. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964
2965 :au FuncUndefined BufNet* source ~/vim/bufnetfuncs.vim
2966
2967The file "~/vim/bufnetfuncs.vim" should then define functions that start with
2968"BufNet". Also see |FuncUndefined|.
2969
Bram Moolenaar7c626922005-02-07 22:01:03 +00002970
2971Using an autoload script ~
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002972 *autoload* *E746*
Bram Moolenaar05159a02005-02-26 23:04:13 +00002973This is introduced in the user manual, section |41.15|.
2974
Bram Moolenaar7c626922005-02-07 22:01:03 +00002975Using a script in the "autoload" directory is simpler, but requires using
2976exactly the right file name. A function that can be autoloaded has a name
2977like this: >
2978
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002979 :call filename#funcname()
Bram Moolenaar7c626922005-02-07 22:01:03 +00002980
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002981These functions are always global, in Vim9 script "g:" needs to be used: >
2982 :call g:filename#funcname()
2983
Bram Moolenaar7c626922005-02-07 22:01:03 +00002984When such a function is called, and it is not defined yet, Vim will search the
2985"autoload" directories in 'runtimepath' for a script file called
2986"filename.vim". For example "~/.vim/autoload/filename.vim". That file should
2987then define the function like this: >
2988
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002989 function filename#funcname()
Bram Moolenaar7c626922005-02-07 22:01:03 +00002990 echo "Done!"
2991 endfunction
2992
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002993The file name and the name used before the # in the function must match
Bram Moolenaar7c626922005-02-07 22:01:03 +00002994exactly, and the defined function must have the name exactly as it will be
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002995called. In Vim9 script the "g:" prefix must be used: >
2996 function g:filename#funcname()
2997
2998or for a compiled function: >
2999 def g:filename#funcname()
Bram Moolenaar7c626922005-02-07 22:01:03 +00003000
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003001It is possible to use subdirectories. Every # in the function name works like
3002a path separator. Thus when calling a function: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00003003
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003004 :call foo#bar#func()
Bram Moolenaar7c626922005-02-07 22:01:03 +00003005
3006Vim will look for the file "autoload/foo/bar.vim" in 'runtimepath'.
3007
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003008This also works when reading a variable that has not been set yet: >
3009
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003010 :let l = foo#bar#lvar
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003011
Bram Moolenaara5792f52005-11-23 21:25:05 +00003012However, when the autoload script was already loaded it won't be loaded again
3013for an unknown variable.
3014
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003015When assigning a value to such a variable nothing special happens. This can
3016be used to pass settings to the autoload script before it's loaded: >
3017
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003018 :let foo#bar#toggle = 1
3019 :call foo#bar#func()
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003020
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003021Note that when you make a mistake and call a function that is supposed to be
3022defined in an autoload script, but the script doesn't actually define the
Bram Moolenaarcb80aa22020-10-26 21:12:46 +01003023function, you will get an error message for the missing function. If you fix
3024the autoload script it won't be automatically loaded again. Either restart
3025Vim or manually source the script.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003026
3027Also note that if you have two script files, and one calls a function in the
Bram Moolenaar446cb832008-06-24 21:56:24 +00003028other and vice versa, before the used function is defined, it won't work.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003029Avoid using the autoload functionality at the toplevel.
Bram Moolenaar7c626922005-02-07 22:01:03 +00003030
Bram Moolenaar944697a2022-02-20 19:48:20 +00003031In |Vim9| script you will get error *E1263* if you define a function with
3032a "#" character in the name. You should use a name without "#" and use
3033`:export`.
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003034
Bram Moolenaar433f7c82006-03-21 21:29:36 +00003035Hint: If you distribute a bunch of scripts you can pack them together with the
3036|vimball| utility. Also read the user manual |distribute-script|.
3037
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038==============================================================================
30396. Curly braces names *curly-braces-names*
3040
Bram Moolenaar84f72352012-03-11 15:57:40 +01003041In most places where you can use a variable, you can use a "curly braces name"
3042variable. This is a regular variable name with one or more expressions
3043wrapped in braces {} like this: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 my_{adjective}_variable
3045
Bram Moolenaar5da36052021-12-27 15:39:57 +00003046This only works in legacy Vim script, not in |Vim9| script.
3047
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048When Vim encounters this, it evaluates the expression inside the braces, puts
3049that in place of the expression, and re-interprets the whole as a variable
3050name. So in the above example, if the variable "adjective" was set to
3051"noisy", then the reference would be to "my_noisy_variable", whereas if
3052"adjective" was set to "quiet", then it would be to "my_quiet_variable".
3053
3054One application for this is to create a set of variables governed by an option
Bram Moolenaar58b85342016-08-14 19:54:54 +02003055value. For example, the statement >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 echo my_{&background}_message
3057
3058would output the contents of "my_dark_message" or "my_light_message" depending
3059on the current value of 'background'.
3060
3061You can use multiple brace pairs: >
3062 echo my_{adverb}_{adjective}_message
3063..or even nest them: >
3064 echo my_{ad{end_of_word}}_message
3065where "end_of_word" is either "verb" or "jective".
3066
3067However, the expression inside the braces must evaluate to a valid single
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003068variable name, e.g. this is invalid: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 :let foo='a + b'
3070 :echo c{foo}d
3071.. since the result of expansion is "ca + bd", which is not a variable name.
3072
3073 *curly-braces-function-names*
3074You can call and define functions by an evaluated name in a similar way.
3075Example: >
3076 :let func_end='whizz'
3077 :call my_func_{func_end}(parameter)
3078
3079This would call the function "my_func_whizz(parameter)".
3080
Bram Moolenaar84f72352012-03-11 15:57:40 +01003081This does NOT work: >
3082 :let i = 3
3083 :let @{i} = '' " error
3084 :echo @{i} " error
3085
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086==============================================================================
30877. Commands *expression-commands*
3088
Bram Moolenaar5da36052021-12-27 15:39:57 +00003089Note: in |Vim9| script `:let` is not used. `:var` is used for variable
3090declarations and assignments do not use a command. |vim9-declaration|
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003091
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092:let {var-name} = {expr1} *:let* *E18*
3093 Set internal variable {var-name} to the result of the
3094 expression {expr1}. The variable will get the type
3095 from the {expr}. If {var-name} didn't exist yet, it
3096 is created.
3097
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003098:let {var-name}[{idx}] = {expr1} *E689* *E1141*
Bram Moolenaar13065c42005-01-08 16:08:21 +00003099 Set a list item to the result of the expression
3100 {expr1}. {var-name} must refer to a list and {idx}
3101 must be a valid index in that list. For nested list
3102 the index can be repeated.
Bram Moolenaar446cb832008-06-24 21:56:24 +00003103 This cannot be used to add an item to a |List|.
Bram Moolenaar58b85342016-08-14 19:54:54 +02003104 This cannot be used to set a byte in a String. You
Bram Moolenaar446cb832008-06-24 21:56:24 +00003105 can do that like this: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003106 :let var = var[0:2] .. 'X' .. var[4:]
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01003107< When {var-name} is a |Blob| then {idx} can be the
3108 length of the blob, in which case one byte is
3109 appended.
3110
Bram Moolenaara2baa732022-02-04 16:09:54 +00003111 *E711* *E719* *E1165* *E1166* *E1183*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003112:let {var-name}[{idx1}:{idx2}] = {expr1} *E708* *E709* *E710*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003113 Set a sequence of items in a |List| to the result of
3114 the expression {expr1}, which must be a list with the
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003115 correct number of items.
3116 {idx1} can be omitted, zero is used instead.
3117 {idx2} can be omitted, meaning the end of the list.
3118 When the selected range of items is partly past the
3119 end of the list, items will be added.
3120
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003121 *:let+=* *:let-=* *:letstar=* *:let/=* *:let%=*
3122 *:let.=* *:let..=* *E734* *E985* *E1019*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003123:let {var} += {expr1} Like ":let {var} = {var} + {expr1}".
3124:let {var} -= {expr1} Like ":let {var} = {var} - {expr1}".
Bram Moolenaarff697e62019-02-12 22:28:33 +01003125:let {var} *= {expr1} Like ":let {var} = {var} * {expr1}".
3126:let {var} /= {expr1} Like ":let {var} = {var} / {expr1}".
3127:let {var} %= {expr1} Like ":let {var} = {var} % {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003128:let {var} .= {expr1} Like ":let {var} = {var} . {expr1}".
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003129:let {var} ..= {expr1} Like ":let {var} = {var} .. {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003130 These fail if {var} was not set yet and when the type
3131 of {var} and {expr1} don't fit the operator.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003132 `.=` is not supported with Vim script version 2 and
3133 later, see |vimscript-version|.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003134
3135
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136:let ${env-name} = {expr1} *:let-environment* *:let-$*
3137 Set environment variable {env-name} to the result of
3138 the expression {expr1}. The type is always String.
Bram Moolenaar56c860c2019-08-17 20:09:31 +02003139
3140 On some systems making an environment variable empty
3141 causes it to be deleted. Many systems do not make a
3142 difference between an environment variable that is not
3143 set and an environment variable that is empty.
3144
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003145:let ${env-name} .= {expr1}
3146 Append {expr1} to the environment variable {env-name}.
3147 If the environment variable didn't exist yet this
3148 works like "=".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149
3150:let @{reg-name} = {expr1} *:let-register* *:let-@*
3151 Write the result of the expression {expr1} in register
3152 {reg-name}. {reg-name} must be a single letter, and
3153 must be the name of a writable register (see
3154 |registers|). "@@" can be used for the unnamed
3155 register, "@/" for the search pattern.
3156 If the result of {expr1} ends in a <CR> or <NL>, the
3157 register will be linewise, otherwise it will be set to
3158 characterwise.
3159 This can be used to clear the last search pattern: >
3160 :let @/ = ""
3161< This is different from searching for an empty string,
3162 that would match everywhere.
3163
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003164:let @{reg-name} .= {expr1}
Bram Moolenaar58b85342016-08-14 19:54:54 +02003165 Append {expr1} to register {reg-name}. If the
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003166 register was empty it's like setting it to {expr1}.
3167
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003168:let &{option-name} = {expr1} *:let-option* *:let-&*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 Set option {option-name} to the result of the
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003170 expression {expr1}. A String or Number value is
3171 always converted to the type of the option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 For an option local to a window or buffer the effect
3173 is just like using the |:set| command: both the local
Bram Moolenaara5fac542005-10-12 20:58:49 +00003174 value and the global value are changed.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003175 Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003176 :let &path = &path .. ',/usr/local/include'
Bram Moolenaar3df01732017-02-17 22:47:16 +01003177< This also works for terminal codes in the form t_xx.
3178 But only for alphanumerical names. Example: >
3179 :let &t_k1 = "\<Esc>[234;"
3180< When the code does not exist yet it will be created as
3181 a terminal key code, there is no error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003183:let &{option-name} .= {expr1}
3184 For a string option: Append {expr1} to the value.
3185 Does not insert a comma like |:set+=|.
3186
3187:let &{option-name} += {expr1}
3188:let &{option-name} -= {expr1}
3189 For a number or boolean option: Add or subtract
3190 {expr1}.
3191
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192:let &l:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003193:let &l:{option-name} .= {expr1}
3194:let &l:{option-name} += {expr1}
3195:let &l:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 Like above, but only set the local value of an option
3197 (if there is one). Works like |:setlocal|.
3198
3199:let &g:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003200:let &g:{option-name} .= {expr1}
3201:let &g:{option-name} += {expr1}
3202:let &g:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 Like above, but only set the global value of an option
3204 (if there is one). Works like |:setglobal|.
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003205 *E1093*
Bram Moolenaar13065c42005-01-08 16:08:21 +00003206:let [{name1}, {name2}, ...] = {expr1} *:let-unpack* *E687* *E688*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003207 {expr1} must evaluate to a |List|. The first item in
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003208 the list is assigned to {name1}, the second item to
3209 {name2}, etc.
3210 The number of names must match the number of items in
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003211 the |List|.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003212 Each name can be one of the items of the ":let"
3213 command as mentioned above.
3214 Example: >
3215 :let [s, item] = GetItem(s)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003216< Detail: {expr1} is evaluated first, then the
3217 assignments are done in sequence. This matters if
3218 {name2} depends on {name1}. Example: >
3219 :let x = [0, 1]
3220 :let i = 0
3221 :let [i, x[i]] = [1, 2]
3222 :echo x
3223< The result is [0, 2].
3224
3225:let [{name1}, {name2}, ...] .= {expr1}
3226:let [{name1}, {name2}, ...] += {expr1}
3227:let [{name1}, {name2}, ...] -= {expr1}
3228 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003229 |List| item.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003230
Bram Moolenaard1caa942020-04-10 22:10:56 +02003231:let [{name}, ..., ; {lastname}] = {expr1} *E452*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003232 Like |:let-unpack| above, but the |List| may have more
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003233 items than there are names. A list of the remaining
3234 items is assigned to {lastname}. If there are no
3235 remaining items {lastname} is set to an empty list.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003236 Example: >
3237 :let [a, b; rest] = ["aval", "bval", 3, 4]
3238<
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003239:let [{name}, ..., ; {lastname}] .= {expr1}
3240:let [{name}, ..., ; {lastname}] += {expr1}
3241:let [{name}, ..., ; {lastname}] -= {expr1}
3242 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003243 |List| item.
Bram Moolenaar4a748032010-09-30 21:47:56 +02003244
Bram Moolenaar24582002019-07-21 14:14:26 +02003245 *:let=<<* *:let-heredoc*
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003246 *E990* *E991* *E172* *E221* *E1145*
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003247:let {var-name} =<< [trim] [eval] {endmarker}
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003248text...
3249text...
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003250{endmarker}
Bram Moolenaare46a4402020-06-30 20:38:27 +02003251 Set internal variable {var-name} to a |List|
3252 containing the lines of text bounded by the string
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003253 {endmarker}.
3254
3255 If "eval" is not specified, then each line of text is
Bram Moolenaard899e512022-05-07 21:54:03 +01003256 used as a |literal-string|, except that single quotes
3257 doe not need to be doubled.
3258 If "eval" is specified, then any Vim expression in the
3259 form {expr} is evaluated and the result replaces the
3260 expression, like with |interp-string|.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003261 Example where $HOME is expanded: >
3262 let lines =<< trim eval END
3263 some text
Bram Moolenaard899e512022-05-07 21:54:03 +01003264 See the file {$HOME}/.vimrc
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003265 more text
3266 END
3267< There can be multiple Vim expressions in a single line
3268 but an expression cannot span multiple lines. If any
3269 expression evaluation fails, then the assignment fails.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003270
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003271 {endmarker} must not contain white space.
3272 {endmarker} cannot start with a lower case character.
3273 The last line should end only with the {endmarker}
3274 string without any other character. Watch out for
3275 white space after {endmarker}!
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003276
Bram Moolenaare7eb9272019-06-24 00:58:07 +02003277 Without "trim" any white space characters in the lines
3278 of text are preserved. If "trim" is specified before
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003279 {endmarker}, then indentation is stripped so you can
3280 do: >
Bram Moolenaare7eb9272019-06-24 00:58:07 +02003281 let text =<< trim END
3282 if ok
3283 echo 'done'
3284 endif
3285 END
3286< Results in: ["if ok", " echo 'done'", "endif"]
3287 The marker must line up with "let" and the indentation
3288 of the first line is removed from all the text lines.
3289 Specifically: all the leading indentation exactly
3290 matching the leading indentation of the first
3291 non-empty text line is stripped from the input lines.
3292 All leading indentation exactly matching the leading
3293 indentation before `let` is stripped from the line
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003294 containing {endmarker}. Note that the difference
3295 between space and tab matters here.
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003296
3297 If {var-name} didn't exist yet, it is created.
3298 Cannot be followed by another command, but can be
3299 followed by a comment.
3300
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003301 To avoid line continuation to be applied, consider
3302 adding 'C' to 'cpoptions': >
3303 set cpo+=C
3304 let var =<< END
3305 \ leading backslash
3306 END
3307 set cpo-=C
3308<
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003309 Examples: >
3310 let var1 =<< END
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003311 Sample text 1
3312 Sample text 2
3313 Sample text 3
3314 END
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003315
3316 let data =<< trim DATA
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003317 1 2 3 4
3318 5 6 7 8
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003319 DATA
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003320
3321 let code =<< trim eval CODE
Bram Moolenaard899e512022-05-07 21:54:03 +01003322 let v = {10 + 20}
3323 let h = "{$HOME}"
3324 let s = "{Str1()} abc {Str2()}"
3325 let n = {MyFunc(3, 4)}
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003326 CODE
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003327<
Bram Moolenaar4a748032010-09-30 21:47:56 +02003328 *E121*
Bram Moolenaar58b85342016-08-14 19:54:54 +02003329:let {var-name} .. List the value of variable {var-name}. Multiple
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003330 variable names may be given. Special names recognized
3331 here: *E738*
Bram Moolenaarca003e12006-03-17 23:19:38 +00003332 g: global variables
3333 b: local buffer variables
3334 w: local window variables
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003335 t: local tab page variables
Bram Moolenaarca003e12006-03-17 23:19:38 +00003336 s: script-local variables
3337 l: local function variables
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003338 v: Vim variables.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003339 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00003341:let List the values of all variables. The type of the
3342 variable is indicated before the value:
3343 <nothing> String
3344 # Number
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003345 * Funcref
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003346 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003348:unl[et][!] {name} ... *:unlet* *:unl* *E108* *E795* *E1081*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003349 Remove the internal variable {name}. Several variable
3350 names can be given, they are all removed. The name
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003351 may also be a |List| or |Dictionary| item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 With [!] no error message is given for non-existing
3353 variables.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003354 One or more items from a |List| can be removed: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003355 :unlet list[3] " remove fourth item
3356 :unlet list[3:] " remove fourth item to last
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003357< One item from a |Dictionary| can be removed at a time: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003358 :unlet dict['two']
3359 :unlet dict.two
Bram Moolenaarc236c162008-07-13 17:41:49 +00003360< This is especially useful to clean up used global
3361 variables and script-local variables (these are not
3362 deleted when the script ends). Function-local
3363 variables are automatically deleted when the function
3364 ends.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365
Bram Moolenaar137374f2018-05-13 15:59:50 +02003366:unl[et] ${env-name} ... *:unlet-environment* *:unlet-$*
3367 Remove environment variable {env-name}.
3368 Can mix {name} and ${env-name} in one :unlet command.
3369 No error message is given for a non-existing
3370 variable, also without !.
3371 If the system does not support deleting an environment
Bram Moolenaar9937a052019-06-15 15:45:06 +02003372 variable, it is made empty.
Bram Moolenaar137374f2018-05-13 15:59:50 +02003373
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003374 *:cons* *:const* *E1018*
Bram Moolenaar9937a052019-06-15 15:45:06 +02003375:cons[t] {var-name} = {expr1}
3376:cons[t] [{name1}, {name2}, ...] = {expr1}
Bram Moolenaar9937a052019-06-15 15:45:06 +02003377:cons[t] [{name}, ..., ; {lastname}] = {expr1}
3378:cons[t] {var-name} =<< [trim] {marker}
3379text...
3380text...
3381{marker}
3382 Similar to |:let|, but additionally lock the variable
3383 after setting the value. This is the same as locking
3384 the variable with |:lockvar| just after |:let|, thus: >
3385 :const x = 1
3386< is equivalent to: >
3387 :let x = 1
Bram Moolenaar021bda52020-08-17 21:07:22 +02003388 :lockvar! x
Bram Moolenaara187c432020-09-16 21:08:28 +02003389< NOTE: in Vim9 script `:const` works differently, see
3390 |vim9-const|
3391 This is useful if you want to make sure the variable
Bram Moolenaar021bda52020-08-17 21:07:22 +02003392 is not modified. If the value is a List or Dictionary
3393 literal then the items also cannot be changed: >
3394 const ll = [1, 2, 3]
3395 let ll[1] = 5 " Error!
Bram Moolenaar6e649222021-10-04 21:32:54 +01003396< Nested references are not locked: >
Bram Moolenaar021bda52020-08-17 21:07:22 +02003397 let lvar = ['a']
3398 const lconst = [0, lvar]
3399 let lconst[0] = 2 " Error!
3400 let lconst[1][0] = 'b' " OK
3401< *E995*
Bram Moolenaar9b283522019-06-17 22:19:33 +02003402 |:const| does not allow to for changing a variable: >
Bram Moolenaar9937a052019-06-15 15:45:06 +02003403 :let x = 1
3404 :const x = 2 " Error!
Bram Moolenaar1c196e72019-06-16 15:41:58 +02003405< *E996*
3406 Note that environment variables, option values and
3407 register values cannot be used here, since they cannot
3408 be locked.
3409
Bram Moolenaar85850f32019-07-19 22:05:51 +02003410:cons[t]
3411:cons[t] {var-name}
3412 If no argument is given or only {var-name} is given,
3413 the behavior is the same as |:let|.
3414
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003415:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
3416 Lock the internal variable {name}. Locking means that
3417 it can no longer be changed (until it is unlocked).
3418 A locked variable can be deleted: >
3419 :lockvar v
Bram Moolenaardad44732021-03-31 20:07:33 +02003420 :let v = 'asdf' " fails!
3421 :unlet v " works
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003422< *E741* *E940* *E1118* *E1119* *E1120* *E1121* *E1122*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003423 If you try to change a locked variable you get an
Bram Moolenaare7877fe2017-02-20 22:35:33 +01003424 error message: "E741: Value is locked: {name}".
3425 If you try to lock or unlock a built-in variable you
3426 get an error message: "E940: Cannot lock or unlock
3427 variable {name}".
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003428
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003429 [depth] is relevant when locking a |List| or
3430 |Dictionary|. It specifies how deep the locking goes:
Bram Moolenaara187c432020-09-16 21:08:28 +02003431 0 Lock the variable {name} but not its
3432 value.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003433 1 Lock the |List| or |Dictionary| itself,
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003434 cannot add or remove items, but can
3435 still change their values.
3436 2 Also lock the values, cannot change
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003437 the items. If an item is a |List| or
3438 |Dictionary|, cannot add or remove
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003439 items, but can still change the
3440 values.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003441 3 Like 2 but for the |List| /
3442 |Dictionary| in the |List| /
3443 |Dictionary|, one level deeper.
3444 The default [depth] is 2, thus when {name} is a |List|
3445 or |Dictionary| the values cannot be changed.
Bram Moolenaara187c432020-09-16 21:08:28 +02003446
3447 Example with [depth] 0: >
3448 let mylist = [1, 2, 3]
3449 lockvar 0 mylist
Bram Moolenaar6e649222021-10-04 21:32:54 +01003450 let mylist[0] = 77 " OK
3451 call add(mylist, 4] " OK
Bram Moolenaara187c432020-09-16 21:08:28 +02003452 let mylist = [7, 8, 9] " Error!
3453< *E743*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003454 For unlimited depth use [!] and omit [depth].
3455 However, there is a maximum depth of 100 to catch
3456 loops.
3457
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003458 Note that when two variables refer to the same |List|
3459 and you lock one of them, the |List| will also be
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003460 locked when used through the other variable.
3461 Example: >
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003462 :let l = [0, 1, 2, 3]
3463 :let cl = l
3464 :lockvar l
3465 :let cl[1] = 99 " won't work!
3466< You may want to make a copy of a list to avoid this.
3467 See |deepcopy()|.
3468
3469
Bram Moolenaara2baa732022-02-04 16:09:54 +00003470:unlo[ckvar][!] [depth] {name} ... *:unlockvar* *:unlo* *E1246*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003471 Unlock the internal variable {name}. Does the
3472 opposite of |:lockvar|.
3473
Bram Moolenaar61da1bf2019-06-06 12:14:49 +02003474:if {expr1} *:if* *:end* *:endif* *:en* *E171* *E579* *E580*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003475:en[dif] Execute the commands until the next matching `:else`
3476 or `:endif` if {expr1} evaluates to non-zero.
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003477 Although the short forms work, it is recommended to
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003478 always use `:endif` to avoid confusion and to make
3479 auto-indenting work properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480
3481 From Vim version 4.5 until 5.0, every Ex command in
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003482 between the `:if` and `:endif` is ignored. These two
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 commands were just to allow for future expansions in a
Bram Moolenaar85084ef2016-01-17 22:26:33 +01003484 backward compatible way. Nesting was allowed. Note
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003485 that any `:else` or `:elseif` was ignored, the `else`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 part was not executed either.
3487
3488 You can use this to remain compatible with older
3489 versions: >
3490 :if version >= 500
3491 : version-5-specific-commands
3492 :endif
3493< The commands still need to be parsed to find the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003494 `endif`. Sometimes an older Vim has a problem with a
3495 new command. For example, `:silent` is recognized as
3496 a `:substitute` command. In that case `:execute` can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 avoid problems: >
3498 :if version >= 600
3499 : execute "silent 1,$delete"
3500 :endif
3501<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003502 In |Vim9| script `:endif` cannot be shortened, to
3503 improve script readability.
3504 NOTE: The `:append` and `:insert` commands don't work
3505 properly in between `:if` and `:endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506
3507 *:else* *:el* *E581* *E583*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003508:el[se] Execute the commands until the next matching `:else`
3509 or `:endif` if they previously were not being
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 executed.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003511 In |Vim9| script `:else` cannot be shortened, to
3512 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513
3514 *:elseif* *:elsei* *E582* *E584*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003515:elsei[f] {expr1} Short for `:else` `:if`, with the addition that there
3516 is no extra `:endif`.
3517 In |Vim9| script `:elseif` cannot be shortened, to
3518 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519
3520:wh[ile] {expr1} *:while* *:endwhile* *:wh* *:endw*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003521 *E170* *E585* *E588* *E733*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003522:endw[hile] Repeat the commands between `:while` and `:endwhile`,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 as long as {expr1} evaluates to non-zero.
3524 When an error is detected from a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003525 loop, execution continues after the `endwhile`.
Bram Moolenaar12805862005-01-05 22:16:17 +00003526 Example: >
3527 :let lnum = 1
3528 :while lnum <= line("$")
3529 :call FixLine(lnum)
3530 :let lnum = lnum + 1
3531 :endwhile
3532<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003533 In |Vim9| script `:while` and `:endwhile` cannot be
3534 shortened, to improve script readability.
3535 NOTE: The `:append` and `:insert` commands don't work
3536 properly inside a `:while` and `:for` loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003538:for {var} in {object} *:for* *E690* *E732*
Bram Moolenaar12805862005-01-05 22:16:17 +00003539:endfo[r] *:endfo* *:endfor*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003540 Repeat the commands between `:for` and `:endfor` for
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003541 each item in {object}. {object} can be a |List| or
Bram Moolenaara2baa732022-02-04 16:09:54 +00003542 a |Blob|. *E1177*
Bram Moolenaar5da36052021-12-27 15:39:57 +00003543
3544 Variable {var} is set to the value of each item.
3545 In |Vim9| script the loop variable must not have been
3546 declared yet, unless when it is a
3547 global/window/tab/buffer variable.
3548
3549 When an error is detected for a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003550 loop, execution continues after the `endfor`.
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003551 Changing {object} inside the loop affects what items
3552 are used. Make a copy if this is unwanted: >
Bram Moolenaarde8866b2005-01-06 23:24:37 +00003553 :for item in copy(mylist)
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003554<
Bram Moolenaar5da36052021-12-27 15:39:57 +00003555 When {object} is a |List| and not making a copy, in
3556 legacy script Vim stores a reference to the next item
3557 in the |List| before executing the commands with the
3558 current item. Thus the current item can be removed
3559 without effect. Removing any later item means it will
3560 not be found. Thus the following example works (an
3561 inefficient way to make a |List| empty): >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003562 for item in mylist
3563 call remove(mylist, 0)
3564 endfor
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003565< Note that reordering the |List| (e.g., with sort() or
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003566 reverse()) may have unexpected effects.
Bram Moolenaar5da36052021-12-27 15:39:57 +00003567 In |Vim9| script the index is used. If an item before
3568 the current one is deleted the next item will be
3569 skipped.
Bram Moolenaar12805862005-01-05 22:16:17 +00003570
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003571 When {object} is a |Blob|, Vim always makes a copy to
3572 iterate over. Unlike with |List|, modifying the
3573 |Blob| does not affect the iteration.
3574
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003575 In |Vim9| script `:endfor` cannot be shortened, to
3576 improve script readability.
3577
Bram Moolenaar12805862005-01-05 22:16:17 +00003578:for [{var1}, {var2}, ...] in {listlist}
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003579:endfo[r] *E1140*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003580 Like `:for` above, but each item in {listlist} must be
Bram Moolenaar12805862005-01-05 22:16:17 +00003581 a list, of which each item is assigned to {var1},
3582 {var2}, etc. Example: >
3583 :for [lnum, col] in [[1, 3], [2, 5], [3, 8]]
3584 :echo getline(lnum)[col]
3585 :endfor
3586<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 *:continue* *:con* *E586*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003588:con[tinue] When used inside a `:while` or `:for` loop, jumps back
Bram Moolenaar12805862005-01-05 22:16:17 +00003589 to the start of the loop.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003590 If it is used after a `:try` inside the loop but
3591 before the matching `:finally` (if present), the
3592 commands following the `:finally` up to the matching
3593 `:endtry` are executed first. This process applies to
3594 all nested `:try`s inside the loop. The outermost
3595 `:endtry` then jumps back to the start of the loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003597 In |Vim9| script `:cont` is the shortest form, to
3598 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 *:break* *:brea* *E587*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003600:brea[k] When used inside a `:while` or `:for` loop, skips to
3601 the command after the matching `:endwhile` or
3602 `:endfor`.
3603 If it is used after a `:try` inside the loop but
3604 before the matching `:finally` (if present), the
3605 commands following the `:finally` up to the matching
3606 `:endtry` are executed first. This process applies to
3607 all nested `:try`s inside the loop. The outermost
3608 `:endtry` then jumps to the command after the loop.
3609
3610 In |Vim9| script `:break` cannot be shortened, to
3611 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003613:try *:try* *:endt* *:endtry*
3614 *E600* *E601* *E602* *E1032*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615:endt[ry] Change the error handling for the commands between
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003616 `:try` and `:endtry` including everything being
3617 executed across `:source` commands, function calls,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 or autocommand invocations.
3619
3620 When an error or interrupt is detected and there is
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003621 a `:finally` command following, execution continues
3622 after the `:finally`. Otherwise, or when the
3623 `:endtry` is reached thereafter, the next
3624 (dynamically) surrounding `:try` is checked for
3625 a corresponding `:finally` etc. Then the script
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003626 processing is terminated. Whether a function
3627 definition has an "abort" argument does not matter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 Example: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003629 try | call Unknown() | finally | echomsg "cleanup" | endtry
3630 echomsg "not reached"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631<
3632 Moreover, an error or interrupt (dynamically) inside
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003633 `:try` and `:endtry` is converted to an exception. It
3634 can be caught as if it were thrown by a `:throw`
3635 command (see `:catch`). In this case, the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 processing is not terminated.
3637
3638 The value "Vim:Interrupt" is used for an interrupt
3639 exception. An error in a Vim command is converted
3640 to a value of the form "Vim({command}):{errmsg}",
3641 other errors are converted to a value of the form
3642 "Vim:{errmsg}". {command} is the full command name,
3643 and {errmsg} is the message that is displayed if the
3644 error exception is not caught, always beginning with
3645 the error number.
3646 Examples: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003647 try | sleep 100 | catch /^Vim:Interrupt$/ | endtry
3648 try | edit | catch /^Vim(edit):E\d\+/ | echo "error" | endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003650 In |Vim9| script `:endtry` cannot be shortened, to
3651 improve script readability.
3652
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003653 *:cat* *:catch*
3654 *E603* *E604* *E605* *E654* *E1033*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003655:cat[ch] /{pattern}/ The following commands until the next `:catch`,
3656 `:finally`, or `:endtry` that belongs to the same
3657 `:try` as the `:catch` are executed when an exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 matching {pattern} is being thrown and has not yet
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003659 been caught by a previous `:catch`. Otherwise, these
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 commands are skipped.
3661 When {pattern} is omitted all errors are caught.
3662 Examples: >
Bram Moolenaar647e24b2019-03-17 16:39:46 +01003663 :catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C)
3664 :catch /^Vim\%((\a\+)\)\=:E/ " catch all Vim errors
3665 :catch /^Vim\%((\a\+)\)\=:/ " catch errors and interrupts
3666 :catch /^Vim(write):/ " catch all errors in :write
3667 :catch /^Vim\%((\a\+)\)\=:E123:/ " catch error E123
3668 :catch /my-exception/ " catch user exception
3669 :catch /.*/ " catch everything
3670 :catch " same as /.*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671<
3672 Another character can be used instead of / around the
3673 {pattern}, so long as it does not have a special
3674 meaning (e.g., '|' or '"') and doesn't occur inside
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003675 {pattern}. *E1067*
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02003676 Information about the exception is available in
3677 |v:exception|. Also see |throw-variables|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 NOTE: It is not reliable to ":catch" the TEXT of
3679 an error message because it may vary in different
3680 locales.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003681 In |Vim9| script `:catch` cannot be shortened, to
3682 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683
3684 *:fina* *:finally* *E606* *E607*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003685:fina[lly] The following commands until the matching `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 are executed whenever the part between the matching
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003687 `:try` and the `:finally` is left: either by falling
3688 through to the `:finally` or by a `:continue`,
3689 `:break`, `:finish`, or `:return`, or by an error or
3690 interrupt or exception (see `:throw`).
3691
3692 In |Vim9| script `:finally` cannot be shortened, to
3693 improve script readability and avoid confusion with
3694 `:final`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003696 *:th* *:throw* *E608* *E1129*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697:th[row] {expr1} The {expr1} is evaluated and thrown as an exception.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003698 If the ":throw" is used after a `:try` but before the
3699 first corresponding `:catch`, commands are skipped
3700 until the first `:catch` matching {expr1} is reached.
3701 If there is no such `:catch` or if the ":throw" is
3702 used after a `:catch` but before the `:finally`, the
3703 commands following the `:finally` (if present) up to
3704 the matching `:endtry` are executed. If the `:throw`
3705 is after the `:finally`, commands up to the `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 are skipped. At the ":endtry", this process applies
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003707 again for the next dynamically surrounding `:try`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 (which may be found in a calling function or sourcing
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003709 script), until a matching `:catch` has been found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 If the exception is not caught, the command processing
3711 is terminated.
3712 Example: >
3713 :try | throw "oops" | catch /^oo/ | echo "caught" | endtry
Bram Moolenaar662db672011-03-22 14:05:35 +01003714< Note that "catch" may need to be on a separate line
3715 for when an error causes the parsing to skip the whole
3716 line and not see the "|" that separates the commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003718 In |Vim9| script `:throw` cannot be shortened, to
3719 improve script readability.
3720
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 *:ec* *:echo*
3722:ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The
3723 first {expr1} starts on a new line.
3724 Also see |:comment|.
3725 Use "\n" to start a new line. Use "\r" to move the
3726 cursor to the first column.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003727 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 Cannot be followed by a comment.
3729 Example: >
3730 :echo "the value of 'shell' is" &shell
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003731< *:echo-redraw*
3732 A later redraw may make the message disappear again.
3733 And since Vim mostly postpones redrawing until it's
3734 finished with a sequence of commands this happens
3735 quite often. To avoid that a command from before the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003736 `:echo` causes a redraw afterwards (redraws are often
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003737 postponed until you type something), force a redraw
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003738 with the `:redraw` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 :new | redraw | echo "there is a new window"
3740<
3741 *:echon*
3742:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
3743 |:comment|.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003744 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 Cannot be followed by a comment.
3746 Example: >
3747 :echon "the value of 'shell' is " &shell
3748<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003749 Note the difference between using `:echo`, which is a
3750 Vim command, and `:!echo`, which is an external shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 command: >
3752 :!echo % --> filename
3753< The arguments of ":!" are expanded, see |:_%|. >
3754 :!echo "%" --> filename or "filename"
3755< Like the previous example. Whether you see the double
3756 quotes or not depends on your 'shell'. >
3757 :echo % --> nothing
3758< The '%' is an illegal character in an expression. >
3759 :echo "%" --> %
3760< This just echoes the '%' character. >
3761 :echo expand("%") --> filename
3762< This calls the expand() function to expand the '%'.
3763
3764 *:echoh* *:echohl*
3765:echoh[l] {name} Use the highlight group {name} for the following
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003766 `:echo`, `:echon` and `:echomsg` commands. Also used
3767 for the `input()` prompt. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 :echohl WarningMsg | echo "Don't panic!" | echohl None
3769< Don't forget to set the group back to "None",
3770 otherwise all following echo's will be highlighted.
3771
3772 *:echom* *:echomsg*
3773:echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
3774 message in the |message-history|.
3775 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003776 `:echo` command. But unprintable characters are
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 displayed, not interpreted.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003778 The parsing works slightly different from `:echo`,
3779 more like `:execute`. All the expressions are first
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003780 evaluated and concatenated before echoing anything.
Bram Moolenaar461a7fc2018-12-22 13:28:07 +01003781 If expressions does not evaluate to a Number or
3782 String, string() is used to turn it into a string.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003783 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 Example: >
3785 :echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see."
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003786< See |:echo-redraw| to avoid the message disappearing
3787 when the screen is redrawn.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 *:echoe* *:echoerr*
3789:echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
3790 message in the |message-history|. When used in a
3791 script or function the line number will be added.
3792 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003793 `:echomsg` command. When used inside a try conditional,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 the message is raised as an error exception instead
3795 (see |try-echoerr|).
3796 Example: >
3797 :echoerr "This script just failed!"
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003798< If you just want a highlighted message use `:echohl`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 And to get a beep: >
3800 :exe "normal \<Esc>"
Bram Moolenaar4c868302021-03-22 16:19:45 +01003801
3802:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3803 Intended for testing: works like `:echomsg` but when
3804 running in the GUI and started from a terminal write
3805 the text to stdout.
3806
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003807 *:eval*
3808:eval {expr} Evaluate {expr} and discard the result. Example: >
3809 :eval Getlist()->Filter()->append('$')
3810
3811< The expression is supposed to have a side effect,
3812 since the resulting value is not used. In the example
3813 the `append()` call appends the List with text to the
3814 buffer. This is similar to `:call` but works with any
3815 expression.
Bram Moolenaara2baa732022-02-04 16:09:54 +00003816 In |Vim9| script an expression without an effect will
3817 result in error *E1207* . This should help noticing
3818 mistakes.
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003819
3820 The command can be shortened to `:ev` or `:eva`, but
3821 these are hard to recognize and therefore not to be
3822 used.
3823
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003824 The command cannot be followed by "|" and another
3825 command, since "|" is seen as part of the expression.
3826
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003827
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 *:exe* *:execute*
3829:exe[cute] {expr1} .. Executes the string that results from the evaluation
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003830 of {expr1} as an Ex command.
3831 Multiple arguments are concatenated, with a space in
Bram Moolenaar7e6a5152021-01-02 16:39:53 +01003832 between. To avoid the extra space use the ".."
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003833 operator to concatenate strings into one argument.
3834 {expr1} is used as the processed command, command line
3835 editing keys are not recognized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 Cannot be followed by a comment.
3837 Examples: >
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003838 :execute "buffer" nextbuf
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003839 :execute "normal" count .. "w"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840<
3841 ":execute" can be used to append a command to commands
3842 that don't accept a '|'. Example: >
3843 :execute '!ls' | echo "theend"
3844
3845< ":execute" is also a nice way to avoid having to type
3846 control characters in a Vim script for a ":normal"
3847 command: >
3848 :execute "normal ixxx\<Esc>"
3849< This has an <Esc> character, see |expr-string|.
3850
Bram Moolenaar446cb832008-06-24 21:56:24 +00003851 Be careful to correctly escape special characters in
3852 file names. The |fnameescape()| function can be used
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003853 for Vim commands, |shellescape()| for |:!| commands.
3854 Examples: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003855 :execute "e " .. fnameescape(filename)
3856 :execute "!ls " .. shellescape(filename, 1)
Bram Moolenaar446cb832008-06-24 21:56:24 +00003857<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 Note: The executed string may be any command-line, but
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01003859 starting or ending "if", "while" and "for" does not
3860 always work, because when commands are skipped the
3861 ":execute" is not evaluated and Vim loses track of
3862 where blocks start and end. Also "break" and
3863 "continue" should not be inside ":execute".
3864 This example does not work, because the ":execute" is
3865 not evaluated and Vim does not see the "while", and
3866 gives an error for finding an ":endwhile": >
3867 :if 0
3868 : execute 'while i > 5'
3869 : echo "test"
3870 : endwhile
3871 :endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872<
3873 It is allowed to have a "while" or "if" command
3874 completely in the executed string: >
3875 :execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
3876<
3877
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003878 *:exe-comment*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 ":execute", ":echo" and ":echon" cannot be followed by
3880 a comment directly, because they see the '"' as the
3881 start of a string. But, you can use '|' followed by a
3882 comment. Example: >
3883 :echo "foo" | "this is a comment
3884
3885==============================================================================
38868. Exception handling *exception-handling*
3887
3888The Vim script language comprises an exception handling feature. This section
3889explains how it can be used in a Vim script.
3890
3891Exceptions may be raised by Vim on an error or on interrupt, see
3892|catch-errors| and |catch-interrupt|. You can also explicitly throw an
3893exception by using the ":throw" command, see |throw-catch|.
3894
3895
3896TRY CONDITIONALS *try-conditionals*
3897
3898Exceptions can be caught or can cause cleanup code to be executed. You can
3899use a try conditional to specify catch clauses (that catch exceptions) and/or
3900a finally clause (to be executed for cleanup).
3901 A try conditional begins with a |:try| command and ends at the matching
3902|:endtry| command. In between, you can use a |:catch| command to start
3903a catch clause, or a |:finally| command to start a finally clause. There may
3904be none or multiple catch clauses, but there is at most one finally clause,
3905which must not be followed by any catch clauses. The lines before the catch
3906clauses and the finally clause is called a try block. >
3907
3908 :try
Bram Moolenaar446cb832008-06-24 21:56:24 +00003909 : ...
3910 : ... TRY BLOCK
3911 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003913 : ...
3914 : ... CATCH CLAUSE
3915 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003917 : ...
3918 : ... CATCH CLAUSE
3919 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 :finally
Bram Moolenaar446cb832008-06-24 21:56:24 +00003921 : ...
3922 : ... FINALLY CLAUSE
3923 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 :endtry
3925
3926The try conditional allows to watch code for exceptions and to take the
3927appropriate actions. Exceptions from the try block may be caught. Exceptions
3928from the try block and also the catch clauses may cause cleanup actions.
3929 When no exception is thrown during execution of the try block, the control
3930is transferred to the finally clause, if present. After its execution, the
3931script continues with the line following the ":endtry".
3932 When an exception occurs during execution of the try block, the remaining
3933lines in the try block are skipped. The exception is matched against the
3934patterns specified as arguments to the ":catch" commands. The catch clause
3935after the first matching ":catch" is taken, other catch clauses are not
3936executed. The catch clause ends when the next ":catch", ":finally", or
3937":endtry" command is reached - whatever is first. Then, the finally clause
3938(if present) is executed. When the ":endtry" is reached, the script execution
3939continues in the following line as usual.
3940 When an exception that does not match any of the patterns specified by the
3941":catch" commands is thrown in the try block, the exception is not caught by
3942that try conditional and none of the catch clauses is executed. Only the
3943finally clause, if present, is taken. The exception pends during execution of
3944the finally clause. It is resumed at the ":endtry", so that commands after
3945the ":endtry" are not executed and the exception might be caught elsewhere,
3946see |try-nesting|.
3947 When during execution of a catch clause another exception is thrown, the
Bram Moolenaar58b85342016-08-14 19:54:54 +02003948remaining lines in that catch clause are not executed. The new exception is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949not matched against the patterns in any of the ":catch" commands of the same
3950try conditional and none of its catch clauses is taken. If there is, however,
3951a finally clause, it is executed, and the exception pends during its
3952execution. The commands following the ":endtry" are not executed. The new
3953exception might, however, be caught elsewhere, see |try-nesting|.
3954 When during execution of the finally clause (if present) an exception is
Bram Moolenaar58b85342016-08-14 19:54:54 +02003955thrown, the remaining lines in the finally clause are skipped. If the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956clause has been taken because of an exception from the try block or one of the
3957catch clauses, the original (pending) exception is discarded. The commands
3958following the ":endtry" are not executed, and the exception from the finally
3959clause is propagated and can be caught elsewhere, see |try-nesting|.
3960
3961The finally clause is also executed, when a ":break" or ":continue" for
3962a ":while" loop enclosing the complete try conditional is executed from the
3963try block or a catch clause. Or when a ":return" or ":finish" is executed
3964from the try block or a catch clause of a try conditional in a function or
3965sourced script, respectively. The ":break", ":continue", ":return", or
3966":finish" pends during execution of the finally clause and is resumed when the
3967":endtry" is reached. It is, however, discarded when an exception is thrown
3968from the finally clause.
3969 When a ":break" or ":continue" for a ":while" loop enclosing the complete
3970try conditional or when a ":return" or ":finish" is encountered in the finally
3971clause, the rest of the finally clause is skipped, and the ":break",
3972":continue", ":return" or ":finish" is executed as usual. If the finally
3973clause has been taken because of an exception or an earlier ":break",
3974":continue", ":return", or ":finish" from the try block or a catch clause,
3975this pending exception or command is discarded.
3976
3977For examples see |throw-catch| and |try-finally|.
3978
3979
3980NESTING OF TRY CONDITIONALS *try-nesting*
3981
3982Try conditionals can be nested arbitrarily. That is, a complete try
3983conditional can be put into the try block, a catch clause, or the finally
3984clause of another try conditional. If the inner try conditional does not
3985catch an exception thrown in its try block or throws a new exception from one
3986of its catch clauses or its finally clause, the outer try conditional is
3987checked according to the rules above. If the inner try conditional is in the
3988try block of the outer try conditional, its catch clauses are checked, but
Bram Moolenaar58b85342016-08-14 19:54:54 +02003989otherwise only the finally clause is executed. It does not matter for
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990nesting, whether the inner try conditional is directly contained in the outer
3991one, or whether the outer one sources a script or calls a function containing
3992the inner try conditional.
3993
3994When none of the active try conditionals catches an exception, just their
3995finally clauses are executed. Thereafter, the script processing terminates.
3996An error message is displayed in case of an uncaught exception explicitly
3997thrown by a ":throw" command. For uncaught error and interrupt exceptions
3998implicitly raised by Vim, the error message(s) or interrupt message are shown
3999as usual.
4000
4001For examples see |throw-catch|.
4002
4003
4004EXAMINING EXCEPTION HANDLING CODE *except-examine*
4005
4006Exception handling code can get tricky. If you are in doubt what happens, set
4007'verbose' to 13 or use the ":13verbose" command modifier when sourcing your
4008script file. Then you see when an exception is thrown, discarded, caught, or
4009finished. When using a verbosity level of at least 14, things pending in
4010a finally clause are also shown. This information is also given in debug mode
4011(see |debug-scripts|).
4012
4013
4014THROWING AND CATCHING EXCEPTIONS *throw-catch*
4015
4016You can throw any number or string as an exception. Use the |:throw| command
4017and pass the value to be thrown as argument: >
4018 :throw 4711
4019 :throw "string"
4020< *throw-expression*
4021You can also specify an expression argument. The expression is then evaluated
4022first, and the result is thrown: >
4023 :throw 4705 + strlen("string")
4024 :throw strpart("strings", 0, 6)
4025
4026An exception might be thrown during evaluation of the argument of the ":throw"
4027command. Unless it is caught there, the expression evaluation is abandoned.
4028The ":throw" command then does not throw a new exception.
4029 Example: >
4030
4031 :function! Foo(arg)
4032 : try
4033 : throw a:arg
4034 : catch /foo/
4035 : endtry
4036 : return 1
4037 :endfunction
4038 :
4039 :function! Bar()
4040 : echo "in Bar"
4041 : return 4710
4042 :endfunction
4043 :
4044 :throw Foo("arrgh") + Bar()
4045
4046This throws "arrgh", and "in Bar" is not displayed since Bar() is not
4047executed. >
4048 :throw Foo("foo") + Bar()
4049however displays "in Bar" and throws 4711.
4050
4051Any other command that takes an expression as argument might also be
Bram Moolenaar58b85342016-08-14 19:54:54 +02004052abandoned by an (uncaught) exception during the expression evaluation. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053exception is then propagated to the caller of the command.
4054 Example: >
4055
4056 :if Foo("arrgh")
4057 : echo "then"
4058 :else
4059 : echo "else"
4060 :endif
4061
4062Here neither of "then" or "else" is displayed.
4063
4064 *catch-order*
4065Exceptions can be caught by a try conditional with one or more |:catch|
4066commands, see |try-conditionals|. The values to be caught by each ":catch"
4067command can be specified as a pattern argument. The subsequent catch clause
4068gets executed when a matching exception is caught.
4069 Example: >
4070
4071 :function! Foo(value)
4072 : try
4073 : throw a:value
4074 : catch /^\d\+$/
4075 : echo "Number thrown"
4076 : catch /.*/
4077 : echo "String thrown"
4078 : endtry
4079 :endfunction
4080 :
4081 :call Foo(0x1267)
4082 :call Foo('string')
4083
4084The first call to Foo() displays "Number thrown", the second "String thrown".
4085An exception is matched against the ":catch" commands in the order they are
4086specified. Only the first match counts. So you should place the more
4087specific ":catch" first. The following order does not make sense: >
4088
4089 : catch /.*/
4090 : echo "String thrown"
4091 : catch /^\d\+$/
4092 : echo "Number thrown"
4093
4094The first ":catch" here matches always, so that the second catch clause is
4095never taken.
4096
4097 *throw-variables*
4098If you catch an exception by a general pattern, you may access the exact value
4099in the variable |v:exception|: >
4100
4101 : catch /^\d\+$/
4102 : echo "Number thrown. Value is" v:exception
4103
4104You may also be interested where an exception was thrown. This is stored in
4105|v:throwpoint|. Note that "v:exception" and "v:throwpoint" are valid for the
4106exception most recently caught as long it is not finished.
4107 Example: >
4108
4109 :function! Caught()
4110 : if v:exception != ""
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004111 : echo 'Caught "' . v:exception .. '" in ' .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 : else
4113 : echo 'Nothing caught'
4114 : endif
4115 :endfunction
4116 :
4117 :function! Foo()
4118 : try
4119 : try
4120 : try
4121 : throw 4711
4122 : finally
4123 : call Caught()
4124 : endtry
4125 : catch /.*/
4126 : call Caught()
4127 : throw "oops"
4128 : endtry
4129 : catch /.*/
4130 : call Caught()
4131 : finally
4132 : call Caught()
4133 : endtry
4134 :endfunction
4135 :
4136 :call Foo()
4137
4138This displays >
4139
4140 Nothing caught
4141 Caught "4711" in function Foo, line 4
4142 Caught "oops" in function Foo, line 10
4143 Nothing caught
4144
4145A practical example: The following command ":LineNumber" displays the line
4146number in the script or function where it has been used: >
4147
4148 :function! LineNumber()
4149 : return substitute(v:throwpoint, '.*\D\(\d\+\).*', '\1', "")
4150 :endfunction
4151 :command! LineNumber try | throw "" | catch | echo LineNumber() | endtry
4152<
4153 *try-nested*
4154An exception that is not caught by a try conditional can be caught by
4155a surrounding try conditional: >
4156
4157 :try
4158 : try
4159 : throw "foo"
4160 : catch /foobar/
4161 : echo "foobar"
4162 : finally
4163 : echo "inner finally"
4164 : endtry
4165 :catch /foo/
4166 : echo "foo"
4167 :endtry
4168
4169The inner try conditional does not catch the exception, just its finally
4170clause is executed. The exception is then caught by the outer try
4171conditional. The example displays "inner finally" and then "foo".
4172
4173 *throw-from-catch*
4174You can catch an exception and throw a new one to be caught elsewhere from the
4175catch clause: >
4176
4177 :function! Foo()
4178 : throw "foo"
4179 :endfunction
4180 :
4181 :function! Bar()
4182 : try
4183 : call Foo()
4184 : catch /foo/
4185 : echo "Caught foo, throw bar"
4186 : throw "bar"
4187 : endtry
4188 :endfunction
4189 :
4190 :try
4191 : call Bar()
4192 :catch /.*/
4193 : echo "Caught" v:exception
4194 :endtry
4195
4196This displays "Caught foo, throw bar" and then "Caught bar".
4197
4198 *rethrow*
4199There is no real rethrow in the Vim script language, but you may throw
4200"v:exception" instead: >
4201
4202 :function! Bar()
4203 : try
4204 : call Foo()
4205 : catch /.*/
4206 : echo "Rethrow" v:exception
4207 : throw v:exception
4208 : endtry
4209 :endfunction
4210< *try-echoerr*
4211Note that this method cannot be used to "rethrow" Vim error or interrupt
4212exceptions, because it is not possible to fake Vim internal exceptions.
4213Trying so causes an error exception. You should throw your own exception
4214denoting the situation. If you want to cause a Vim error exception containing
4215the original error exception value, you can use the |:echoerr| command: >
4216
4217 :try
4218 : try
4219 : asdf
4220 : catch /.*/
4221 : echoerr v:exception
4222 : endtry
4223 :catch /.*/
4224 : echo v:exception
4225 :endtry
4226
4227This code displays
4228
Bram Moolenaar446cb832008-06-24 21:56:24 +00004229 Vim(echoerr):Vim:E492: Not an editor command: asdf ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230
4231
4232CLEANUP CODE *try-finally*
4233
4234Scripts often change global settings and restore them at their end. If the
4235user however interrupts the script by pressing CTRL-C, the settings remain in
Bram Moolenaar58b85342016-08-14 19:54:54 +02004236an inconsistent state. The same may happen to you in the development phase of
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237a script when an error occurs or you explicitly throw an exception without
4238catching it. You can solve these problems by using a try conditional with
4239a finally clause for restoring the settings. Its execution is guaranteed on
4240normal control flow, on error, on an explicit ":throw", and on interrupt.
4241(Note that errors and interrupts from inside the try conditional are converted
Bram Moolenaar58b85342016-08-14 19:54:54 +02004242to exceptions. When not caught, they terminate the script after the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243clause has been executed.)
4244Example: >
4245
4246 :try
4247 : let s:saved_ts = &ts
4248 : set ts=17
4249 :
4250 : " Do the hard work here.
4251 :
4252 :finally
4253 : let &ts = s:saved_ts
4254 : unlet s:saved_ts
4255 :endtry
4256
4257This method should be used locally whenever a function or part of a script
4258changes global settings which need to be restored on failure or normal exit of
4259that function or script part.
4260
4261 *break-finally*
4262Cleanup code works also when the try block or a catch clause is left by
4263a ":continue", ":break", ":return", or ":finish".
4264 Example: >
4265
4266 :let first = 1
4267 :while 1
4268 : try
4269 : if first
4270 : echo "first"
4271 : let first = 0
4272 : continue
4273 : else
4274 : throw "second"
4275 : endif
4276 : catch /.*/
4277 : echo v:exception
4278 : break
4279 : finally
4280 : echo "cleanup"
4281 : endtry
4282 : echo "still in while"
4283 :endwhile
4284 :echo "end"
4285
4286This displays "first", "cleanup", "second", "cleanup", and "end". >
4287
4288 :function! Foo()
4289 : try
4290 : return 4711
4291 : finally
4292 : echo "cleanup\n"
4293 : endtry
4294 : echo "Foo still active"
4295 :endfunction
4296 :
4297 :echo Foo() "returned by Foo"
4298
4299This displays "cleanup" and "4711 returned by Foo". You don't need to add an
Bram Moolenaar58b85342016-08-14 19:54:54 +02004300extra ":return" in the finally clause. (Above all, this would override the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301return value.)
4302
4303 *except-from-finally*
4304Using either of ":continue", ":break", ":return", ":finish", or ":throw" in
4305a finally clause is possible, but not recommended since it abandons the
4306cleanup actions for the try conditional. But, of course, interrupt and error
4307exceptions might get raised from a finally clause.
4308 Example where an error in the finally clause stops an interrupt from
4309working correctly: >
4310
4311 :try
4312 : try
4313 : echo "Press CTRL-C for interrupt"
4314 : while 1
4315 : endwhile
4316 : finally
4317 : unlet novar
4318 : endtry
4319 :catch /novar/
4320 :endtry
4321 :echo "Script still running"
4322 :sleep 1
4323
4324If you need to put commands that could fail into a finally clause, you should
4325think about catching or ignoring the errors in these commands, see
4326|catch-errors| and |ignore-errors|.
4327
4328
4329CATCHING ERRORS *catch-errors*
4330
4331If you want to catch specific errors, you just have to put the code to be
4332watched in a try block and add a catch clause for the error message. The
4333presence of the try conditional causes all errors to be converted to an
4334exception. No message is displayed and |v:errmsg| is not set then. To find
4335the right pattern for the ":catch" command, you have to know how the format of
4336the error exception is.
4337 Error exceptions have the following format: >
4338
4339 Vim({cmdname}):{errmsg}
4340or >
4341 Vim:{errmsg}
4342
4343{cmdname} is the name of the command that failed; the second form is used when
Bram Moolenaar58b85342016-08-14 19:54:54 +02004344the command name is not known. {errmsg} is the error message usually produced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345when the error occurs outside try conditionals. It always begins with
4346a capital "E", followed by a two or three-digit error number, a colon, and
4347a space.
4348
4349Examples:
4350
4351The command >
4352 :unlet novar
4353normally produces the error message >
4354 E108: No such variable: "novar"
4355which is converted inside try conditionals to an exception >
4356 Vim(unlet):E108: No such variable: "novar"
4357
4358The command >
4359 :dwim
4360normally produces the error message >
4361 E492: Not an editor command: dwim
4362which is converted inside try conditionals to an exception >
4363 Vim:E492: Not an editor command: dwim
4364
4365You can catch all ":unlet" errors by a >
4366 :catch /^Vim(unlet):/
4367or all errors for misspelled command names by a >
4368 :catch /^Vim:E492:/
4369
4370Some error messages may be produced by different commands: >
4371 :function nofunc
4372and >
4373 :delfunction nofunc
4374both produce the error message >
4375 E128: Function name must start with a capital: nofunc
4376which is converted inside try conditionals to an exception >
4377 Vim(function):E128: Function name must start with a capital: nofunc
4378or >
4379 Vim(delfunction):E128: Function name must start with a capital: nofunc
4380respectively. You can catch the error by its number independently on the
4381command that caused it if you use the following pattern: >
4382 :catch /^Vim(\a\+):E128:/
4383
4384Some commands like >
4385 :let x = novar
4386produce multiple error messages, here: >
4387 E121: Undefined variable: novar
4388 E15: Invalid expression: novar
4389Only the first is used for the exception value, since it is the most specific
4390one (see |except-several-errors|). So you can catch it by >
4391 :catch /^Vim(\a\+):E121:/
4392
4393You can catch all errors related to the name "nofunc" by >
4394 :catch /\<nofunc\>/
4395
4396You can catch all Vim errors in the ":write" and ":read" commands by >
4397 :catch /^Vim(\(write\|read\)):E\d\+:/
4398
4399You can catch all Vim errors by the pattern >
4400 :catch /^Vim\((\a\+)\)\=:E\d\+:/
4401<
4402 *catch-text*
4403NOTE: You should never catch the error message text itself: >
4404 :catch /No such variable/
Bram Moolenaar2b8388b2015-02-28 13:11:45 +01004405only works in the English locale, but not when the user has selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406a different language by the |:language| command. It is however helpful to
4407cite the message text in a comment: >
4408 :catch /^Vim(\a\+):E108:/ " No such variable
4409
4410
4411IGNORING ERRORS *ignore-errors*
4412
4413You can ignore errors in a specific Vim command by catching them locally: >
4414
4415 :try
4416 : write
4417 :catch
4418 :endtry
4419
4420But you are strongly recommended NOT to use this simple form, since it could
4421catch more than you want. With the ":write" command, some autocommands could
4422be executed and cause errors not related to writing, for instance: >
4423
4424 :au BufWritePre * unlet novar
4425
4426There could even be such errors you are not responsible for as a script
4427writer: a user of your script might have defined such autocommands. You would
4428then hide the error from the user.
4429 It is much better to use >
4430
4431 :try
4432 : write
4433 :catch /^Vim(write):/
4434 :endtry
4435
4436which only catches real write errors. So catch only what you'd like to ignore
4437intentionally.
4438
4439For a single command that does not cause execution of autocommands, you could
4440even suppress the conversion of errors to exceptions by the ":silent!"
4441command: >
4442 :silent! nunmap k
4443This works also when a try conditional is active.
4444
4445
4446CATCHING INTERRUPTS *catch-interrupt*
4447
4448When there are active try conditionals, an interrupt (CTRL-C) is converted to
Bram Moolenaar58b85342016-08-14 19:54:54 +02004449the exception "Vim:Interrupt". You can catch it like every exception. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450script is not terminated, then.
4451 Example: >
4452
4453 :function! TASK1()
4454 : sleep 10
4455 :endfunction
4456
4457 :function! TASK2()
4458 : sleep 20
4459 :endfunction
4460
4461 :while 1
4462 : let command = input("Type a command: ")
4463 : try
4464 : if command == ""
4465 : continue
4466 : elseif command == "END"
4467 : break
4468 : elseif command == "TASK1"
4469 : call TASK1()
4470 : elseif command == "TASK2"
4471 : call TASK2()
4472 : else
4473 : echo "\nIllegal command:" command
4474 : continue
4475 : endif
4476 : catch /^Vim:Interrupt$/
4477 : echo "\nCommand interrupted"
4478 : " Caught the interrupt. Continue with next prompt.
4479 : endtry
4480 :endwhile
4481
4482You can interrupt a task here by pressing CTRL-C; the script then asks for
Bram Moolenaar58b85342016-08-14 19:54:54 +02004483a new command. If you press CTRL-C at the prompt, the script is terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484
4485For testing what happens when CTRL-C would be pressed on a specific line in
4486your script, use the debug mode and execute the |>quit| or |>interrupt|
4487command on that line. See |debug-scripts|.
4488
4489
4490CATCHING ALL *catch-all*
4491
4492The commands >
4493
4494 :catch /.*/
4495 :catch //
4496 :catch
4497
4498catch everything, error exceptions, interrupt exceptions and exceptions
4499explicitly thrown by the |:throw| command. This is useful at the top level of
4500a script in order to catch unexpected things.
4501 Example: >
4502
4503 :try
4504 :
4505 : " do the hard work here
4506 :
4507 :catch /MyException/
4508 :
4509 : " handle known problem
4510 :
4511 :catch /^Vim:Interrupt$/
4512 : echo "Script interrupted"
4513 :catch /.*/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004514 : echo "Internal error (" .. v:exception .. ")"
4515 : echo " - occurred at " .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 :endtry
4517 :" end of script
4518
4519Note: Catching all might catch more things than you want. Thus, you are
4520strongly encouraged to catch only for problems that you can really handle by
4521specifying a pattern argument to the ":catch".
4522 Example: Catching all could make it nearly impossible to interrupt a script
4523by pressing CTRL-C: >
4524
4525 :while 1
4526 : try
4527 : sleep 1
4528 : catch
4529 : endtry
4530 :endwhile
4531
4532
4533EXCEPTIONS AND AUTOCOMMANDS *except-autocmd*
4534
4535Exceptions may be used during execution of autocommands. Example: >
4536
4537 :autocmd User x try
4538 :autocmd User x throw "Oops!"
4539 :autocmd User x catch
4540 :autocmd User x echo v:exception
4541 :autocmd User x endtry
4542 :autocmd User x throw "Arrgh!"
4543 :autocmd User x echo "Should not be displayed"
4544 :
4545 :try
4546 : doautocmd User x
4547 :catch
4548 : echo v:exception
4549 :endtry
4550
4551This displays "Oops!" and "Arrgh!".
4552
4553 *except-autocmd-Pre*
4554For some commands, autocommands get executed before the main action of the
4555command takes place. If an exception is thrown and not caught in the sequence
4556of autocommands, the sequence and the command that caused its execution are
4557abandoned and the exception is propagated to the caller of the command.
4558 Example: >
4559
4560 :autocmd BufWritePre * throw "FAIL"
4561 :autocmd BufWritePre * echo "Should not be displayed"
4562 :
4563 :try
4564 : write
4565 :catch
4566 : echo "Caught:" v:exception "from" v:throwpoint
4567 :endtry
4568
4569Here, the ":write" command does not write the file currently being edited (as
4570you can see by checking 'modified'), since the exception from the BufWritePre
4571autocommand abandons the ":write". The exception is then caught and the
4572script displays: >
4573
4574 Caught: FAIL from BufWrite Auto commands for "*"
4575<
4576 *except-autocmd-Post*
4577For some commands, autocommands get executed after the main action of the
4578command has taken place. If this main action fails and the command is inside
4579an active try conditional, the autocommands are skipped and an error exception
4580is thrown that can be caught by the caller of the command.
4581 Example: >
4582
4583 :autocmd BufWritePost * echo "File successfully written!"
4584 :
4585 :try
4586 : write /i/m/p/o/s/s/i/b/l/e
4587 :catch
4588 : echo v:exception
4589 :endtry
4590
4591This just displays: >
4592
4593 Vim(write):E212: Can't open file for writing (/i/m/p/o/s/s/i/b/l/e)
4594
4595If you really need to execute the autocommands even when the main action
4596fails, trigger the event from the catch clause.
4597 Example: >
4598
4599 :autocmd BufWritePre * set noreadonly
4600 :autocmd BufWritePost * set readonly
4601 :
4602 :try
4603 : write /i/m/p/o/s/s/i/b/l/e
4604 :catch
4605 : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e
4606 :endtry
4607<
4608You can also use ":silent!": >
4609
4610 :let x = "ok"
4611 :let v:errmsg = ""
4612 :autocmd BufWritePost * if v:errmsg != ""
4613 :autocmd BufWritePost * let x = "after fail"
4614 :autocmd BufWritePost * endif
4615 :try
4616 : silent! write /i/m/p/o/s/s/i/b/l/e
4617 :catch
4618 :endtry
4619 :echo x
4620
4621This displays "after fail".
4622
4623If the main action of the command does not fail, exceptions from the
4624autocommands will be catchable by the caller of the command: >
4625
4626 :autocmd BufWritePost * throw ":-("
4627 :autocmd BufWritePost * echo "Should not be displayed"
4628 :
4629 :try
4630 : write
4631 :catch
4632 : echo v:exception
4633 :endtry
4634<
4635 *except-autocmd-Cmd*
4636For some commands, the normal action can be replaced by a sequence of
4637autocommands. Exceptions from that sequence will be catchable by the caller
4638of the command.
4639 Example: For the ":write" command, the caller cannot know whether the file
Bram Moolenaar58b85342016-08-14 19:54:54 +02004640had actually been written when the exception occurred. You need to tell it in
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641some way. >
4642
4643 :if !exists("cnt")
4644 : let cnt = 0
4645 :
4646 : autocmd BufWriteCmd * if &modified
4647 : autocmd BufWriteCmd * let cnt = cnt + 1
4648 : autocmd BufWriteCmd * if cnt % 3 == 2
4649 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4650 : autocmd BufWriteCmd * endif
4651 : autocmd BufWriteCmd * write | set nomodified
4652 : autocmd BufWriteCmd * if cnt % 3 == 0
4653 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4654 : autocmd BufWriteCmd * endif
4655 : autocmd BufWriteCmd * echo "File successfully written!"
4656 : autocmd BufWriteCmd * endif
4657 :endif
4658 :
4659 :try
4660 : write
4661 :catch /^BufWriteCmdError$/
4662 : if &modified
4663 : echo "Error on writing (file contents not changed)"
4664 : else
4665 : echo "Error after writing"
4666 : endif
4667 :catch /^Vim(write):/
4668 : echo "Error on writing"
4669 :endtry
4670
4671When this script is sourced several times after making changes, it displays
4672first >
4673 File successfully written!
4674then >
4675 Error on writing (file contents not changed)
4676then >
4677 Error after writing
4678etc.
4679
4680 *except-autocmd-ill*
4681You cannot spread a try conditional over autocommands for different events.
4682The following code is ill-formed: >
4683
4684 :autocmd BufWritePre * try
4685 :
4686 :autocmd BufWritePost * catch
4687 :autocmd BufWritePost * echo v:exception
4688 :autocmd BufWritePost * endtry
4689 :
4690 :write
4691
4692
4693EXCEPTION HIERARCHIES AND PARAMETERIZED EXCEPTIONS *except-hier-param*
4694
4695Some programming languages allow to use hierarchies of exception classes or to
4696pass additional information with the object of an exception class. You can do
4697similar things in Vim.
4698 In order to throw an exception from a hierarchy, just throw the complete
4699class name with the components separated by a colon, for instance throw the
4700string "EXCEPT:MATHERR:OVERFLOW" for an overflow in a mathematical library.
4701 When you want to pass additional information with your exception class, add
4702it in parentheses, for instance throw the string "EXCEPT:IO:WRITEERR(myfile)"
4703for an error when writing "myfile".
4704 With the appropriate patterns in the ":catch" command, you can catch for
4705base classes or derived classes of your hierarchy. Additional information in
4706parentheses can be cut out from |v:exception| with the ":substitute" command.
4707 Example: >
4708
4709 :function! CheckRange(a, func)
4710 : if a:a < 0
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004711 : throw "EXCEPT:MATHERR:RANGE(" .. a:func .. ")"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 : endif
4713 :endfunction
4714 :
4715 :function! Add(a, b)
4716 : call CheckRange(a:a, "Add")
4717 : call CheckRange(a:b, "Add")
4718 : let c = a:a + a:b
4719 : if c < 0
4720 : throw "EXCEPT:MATHERR:OVERFLOW"
4721 : endif
4722 : return c
4723 :endfunction
4724 :
4725 :function! Div(a, b)
4726 : call CheckRange(a:a, "Div")
4727 : call CheckRange(a:b, "Div")
4728 : if (a:b == 0)
4729 : throw "EXCEPT:MATHERR:ZERODIV"
4730 : endif
4731 : return a:a / a:b
4732 :endfunction
4733 :
4734 :function! Write(file)
4735 : try
Bram Moolenaar446cb832008-06-24 21:56:24 +00004736 : execute "write" fnameescape(a:file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 : catch /^Vim(write):/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004738 : throw "EXCEPT:IO(" .. getcwd() .. ", " .. a:file .. "):WRITEERR"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 : endtry
4740 :endfunction
4741 :
4742 :try
4743 :
Bram Moolenaar75ab5902022-04-18 15:36:40 +01004744 : " something with arithmetic and I/O
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 :
4746 :catch /^EXCEPT:MATHERR:RANGE/
4747 : let function = substitute(v:exception, '.*(\(\a\+\)).*', '\1', "")
4748 : echo "Range error in" function
4749 :
4750 :catch /^EXCEPT:MATHERR/ " catches OVERFLOW and ZERODIV
4751 : echo "Math error"
4752 :
4753 :catch /^EXCEPT:IO/
4754 : let dir = substitute(v:exception, '.*(\(.\+\),\s*.\+).*', '\1', "")
4755 : let file = substitute(v:exception, '.*(.\+,\s*\(.\+\)).*', '\1', "")
4756 : if file !~ '^/'
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004757 : let file = dir .. "/" .. file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 : endif
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004759 : echo 'I/O error for "' .. file .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 :
4761 :catch /^EXCEPT/
4762 : echo "Unspecified error"
4763 :
4764 :endtry
4765
4766The exceptions raised by Vim itself (on error or when pressing CTRL-C) use
4767a flat hierarchy: they are all in the "Vim" class. You cannot throw yourself
4768exceptions with the "Vim" prefix; they are reserved for Vim.
4769 Vim error exceptions are parameterized with the name of the command that
4770failed, if known. See |catch-errors|.
4771
4772
4773PECULIARITIES
4774 *except-compat*
4775The exception handling concept requires that the command sequence causing the
4776exception is aborted immediately and control is transferred to finally clauses
4777and/or a catch clause.
4778
4779In the Vim script language there are cases where scripts and functions
4780continue after an error: in functions without the "abort" flag or in a command
4781after ":silent!", control flow goes to the following line, and outside
4782functions, control flow goes to the line following the outermost ":endwhile"
4783or ":endif". On the other hand, errors should be catchable as exceptions
4784(thus, requiring the immediate abortion).
4785
4786This problem has been solved by converting errors to exceptions and using
4787immediate abortion (if not suppressed by ":silent!") only when a try
Bram Moolenaar58b85342016-08-14 19:54:54 +02004788conditional is active. This is no restriction since an (error) exception can
4789be caught only from an active try conditional. If you want an immediate
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790termination without catching the error, just use a try conditional without
4791catch clause. (You can cause cleanup code being executed before termination
4792by specifying a finally clause.)
4793
4794When no try conditional is active, the usual abortion and continuation
4795behavior is used instead of immediate abortion. This ensures compatibility of
4796scripts written for Vim 6.1 and earlier.
4797
4798However, when sourcing an existing script that does not use exception handling
4799commands (or when calling one of its functions) from inside an active try
4800conditional of a new script, you might change the control flow of the existing
4801script on error. You get the immediate abortion on error and can catch the
4802error in the new script. If however the sourced script suppresses error
4803messages by using the ":silent!" command (checking for errors by testing
Bram Moolenaar58b85342016-08-14 19:54:54 +02004804|v:errmsg| if appropriate), its execution path is not changed. The error is
4805not converted to an exception. (See |:silent|.) So the only remaining cause
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806where this happens is for scripts that don't care about errors and produce
4807error messages. You probably won't want to use such code from your new
4808scripts.
4809
4810 *except-syntax-err*
4811Syntax errors in the exception handling commands are never caught by any of
4812the ":catch" commands of the try conditional they belong to. Its finally
4813clauses, however, is executed.
4814 Example: >
4815
4816 :try
4817 : try
4818 : throw 4711
4819 : catch /\(/
4820 : echo "in catch with syntax error"
4821 : catch
4822 : echo "inner catch-all"
4823 : finally
4824 : echo "inner finally"
4825 : endtry
4826 :catch
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004827 : echo 'outer catch-all caught "' .. v:exception .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 : finally
4829 : echo "outer finally"
4830 :endtry
4831
4832This displays: >
4833 inner finally
4834 outer catch-all caught "Vim(catch):E54: Unmatched \("
4835 outer finally
4836The original exception is discarded and an error exception is raised, instead.
4837
4838 *except-single-line*
4839The ":try", ":catch", ":finally", and ":endtry" commands can be put on
4840a single line, but then syntax errors may make it difficult to recognize the
4841"catch" line, thus you better avoid this.
4842 Example: >
4843 :try | unlet! foo # | catch | endtry
4844raises an error exception for the trailing characters after the ":unlet!"
4845argument, but does not see the ":catch" and ":endtry" commands, so that the
4846error exception is discarded and the "E488: Trailing characters" message gets
4847displayed.
4848
4849 *except-several-errors*
4850When several errors appear in a single command, the first error message is
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +02004851usually the most specific one and therefore converted to the error exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 Example: >
4853 echo novar
4854causes >
4855 E121: Undefined variable: novar
4856 E15: Invalid expression: novar
4857The value of the error exception inside try conditionals is: >
4858 Vim(echo):E121: Undefined variable: novar
4859< *except-syntax-error*
4860But when a syntax error is detected after a normal error in the same command,
4861the syntax error is used for the exception being thrown.
4862 Example: >
4863 unlet novar #
4864causes >
4865 E108: No such variable: "novar"
4866 E488: Trailing characters
4867The value of the error exception inside try conditionals is: >
4868 Vim(unlet):E488: Trailing characters
4869This is done because the syntax error might change the execution path in a way
4870not intended by the user. Example: >
4871 try
4872 try | unlet novar # | catch | echo v:exception | endtry
4873 catch /.*/
4874 echo "outer catch:" v:exception
4875 endtry
4876This displays "outer catch: Vim(unlet):E488: Trailing characters", and then
4877a "E600: Missing :endtry" error message is given, see |except-single-line|.
4878
4879==============================================================================
48809. Examples *eval-examples*
4881
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004882Printing in Binary ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883>
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01004884 :" The function Nr2Bin() returns the binary string representation of a number.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004885 :func Nr2Bin(nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 : let n = a:nr
4887 : let r = ""
4888 : while n
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004889 : let r = '01'[n % 2] .. r
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004890 : let n = n / 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 : endwhile
4892 : return r
4893 :endfunc
4894
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004895 :" The function String2Bin() converts each character in a string to a
4896 :" binary string, separated with dashes.
4897 :func String2Bin(str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 : let out = ''
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004899 : for ix in range(strlen(a:str))
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004900 : let out = out .. '-' .. Nr2Bin(char2nr(a:str[ix]))
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004901 : endfor
4902 : return out[1:]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 :endfunc
4904
4905Example of its use: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004906 :echo Nr2Bin(32)
4907result: "100000" >
4908 :echo String2Bin("32")
4909result: "110011-110010"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910
4911
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004912Sorting lines ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004914This example sorts lines with a specific compare function. >
4915
4916 :func SortBuffer()
4917 : let lines = getline(1, '$')
4918 : call sort(lines, function("Strcmp"))
4919 : call setline(1, lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 :endfunction
4921
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004922As a one-liner: >
4923 :call setline(1, sort(getline(1, '$'), function("Strcmp")))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004926scanf() replacement ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 *sscanf*
4928There is no sscanf() function in Vim. If you need to extract parts from a
4929line, you can use matchstr() and substitute() to do it. This example shows
4930how to get the file name, line number and column number out of a line like
4931"foobar.txt, 123, 45". >
4932 :" Set up the match bit
4933 :let mx='\(\f\+\),\s*\(\d\+\),\s*\(\d\+\)'
4934 :"get the part matching the whole expression
4935 :let l = matchstr(line, mx)
4936 :"get each item out of the match
4937 :let file = substitute(l, mx, '\1', '')
4938 :let lnum = substitute(l, mx, '\2', '')
4939 :let col = substitute(l, mx, '\3', '')
4940
4941The input is in the variable "line", the results in the variables "file",
4942"lnum" and "col". (idea from Michael Geddes)
4943
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004944
4945getting the scriptnames in a Dictionary ~
4946 *scriptnames-dictionary*
4947The |:scriptnames| command can be used to get a list of all script files that
4948have been sourced. There is no equivalent function or variable for this
4949(because it's rarely needed). In case you need to manipulate the list this
4950code can be used: >
4951 " Get the output of ":scriptnames" in the scriptnames_output variable.
4952 let scriptnames_output = ''
4953 redir => scriptnames_output
4954 silent scriptnames
4955 redir END
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01004956
Bram Moolenaar446cb832008-06-24 21:56:24 +00004957 " Split the output into lines and parse each line. Add an entry to the
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004958 " "scripts" dictionary.
4959 let scripts = {}
4960 for line in split(scriptnames_output, "\n")
4961 " Only do non-blank lines.
4962 if line =~ '\S'
4963 " Get the first number in the line.
Bram Moolenaar446cb832008-06-24 21:56:24 +00004964 let nr = matchstr(line, '\d\+')
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004965 " Get the file name, remove the script number " 123: ".
Bram Moolenaar446cb832008-06-24 21:56:24 +00004966 let name = substitute(line, '.\+:\s*', '', '')
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004967 " Add an item to the Dictionary
Bram Moolenaar446cb832008-06-24 21:56:24 +00004968 let scripts[nr] = name
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004969 endif
4970 endfor
4971 unlet scriptnames_output
4972
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200497410. Vim script versions *vimscript-version* *vimscript-versions*
Bram Moolenaar911ead12019-04-21 00:03:35 +02004975 *scriptversion*
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004976Over time many features have been added to Vim script. This includes Ex
4977commands, functions, variable types, etc. Each individual feature can be
4978checked with the |has()| and |exists()| functions.
4979
4980Sometimes old syntax of functionality gets in the way of making Vim better.
4981When support is taken away this will break older Vim scripts. To make this
4982explicit the |:scriptversion| command can be used. When a Vim script is not
4983compatible with older versions of Vim this will give an explicit error,
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004984instead of failing in mysterious ways.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004985
Bram Moolenaara2baa732022-02-04 16:09:54 +00004986When using a legacy function, defined with `:function`, in |Vim9| script then
4987scriptversion 4 is used.
4988
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004989 *scriptversion-1* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004990 :scriptversion 1
4991< This is the original Vim script, same as not using a |:scriptversion|
4992 command. Can be used to go back to old syntax for a range of lines.
4993 Test for support with: >
4994 has('vimscript-1')
4995
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004996< *scriptversion-2* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004997 :scriptversion 2
Bram Moolenaar68e65602019-05-26 21:33:31 +02004998< String concatenation with "." is not supported, use ".." instead.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004999 This avoids the ambiguity using "." for Dict member access and
5000 floating point numbers. Now ".5" means the number 0.5.
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02005001
5002 *scriptversion-3* >
Bram Moolenaar911ead12019-04-21 00:03:35 +02005003 :scriptversion 3
5004< All |vim-variable|s must be prefixed by "v:". E.g. "version" doesn't
5005 work as |v:version| anymore, it can be used as a normal variable.
5006 Same for some obvious names as "count" and others.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02005007
Bram Moolenaar911ead12019-04-21 00:03:35 +02005008 Test for support with: >
5009 has('vimscript-3')
Bram Moolenaar60a8de22019-09-15 14:33:22 +02005010<
5011 *scriptversion-4* >
5012 :scriptversion 4
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02005013< Numbers with a leading zero are not recognized as octal. "0o" or "0O"
5014 is still recognized as octal. With the
Bram Moolenaar60a8de22019-09-15 14:33:22 +02005015 previous version you get: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02005016 echo 017 " displays 15 (octal)
5017 echo 0o17 " displays 15 (octal)
5018 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02005019< with script version 4: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02005020 echo 017 " displays 17 (decimal)
5021 echo 0o17 " displays 15 (octal)
5022 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02005023< Also, it is possible to use single quotes inside numbers to make them
5024 easier to read: >
5025 echo 1'000'000
5026< The quotes must be surrounded by digits.
5027
5028 Test for support with: >
5029 has('vimscript-4')
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02005030
5031==============================================================================
503211. No +eval feature *no-eval-feature*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033
5034When the |+eval| feature was disabled at compile time, none of the expression
5035evaluation commands are available. To prevent this from causing Vim scripts
5036to generate all kinds of errors, the ":if" and ":endif" commands are still
5037recognized, though the argument of the ":if" and everything between the ":if"
5038and the matching ":endif" is ignored. Nesting of ":if" blocks is allowed, but
5039only if the commands are at the start of the line. The ":else" command is not
5040recognized.
5041
5042Example of how to avoid executing commands when the |+eval| feature is
5043missing: >
5044
5045 :if 1
5046 : echo "Expression evaluation is compiled in"
5047 :else
5048 : echo "You will _never_ see this message"
5049 :endif
5050
Bram Moolenaar773a97c2019-06-06 20:39:55 +02005051To execute a command only when the |+eval| feature is disabled can be done in
5052two ways. The simplest is to exit the script (or Vim) prematurely: >
5053 if 1
5054 echo "commands executed with +eval"
5055 finish
5056 endif
5057 args " command executed without +eval
5058
5059If you do not want to abort loading the script you can use a trick, as this
5060example shows: >
Bram Moolenaar45d2cca2017-04-30 16:36:05 +02005061
5062 silent! while 0
5063 set history=111
5064 silent! endwhile
5065
5066When the |+eval| feature is available the command is skipped because of the
5067"while 0". Without the |+eval| feature the "while 0" is an error, which is
5068silently ignored, and the command is executed.
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +02005069
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070==============================================================================
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000507112. The sandbox *eval-sandbox* *sandbox*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072
Bram Moolenaar368373e2010-07-19 20:46:22 +02005073The 'foldexpr', 'formatexpr', 'includeexpr', 'indentexpr', 'statusline' and
5074'foldtext' options may be evaluated in a sandbox. This means that you are
5075protected from these expressions having nasty side effects. This gives some
5076safety for when these options are set from a modeline. It is also used when
5077the command from a tags file is executed and for CTRL-R = in the command line.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00005078The sandbox is also used for the |:sandbox| command.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00005079 *E48*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080These items are not allowed in the sandbox:
5081 - changing the buffer text
Bram Moolenaarb477af22018-07-15 20:20:18 +02005082 - defining or changing mapping, autocommands, user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 - setting certain options (see |option-summary|)
Bram Moolenaaref2f6562007-05-06 13:32:59 +00005084 - setting certain v: variables (see |v:var|) *E794*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 - executing a shell command
5086 - reading or writing a file
5087 - jumping to another buffer or editing a file
Bram Moolenaar4770d092006-01-12 23:22:24 +00005088 - executing Python, Perl, etc. commands
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00005089This is not guaranteed 100% secure, but it should block most attacks.
5090
5091 *:san* *:sandbox*
Bram Moolenaar045e82d2005-07-08 22:25:33 +00005092:san[dbox] {cmd} Execute {cmd} in the sandbox. Useful to evaluate an
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00005093 option that may have been set from a modeline, e.g.
5094 'foldexpr'.
5095
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005096 *sandbox-option*
5097A few options contain an expression. When this expression is evaluated it may
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00005098have to be done in the sandbox to avoid a security risk. But the sandbox is
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005099restrictive, thus this only happens when the option was set from an insecure
5100location. Insecure in this context are:
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00005101- sourcing a .vimrc or .exrc in the current directory
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005102- while executing in the sandbox
5103- value coming from a modeline
Bram Moolenaarb477af22018-07-15 20:20:18 +02005104- executing a function that was defined in the sandbox
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005105
5106Note that when in the sandbox and saving an option value and restoring it, the
5107option will still be marked as it was set in the sandbox.
5108
5109==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200511013. Textlock *textlock*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005111
5112In a few situations it is not allowed to change the text in the buffer, jump
5113to another window and some other things that might confuse or break what Vim
5114is currently doing. This mostly applies to things that happen when Vim is
Bram Moolenaar58b85342016-08-14 19:54:54 +02005115actually doing something else. For example, evaluating the 'balloonexpr' may
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005116happen any moment the mouse cursor is resting at some position.
5117
5118This is not allowed when the textlock is active:
5119 - changing the buffer text
5120 - jumping to another buffer or window
5121 - editing another file
5122 - closing a window or quitting Vim
5123 - etc.
5124
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125
Bram Moolenaar91f84f62018-07-29 15:07:52 +02005126 vim:tw=78:ts=8:noet:ft=help:norl: