blob: dca886e85c82ef490559c2d3616fbff0684c2710 [file] [log] [blame]
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001*eval.txt* For Vim version 8.2. Last change: 2021 Dec 28
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*
8
9Using expressions is introduced in chapter 41 of the user manual |usr_41.txt|.
10
11Note: Expression evaluation can be disabled at compile time. If this has been
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
16specifics of Vim9 script, which executes much faster, supports type checking
17and much more, see |vim9.txt|. Where the syntax or semantics differ a remark
18is 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 Moolenaarbf821bc2019-01-23 21:15:02 +010047 *E712* *E896* *E897* *E899*
Bram Moolenaar06fe74a2019-08-31 16:20:32 +020048There are ten types of variables:
Bram Moolenaar071d4272004-06-13 20:20:40 +000049
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010050 *Number* *Integer*
51Number A 32 or 64 bit signed number. |expr-number|
Bram Moolenaarf9706e92020-02-22 14:27:04 +010052 The number of bits is available in |v:numbersize|.
Bram Moolenaar6f02b002021-01-10 20:22:54 +010053 Examples: -123 0x10 0177 0o177 0b1011
Bram Moolenaard8b02732005-01-14 21:48:43 +000054
Bram Moolenaar446cb832008-06-24 21:56:24 +000055Float A floating point number. |floating-point-format| *Float*
56 {only when compiled with the |+float| feature}
57 Examples: 123.456 1.15e-6 -1.1e3
58
Bram Moolenaard8b02732005-01-14 21:48:43 +000059String A NUL terminated string of 8-bit unsigned characters (bytes).
Bram Moolenaar446cb832008-06-24 21:56:24 +000060 |expr-string| Examples: "ab\txx\"--" 'x-z''a,c'
Bram Moolenaard8b02732005-01-14 21:48:43 +000061
Bram Moolenaard8968242019-01-15 22:51:57 +010062List An ordered sequence of items, see |List| for details.
Bram Moolenaard8b02732005-01-14 21:48:43 +000063 Example: [1, 2, ['a', 'b']]
Bram Moolenaar071d4272004-06-13 20:20:40 +000064
Bram Moolenaar39a58ca2005-06-27 22:42:44 +000065Dictionary An associative, unordered array: Each entry has a key and a
66 value. |Dictionary|
Bram Moolenaard5abb4c2019-07-13 22:46:10 +020067 Examples:
68 {'blue': "#0000ff", 'red': "#ff0000"}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +020069 #{blue: "#0000ff", red: "#ff0000"}
Bram Moolenaar39a58ca2005-06-27 22:42:44 +000070
Bram Moolenaar835dc632016-02-07 14:27:38 +010071Funcref A reference to a function |Funcref|.
72 Example: function("strlen")
Bram Moolenaar1d429612016-05-24 15:44:17 +020073 It can be bound to a dictionary and arguments, it then works
74 like a Partial.
75 Example: function("Callback", [arg], myDict)
Bram Moolenaar835dc632016-02-07 14:27:38 +010076
Bram Moolenaar02e83b42016-02-21 20:10:26 +010077Special |v:false|, |v:true|, |v:none| and |v:null|. *Special*
Bram Moolenaar835dc632016-02-07 14:27:38 +010078
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +020079Job Used for a job, see |job_start()|. *Job* *Jobs*
Bram Moolenaar38a55632016-02-15 22:07:32 +010080
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +020081Channel Used for a channel, see |ch_open()|. *Channel* *Channels*
Bram Moolenaar835dc632016-02-07 14:27:38 +010082
Bram Moolenaard8968242019-01-15 22:51:57 +010083Blob Binary Large Object. Stores any sequence of bytes. See |Blob|
84 for details
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +010085 Example: 0zFF00ED015DAF
86 0z is an empty Blob.
87
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +000088The Number and String types are converted automatically, depending on how they
89are used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000090
91Conversion from a Number to a String is by making the ASCII representation of
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +020092the Number. Examples:
93 Number 123 --> String "123" ~
94 Number 0 --> String "0" ~
95 Number -1 --> String "-1" ~
Bram Moolenaar00a927d2010-05-14 23:24:24 +020096 *octal*
Bram Moolenaard43906d2020-07-20 21:31:32 +020097Conversion from a String to a Number only happens in legacy Vim script, not in
98Vim9 script. It is done by converting the first digits to a number.
99Hexadecimal "0xf9", Octal "017" or "0o17", and Binary "0b10"
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100100numbers are recognized
Bram Moolenaar5da36052021-12-27 15:39:57 +0000101NOTE: when using |Vim9| script or |scriptversion-4| octal with a leading "0"
102is not recognized. The 0o notation requires patch 8.2.0886.
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100103If the String doesn't start with digits, the result is zero.
Bram Moolenaarfa735342016-01-03 22:14:44 +0100104Examples:
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200105 String "456" --> Number 456 ~
106 String "6bar" --> Number 6 ~
107 String "foo" --> Number 0 ~
108 String "0xf1" --> Number 241 ~
109 String "0100" --> Number 64 ~
Bram Moolenaarc17e66c2020-06-02 21:38:22 +0200110 String "0o100" --> Number 64 ~
Bram Moolenaarfa735342016-01-03 22:14:44 +0100111 String "0b101" --> Number 5 ~
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200112 String "-8" --> Number -8 ~
113 String "+8" --> Number 0 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114
115To force conversion from String to Number, add zero to it: >
116 :echo "0100" + 0
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000117< 64 ~
118
119To avoid a leading zero to cause octal conversion, or for using a different
120base, use |str2nr()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121
Bram Moolenaard09091d2019-01-17 16:07:22 +0100122 *TRUE* *FALSE* *Boolean*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123For boolean operators Numbers are used. Zero is FALSE, non-zero is TRUE.
Bram Moolenaar6aa57292021-08-14 21:25:52 +0200124You can also use |v:false| and |v:true|, in Vim9 script |false| and |true|.
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200125When TRUE is returned from a function it is the Number one, FALSE is the
126number zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200128Note that in the command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129 :if "foo"
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200130 :" NOT executed
131"foo" is converted to 0, which means FALSE. If the string starts with a
132non-zero number it means TRUE: >
133 :if "8foo"
134 :" executed
135To test for a non-empty string, use empty(): >
Bram Moolenaar3a0d8092012-10-21 03:02:54 +0200136 :if !empty("foo")
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200137
138< *falsy* *truthy*
139An expression can be used as a condition, ignoring the type and only using
140whether the value is "sort of true" or "sort of false". Falsy is:
141 the number zero
142 empty string, blob, list or dictionary
143Other values are truthy. Examples:
144 0 falsy
145 1 truthy
146 -1 truthy
147 0.0 falsy
148 0.1 truthy
149 '' falsy
150 'x' truthy
151 [] falsy
152 [0] truthy
153 {} falsy
154 #{x: 1} truthy
155 0z falsy
156 0z00 truthy
157
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200158 *non-zero-arg*
159Function arguments often behave slightly different from |TRUE|: If the
160argument is present and it evaluates to a non-zero Number, |v:true| or a
Bram Moolenaar64d8e252016-09-06 22:12:34 +0200161non-empty String, then the value is considered to be TRUE.
Bram Moolenaar01164a62017-11-02 22:58:42 +0100162Note that " " and "0" are also non-empty strings, thus considered to be TRUE.
163A List, Dictionary or Float is not a Number or String, thus evaluate to FALSE.
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200164
Bram Moolenaar38a55632016-02-15 22:07:32 +0100165 *E745* *E728* *E703* *E729* *E730* *E731* *E908* *E910* *E913*
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100166 *E974* *E975* *E976*
Bram Moolenaard09091d2019-01-17 16:07:22 +0100167|List|, |Dictionary|, |Funcref|, |Job|, |Channel| and |Blob| types are not
168automatically converted.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000169
Bram Moolenaar446cb832008-06-24 21:56:24 +0000170 *E805* *E806* *E808*
Bram Moolenaar58b85342016-08-14 19:54:54 +0200171When mixing Number and Float the Number is converted to Float. Otherwise
Bram Moolenaar446cb832008-06-24 21:56:24 +0000172there is no automatic conversion of Float. You can use str2float() for String
173to Float, printf() for Float to String and float2nr() for Float to Number.
174
Bram Moolenaar38a55632016-02-15 22:07:32 +0100175 *E891* *E892* *E893* *E894* *E907* *E911* *E914*
Bram Moolenaar13d5aee2016-01-21 23:36:05 +0100176When expecting a Float a Number can also be used, but nothing else.
177
Bram Moolenaarf6f32c32016-03-12 19:03:59 +0100178 *no-type-checking*
179You will not get an error if you try to change the type of a variable.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000180
Bram Moolenaar13065c42005-01-08 16:08:21 +0000181
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001821.2 Function references ~
Bram Moolenaare46a4402020-06-30 20:38:27 +0200183 *Funcref* *E695* *E718*
Bram Moolenaar58b85342016-08-14 19:54:54 +0200184A Funcref variable is obtained with the |function()| function, the |funcref()|
185function or created with the lambda expression |expr-lambda|. It can be used
186in an expression in the place of a function name, before the parenthesis
187around the arguments, to invoke the function it refers to. Example: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000188
189 :let Fn = function("MyFunc")
190 :echo Fn()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000191< *E704* *E705* *E707*
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000192A Funcref variable must start with a capital, "s:", "w:", "t:" or "b:". You
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200193can use "g:" but the following name must still start with a capital. You
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000194cannot have both a Funcref variable and a function with the same name.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000195
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000196A special case is defining a function and directly assigning its Funcref to a
197Dictionary entry. Example: >
198 :function dict.init() dict
199 : let self.val = 0
200 :endfunction
201
202The key of the Dictionary can start with a lower case letter. The actual
203function name is not used here. Also see |numbered-function|.
204
205A Funcref can also be used with the |:call| command: >
206 :call Fn()
207 :call dict.init()
Bram Moolenaar13065c42005-01-08 16:08:21 +0000208
209The name of the referenced function can be obtained with |string()|. >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000210 :let func = string(Fn)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000211
212You can use |call()| to invoke a Funcref and use a list variable for the
213arguments: >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000214 :let r = call(Fn, mylist)
Bram Moolenaar1d429612016-05-24 15:44:17 +0200215<
216 *Partial*
217A Funcref optionally binds a Dictionary and/or arguments. This is also called
218a Partial. This is created by passing the Dictionary and/or arguments to
Bram Moolenaar58b85342016-08-14 19:54:54 +0200219function() or funcref(). When calling the function the Dictionary and/or
220arguments will be passed to the function. Example: >
Bram Moolenaar1d429612016-05-24 15:44:17 +0200221
222 let Cb = function('Callback', ['foo'], myDict)
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100223 call Cb('bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200224
225This will invoke the function as if using: >
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100226 call myDict.Callback('foo', 'bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200227
228This is very useful when passing a function around, e.g. in the arguments of
229|ch_open()|.
230
231Note that binding a function to a Dictionary also happens when the function is
232a member of the Dictionary: >
233
234 let myDict.myFunction = MyFunction
235 call myDict.myFunction()
236
237Here MyFunction() will get myDict passed as "self". This happens when the
238"myFunction" member is accessed. When making assigning "myFunction" to
239otherDict and calling it, it will be bound to otherDict: >
240
241 let otherDict.myFunction = myDict.myFunction
242 call otherDict.myFunction()
243
244Now "self" will be "otherDict". But when the dictionary was bound explicitly
245this won't happen: >
246
247 let myDict.myFunction = function(MyFunction, myDict)
248 let otherDict.myFunction = myDict.myFunction
249 call otherDict.myFunction()
250
Bram Moolenaard823fa92016-08-12 16:29:27 +0200251Here "self" will be "myDict", because it was bound explicitly.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000252
253
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002541.3 Lists ~
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200255 *list* *List* *Lists* *E686*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000256A List is an ordered sequence of items. An item can be of any type. Items
Bram Moolenaar58b85342016-08-14 19:54:54 +0200257can be accessed by their index number. Items can be added and removed at any
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000258position in the sequence.
259
Bram Moolenaar13065c42005-01-08 16:08:21 +0000260
261List creation ~
262 *E696* *E697*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000263A List is created with a comma separated list of items in square brackets.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000264Examples: >
265 :let mylist = [1, two, 3, "four"]
266 :let emptylist = []
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000267
Bram Moolenaar58b85342016-08-14 19:54:54 +0200268An item can be any expression. Using a List for an item creates a
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000269List of Lists: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000270 :let nestlist = [[11, 12], [21, 22], [31, 32]]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000271
272An extra comma after the last item is ignored.
273
Bram Moolenaar13065c42005-01-08 16:08:21 +0000274
275List index ~
276 *list-index* *E684*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000277An item in the List can be accessed by putting the index in square brackets
Bram Moolenaar13065c42005-01-08 16:08:21 +0000278after the List. Indexes are zero-based, thus the first item has index zero. >
279 :let item = mylist[0] " get the first item: 1
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000280 :let item = mylist[2] " get the third item: 3
Bram Moolenaar13065c42005-01-08 16:08:21 +0000281
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000282When the resulting item is a list this can be repeated: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000283 :let item = nestlist[0][1] " get the first list, second item: 12
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000284<
Bram Moolenaar13065c42005-01-08 16:08:21 +0000285A negative index is counted from the end. Index -1 refers to the last item in
286the List, -2 to the last but one item, etc. >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000287 :let last = mylist[-1] " get the last item: "four"
288
Bram Moolenaar13065c42005-01-08 16:08:21 +0000289To avoid an error for an invalid index use the |get()| function. When an item
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000290is not available it returns zero or the default value you specify: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000291 :echo get(mylist, idx)
292 :echo get(mylist, idx, "NONE")
293
294
295List concatenation ~
Bram Moolenaar34453202021-01-31 13:08:38 +0100296 *list-concatenation*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000297Two lists can be concatenated with the "+" operator: >
298 :let longlist = mylist + [5, 6]
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000299 :let mylist += [7, 8]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000300
Bram Moolenaar34453202021-01-31 13:08:38 +0100301To prepend or append an item, turn the item into a list by putting [] around
302it. To change a list in-place, refer to |list-modification| below.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000303
304
305Sublist ~
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200306 *sublist*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000307A part of the List can be obtained by specifying the first and last index,
308separated by a colon in square brackets: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000309 :let shortlist = mylist[2:-1] " get List [3, "four"]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000310
311Omitting the first index is similar to zero. Omitting the last index is
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000312similar to -1. >
Bram Moolenaar540d6e32005-01-09 21:20:18 +0000313 :let endlist = mylist[2:] " from item 2 to the end: [3, "four"]
314 :let shortlist = mylist[2:2] " List with one item: [3]
315 :let otherlist = mylist[:] " make a copy of the List
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000316
Bram Moolenaar6601b622021-01-13 21:47:15 +0100317Notice that the last index is inclusive. If you prefer using an exclusive
318index use the |slice()| method.
319
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000320If the first index is beyond the last item of the List or the second item is
321before the first item, the result is an empty list. There is no error
322message.
323
324If the second index is equal to or greater than the length of the list the
325length minus one is used: >
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000326 :let mylist = [0, 1, 2, 3]
327 :echo mylist[2:8] " result: [2, 3]
328
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000329NOTE: mylist[s:e] means using the variable "s:e" as index. Watch out for
Bram Moolenaar58b85342016-08-14 19:54:54 +0200330using a single letter variable before the ":". Insert a space when needed:
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000331mylist[s : e].
332
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000333
Bram Moolenaar13065c42005-01-08 16:08:21 +0000334List identity ~
Bram Moolenaard8b02732005-01-14 21:48:43 +0000335 *list-identity*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000336When variable "aa" is a list and you assign it to another variable "bb", both
337variables refer to the same list. Thus changing the list "aa" will also
338change "bb": >
339 :let aa = [1, 2, 3]
340 :let bb = aa
341 :call add(aa, 4)
342 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000343< [1, 2, 3, 4]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000344
345Making a copy of a list is done with the |copy()| function. Using [:] also
346works, as explained above. This creates a shallow copy of the list: Changing
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000347a list item in the list will also change the item in the copied list: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000348 :let aa = [[1, 'a'], 2, 3]
349 :let bb = copy(aa)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000350 :call add(aa, 4)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000351 :let aa[0][1] = 'aaa'
352 :echo aa
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000353< [[1, aaa], 2, 3, 4] >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000354 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000355< [[1, aaa], 2, 3]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000356
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000357To make a completely independent list use |deepcopy()|. This also makes a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000358copy of the values in the list, recursively. Up to a hundred levels deep.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000359
360The operator "is" can be used to check if two variables refer to the same
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000361List. "isnot" does the opposite. In contrast "==" compares if two lists have
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000362the same value. >
363 :let alist = [1, 2, 3]
364 :let blist = [1, 2, 3]
365 :echo alist is blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000366< 0 >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000367 :echo alist == blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000368< 1
Bram Moolenaar13065c42005-01-08 16:08:21 +0000369
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000370Note about comparing lists: Two lists are considered equal if they have the
371same length and all items compare equal, as with using "==". There is one
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000372exception: When comparing a number with a string they are considered
373different. There is no automatic type conversion, as with using "==" on
374variables. Example: >
375 echo 4 == "4"
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000376< 1 >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000377 echo [4] == ["4"]
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000378< 0
379
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000380Thus comparing Lists is more strict than comparing numbers and strings. You
Bram Moolenaar446cb832008-06-24 21:56:24 +0000381can compare simple values this way too by putting them in a list: >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000382
383 :let a = 5
384 :let b = "5"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000385 :echo a == b
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000386< 1 >
Bram Moolenaar446cb832008-06-24 21:56:24 +0000387 :echo [a] == [b]
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000388< 0
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000389
Bram Moolenaar13065c42005-01-08 16:08:21 +0000390
391List unpack ~
392
393To unpack the items in a list to individual variables, put the variables in
394square brackets, like list items: >
395 :let [var1, var2] = mylist
396
397When the number of variables does not match the number of items in the list
398this produces an error. To handle any extra items from the list append ";"
399and a variable name: >
400 :let [var1, var2; rest] = mylist
401
402This works like: >
403 :let var1 = mylist[0]
404 :let var2 = mylist[1]
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000405 :let rest = mylist[2:]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000406
407Except that there is no error if there are only two items. "rest" will be an
408empty list then.
409
410
411List modification ~
412 *list-modification*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000413To change a specific item of a list use |:let| this way: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000414 :let list[4] = "four"
415 :let listlist[0][3] = item
416
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000417To change part of a list you can specify the first and last item to be
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000418modified. The value must at least have the number of items in the range: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000419 :let list[3:5] = [3, 4, 5]
420
Bram Moolenaar13065c42005-01-08 16:08:21 +0000421Adding and removing items from a list is done with functions. Here are a few
422examples: >
423 :call insert(list, 'a') " prepend item 'a'
424 :call insert(list, 'a', 3) " insert item 'a' before list[3]
425 :call add(list, "new") " append String item
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000426 :call add(list, [1, 2]) " append a List as one new item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000427 :call extend(list, [1, 2]) " extend the list with two more items
428 :let i = remove(list, 3) " remove item 3
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000429 :unlet list[3] " idem
Bram Moolenaar13065c42005-01-08 16:08:21 +0000430 :let l = remove(list, 3, -1) " remove items 3 to last item
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000431 :unlet list[3 : ] " idem
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000432 :call filter(list, 'v:val !~ "x"') " remove items with an 'x'
Bram Moolenaar13065c42005-01-08 16:08:21 +0000433
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000434Changing the order of items in a list: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000435 :call sort(list) " sort a list alphabetically
436 :call reverse(list) " reverse the order of items
Bram Moolenaar327aa022014-03-25 18:24:23 +0100437 :call uniq(sort(list)) " sort and remove duplicates
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000438
Bram Moolenaar13065c42005-01-08 16:08:21 +0000439
440For loop ~
441
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100442The |:for| loop executes commands for each item in a List, String or Blob.
443A variable is set to each item in sequence. Example with a List: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000444 :for item in mylist
445 : call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000446 :endfor
447
448This works like: >
449 :let index = 0
450 :while index < len(mylist)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000451 : let item = mylist[index]
452 : :call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000453 : let index = index + 1
454 :endwhile
455
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000456If all you want to do is modify each item in the list then the |map()|
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000457function will be a simpler method than a for loop.
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000458
Bram Moolenaar58b85342016-08-14 19:54:54 +0200459Just like the |:let| command, |:for| also accepts a list of variables. This
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100460requires the argument to be a List of Lists. >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000461 :for [lnum, col] in [[1, 3], [2, 8], [3, 0]]
462 : call Doit(lnum, col)
463 :endfor
464
465This works like a |:let| command is done for each list item. Again, the types
466must remain the same to avoid an error.
467
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000468It is also possible to put remaining items in a List variable: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000469 :for [i, j; rest] in listlist
470 : call Doit(i, j)
471 : if !empty(rest)
472 : echo "remainder: " . string(rest)
473 : endif
474 :endfor
475
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100476For a Blob one byte at a time is used.
477
478For a String one character, including any composing characters, is used as a
479String. Example: >
480 for c in text
481 echo 'This character is ' .. c
482 endfor
483
Bram Moolenaar13065c42005-01-08 16:08:21 +0000484
485List functions ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000486 *E714*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000487Functions that are useful with a List: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000488 :let r = call(funcname, list) " call a function with an argument list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000489 :if empty(list) " check if list is empty
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000490 :let l = len(list) " number of items in list
491 :let big = max(list) " maximum value in list
492 :let small = min(list) " minimum value in list
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000493 :let xs = count(list, 'x') " count nr of times 'x' appears in list
494 :let i = index(list, 'x') " index of first 'x' in list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000495 :let lines = getline(1, 10) " get ten text lines from buffer
496 :call append('$', lines) " append text lines in buffer
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000497 :let list = split("a b c") " create list from items in a string
498 :let string = join(list, ', ') " create string from list items
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000499 :let s = string(list) " String representation of list
500 :call map(list, '">> " . v:val') " prepend ">> " to each item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000501
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000502Don't forget that a combination of features can make things simple. For
503example, to add up all the numbers in a list: >
504 :exe 'let sum = ' . join(nrlist, '+')
505
Bram Moolenaar13065c42005-01-08 16:08:21 +0000506
Bram Moolenaard8b02732005-01-14 21:48:43 +00005071.4 Dictionaries ~
Bram Moolenaard8968242019-01-15 22:51:57 +0100508 *dict* *Dict* *Dictionaries* *Dictionary*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000509A Dictionary is an associative array: Each entry has a key and a value. The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000510entry can be located with the key. The entries are stored without a specific
511ordering.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000512
513
514Dictionary creation ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000515 *E720* *E721* *E722* *E723*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000516A Dictionary is created with a comma separated list of entries in curly
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000517braces. Each entry has a key and a value, separated by a colon. Each key can
518only appear once. Examples: >
Bram Moolenaard8b02732005-01-14 21:48:43 +0000519 :let mydict = {1: 'one', 2: 'two', 3: 'three'}
520 :let emptydict = {}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000521< *E713* *E716* *E717*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000522A key is always a String. You can use a Number, it will be converted to a
523String automatically. Thus the String '4' and the number 4 will find the same
Bram Moolenaar58b85342016-08-14 19:54:54 +0200524entry. Note that the String '04' and the Number 04 are different, since the
Bram Moolenaard5abb4c2019-07-13 22:46:10 +0200525Number will be converted to the String '4'. The empty string can also be used
526as a key.
Bram Moolenaar5da36052021-12-27 15:39:57 +0000527
528In |Vim9| script literaly keys can be used if the key consists of alphanumeric
529characters, underscore and dash, see |vim9-literal-dict|.
Bram Moolenaar56c860c2019-08-17 20:09:31 +0200530 *literal-Dict* *#{}*
Bram Moolenaar5da36052021-12-27 15:39:57 +0000531To avoid having to put quotes around every key the #{} form can be used in
532legacy script. This does require the key to consist only of ASCII letters,
533digits, '-' and '_'. Example: >
Bram Moolenaar10455d42019-11-21 15:36:18 +0100534 :let mydict = #{zero: 0, one_key: 1, two-key: 2, 333: 3}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +0200535Note that 333 here is the string "333". Empty keys are not possible with #{}.
Bram Moolenaar5da36052021-12-27 15:39:57 +0000536In |Vim9| script the #{} form cannot be used.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000537
Bram Moolenaar58b85342016-08-14 19:54:54 +0200538A value can be any expression. Using a Dictionary for a value creates a
Bram Moolenaard8b02732005-01-14 21:48:43 +0000539nested Dictionary: >
540 :let nestdict = {1: {11: 'a', 12: 'b'}, 2: {21: 'c'}}
541
542An extra comma after the last entry is ignored.
543
544
545Accessing entries ~
546
547The normal way to access an entry is by putting the key in square brackets: >
548 :let val = mydict["one"]
549 :let mydict["four"] = 4
550
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000551You can add new entries to an existing Dictionary this way, unlike Lists.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000552
553For keys that consist entirely of letters, digits and underscore the following
554form can be used |expr-entry|: >
555 :let val = mydict.one
556 :let mydict.four = 4
557
558Since an entry can be any type, also a List and a Dictionary, the indexing and
559key lookup can be repeated: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000560 :echo dict.key[idx].key
Bram Moolenaard8b02732005-01-14 21:48:43 +0000561
562
563Dictionary to List conversion ~
564
Bram Moolenaar58b85342016-08-14 19:54:54 +0200565You may want to loop over the entries in a dictionary. For this you need to
Bram Moolenaard8b02732005-01-14 21:48:43 +0000566turn the Dictionary into a List and pass it to |:for|.
567
568Most often you want to loop over the keys, using the |keys()| function: >
569 :for key in keys(mydict)
570 : echo key . ': ' . mydict[key]
571 :endfor
572
573The List of keys is unsorted. You may want to sort them first: >
574 :for key in sort(keys(mydict))
575
576To loop over the values use the |values()| function: >
577 :for v in values(mydict)
578 : echo "value: " . v
579 :endfor
580
581If you want both the key and the value use the |items()| function. It returns
Bram Moolenaard47d5222018-12-09 20:43:55 +0100582a List in which each item is a List with two items, the key and the value: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000583 :for [key, value] in items(mydict)
584 : echo key . ': ' . value
Bram Moolenaard8b02732005-01-14 21:48:43 +0000585 :endfor
586
587
588Dictionary identity ~
Bram Moolenaar7c626922005-02-07 22:01:03 +0000589 *dict-identity*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000590Just like Lists you need to use |copy()| and |deepcopy()| to make a copy of a
591Dictionary. Otherwise, assignment results in referring to the same
592Dictionary: >
593 :let onedict = {'a': 1, 'b': 2}
594 :let adict = onedict
595 :let adict['a'] = 11
596 :echo onedict['a']
597 11
598
Bram Moolenaarf3bd51a2005-06-14 22:11:18 +0000599Two Dictionaries compare equal if all the key-value pairs compare equal. For
600more info see |list-identity|.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000601
602
603Dictionary modification ~
604 *dict-modification*
605To change an already existing entry of a Dictionary, or to add a new entry,
606use |:let| this way: >
607 :let dict[4] = "four"
608 :let dict['one'] = item
609
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000610Removing an entry from a Dictionary is done with |remove()| or |:unlet|.
611Three ways to remove the entry with key "aaa" from dict: >
612 :let i = remove(dict, 'aaa')
613 :unlet dict.aaa
614 :unlet dict['aaa']
Bram Moolenaard8b02732005-01-14 21:48:43 +0000615
616Merging a Dictionary with another is done with |extend()|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000617 :call extend(adict, bdict)
618This extends adict with all entries from bdict. Duplicate keys cause entries
619in adict to be overwritten. An optional third argument can change this.
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000620Note that the order of entries in a Dictionary is irrelevant, thus don't
621expect ":echo adict" to show the items from bdict after the older entries in
622adict.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000623
624Weeding out entries from a Dictionary can be done with |filter()|: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000625 :call filter(dict, 'v:val =~ "x"')
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000626This removes all entries from "dict" with a value not matching 'x'.
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200627This can also be used to remove all entries: >
628 call filter(dict, 0)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000629
630
631Dictionary function ~
Bram Moolenaar26402cb2013-02-20 21:26:00 +0100632 *Dictionary-function* *self* *E725* *E862*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000633When a function is defined with the "dict" attribute it can be used in a
Bram Moolenaar58b85342016-08-14 19:54:54 +0200634special way with a dictionary. Example: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000635 :function Mylen() dict
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000636 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000637 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000638 :let mydict = {'data': [0, 1, 2, 3], 'len': function("Mylen")}
639 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000640
641This is like a method in object oriented programming. The entry in the
642Dictionary is a |Funcref|. The local variable "self" refers to the dictionary
643the function was invoked from.
644
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000645It is also possible to add a function without the "dict" attribute as a
646Funcref to a Dictionary, but the "self" variable is not available then.
647
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000648 *numbered-function* *anonymous-function*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000649To avoid the extra name for the function it can be defined and directly
650assigned to a Dictionary in this way: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000651 :let mydict = {'data': [0, 1, 2, 3]}
Bram Moolenaar5a5f4592015-04-13 12:43:06 +0200652 :function mydict.len()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000653 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000654 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000655 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000656
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000657The function will then get a number and the value of dict.len is a |Funcref|
Bram Moolenaar58b85342016-08-14 19:54:54 +0200658that references this function. The function can only be used through a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000659|Funcref|. It will automatically be deleted when there is no |Funcref|
660remaining that refers to it.
661
662It is not necessary to use the "dict" attribute for a numbered function.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000663
Bram Moolenaar1affd722010-08-04 17:49:30 +0200664If you get an error for a numbered function, you can find out what it is with
665a trick. Assuming the function is 42, the command is: >
Bram Moolenaar34cc7d82021-09-21 20:09:51 +0200666 :function g:42
Bram Moolenaar1affd722010-08-04 17:49:30 +0200667
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000668
669Functions for Dictionaries ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000670 *E715*
671Functions that can be used with a Dictionary: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000672 :if has_key(dict, 'foo') " TRUE if dict has entry with key "foo"
673 :if empty(dict) " TRUE if dict is empty
674 :let l = len(dict) " number of items in dict
675 :let big = max(dict) " maximum value in dict
676 :let small = min(dict) " minimum value in dict
677 :let xs = count(dict, 'x') " count nr of times 'x' appears in dict
678 :let s = string(dict) " String representation of dict
679 :call map(dict, '">> " . v:val') " prepend ">> " to each item
Bram Moolenaard8b02732005-01-14 21:48:43 +0000680
681
Bram Moolenaard8968242019-01-15 22:51:57 +01006821.5 Blobs ~
683 *blob* *Blob* *Blobs* *E978*
Bram Moolenaaraff74912019-03-30 18:11:49 +0100684A Blob is a binary object. It can be used to read an image from a file and
685send it over a channel, for example.
686
687A Blob mostly behaves like a |List| of numbers, where each number has the
688value of an 8-bit byte, from 0 to 255.
Bram Moolenaard8968242019-01-15 22:51:57 +0100689
690
691Blob creation ~
692
693A Blob can be created with a |blob-literal|: >
694 :let b = 0zFF00ED015DAF
Bram Moolenaar0d17f0d2019-01-22 22:20:38 +0100695Dots can be inserted between bytes (pair of hex characters) for readability,
696they don't change the value: >
697 :let b = 0zFF00.ED01.5DAF
Bram Moolenaard8968242019-01-15 22:51:57 +0100698
699A blob can be read from a file with |readfile()| passing the {type} argument
700set to "B", for example: >
701 :let b = readfile('image.png', 'B')
702
703A blob can be read from a channel with the |ch_readblob()| function.
704
705
706Blob index ~
707 *blob-index* *E979*
708A byte in the Blob can be accessed by putting the index in square brackets
709after the Blob. Indexes are zero-based, thus the first byte has index zero. >
710 :let myblob = 0z00112233
711 :let byte = myblob[0] " get the first byte: 0x00
712 :let byte = myblob[2] " get the third byte: 0x22
713
714A negative index is counted from the end. Index -1 refers to the last byte in
715the Blob, -2 to the last but one byte, etc. >
716 :let last = myblob[-1] " get the last byte: 0x33
717
718To avoid an error for an invalid index use the |get()| function. When an item
719is not available it returns -1 or the default value you specify: >
720 :echo get(myblob, idx)
721 :echo get(myblob, idx, 999)
722
723
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100724Blob iteration ~
725
726The |:for| loop executes commands for each byte of a Blob. The loop variable is
727set to each byte in the Blob. Example: >
728 :for byte in 0z112233
729 : call Doit(byte)
730 :endfor
731This calls Doit() with 0x11, 0x22 and 0x33.
732
733
Bram Moolenaard8968242019-01-15 22:51:57 +0100734Blob concatenation ~
735
736Two blobs can be concatenated with the "+" operator: >
737 :let longblob = myblob + 0z4455
738 :let myblob += 0z6677
739
740To change a blob in-place see |blob-modification| below.
741
742
743Part of a blob ~
744
745A part of the Blob can be obtained by specifying the first and last index,
746separated by a colon in square brackets: >
747 :let myblob = 0z00112233
Bram Moolenaard09091d2019-01-17 16:07:22 +0100748 :let shortblob = myblob[1:2] " get 0z1122
Bram Moolenaard8968242019-01-15 22:51:57 +0100749 :let shortblob = myblob[2:-1] " get 0z2233
750
751Omitting the first index is similar to zero. Omitting the last index is
752similar to -1. >
753 :let endblob = myblob[2:] " from item 2 to the end: 0z2233
754 :let shortblob = myblob[2:2] " Blob with one byte: 0z22
755 :let otherblob = myblob[:] " make a copy of the Blob
756
Bram Moolenaard09091d2019-01-17 16:07:22 +0100757If the first index is beyond the last byte of the Blob or the second index is
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100758before the first index, the result is an empty Blob. There is no error
Bram Moolenaard8968242019-01-15 22:51:57 +0100759message.
760
761If the second index is equal to or greater than the length of the list the
762length minus one is used: >
763 :echo myblob[2:8] " result: 0z2233
764
765
766Blob modification ~
767 *blob-modification*
768To change a specific byte of a blob use |:let| this way: >
769 :let blob[4] = 0x44
770
771When the index is just one beyond the end of the Blob, it is appended. Any
772higher index is an error.
773
774To change a sequence of bytes the [:] notation can be used: >
775 let blob[1:3] = 0z445566
Bram Moolenaard09091d2019-01-17 16:07:22 +0100776The length of the replaced bytes must be exactly the same as the value
Bram Moolenaard8968242019-01-15 22:51:57 +0100777provided. *E972*
778
779To change part of a blob you can specify the first and last byte to be
Bram Moolenaard09091d2019-01-17 16:07:22 +0100780modified. The value must have the same number of bytes in the range: >
781 :let blob[3:5] = 0z334455
Bram Moolenaard8968242019-01-15 22:51:57 +0100782
783You can also use the functions |add()|, |remove()| and |insert()|.
784
785
786Blob identity ~
787
788Blobs can be compared for equality: >
789 if blob == 0z001122
790And for equal identity: >
791 if blob is otherblob
792< *blob-identity* *E977*
793When variable "aa" is a Blob and you assign it to another variable "bb", both
794variables refer to the same Blob. Then the "is" operator returns true.
795
796When making a copy using [:] or |copy()| the values are the same, but the
797identity is different: >
798 :let blob = 0z112233
799 :let blob2 = blob
800 :echo blob == blob2
801< 1 >
802 :echo blob is blob2
803< 1 >
804 :let blob3 = blob[:]
805 :echo blob == blob3
806< 1 >
807 :echo blob is blob3
808< 0
809
Bram Moolenaard09091d2019-01-17 16:07:22 +0100810Making a copy of a Blob is done with the |copy()| function. Using [:] also
Bram Moolenaard8968242019-01-15 22:51:57 +0100811works, as explained above.
812
813
8141.6 More about variables ~
Bram Moolenaar13065c42005-01-08 16:08:21 +0000815 *more-variables*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816If you need to know the type of a variable or expression, use the |type()|
817function.
818
819When the '!' flag is included in the 'viminfo' option, global variables that
820start with an uppercase letter, and don't contain a lowercase letter, are
821stored in the viminfo file |viminfo-file|.
822
823When the 'sessionoptions' option contains "global", global variables that
824start with an uppercase letter and contain at least one lowercase letter are
825stored in the session file |session-file|.
826
827variable name can be stored where ~
828my_var_6 not
829My_Var_6 session file
830MY_VAR_6 viminfo file
831
832
Bram Moolenaar5da36052021-12-27 15:39:57 +0000833In legacy script it is possible to form a variable name with curly braces, see
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834|curly-braces-names|.
835
836==============================================================================
8372. Expression syntax *expression-syntax*
838
839Expression syntax summary, from least to most significant:
840
Bram Moolenaar50ba5262016-09-22 22:33:02 +0200841|expr1| expr2
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200842 expr2 ? expr1 : expr1 if-then-else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200844|expr2| expr3
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200845 expr3 || expr3 ... logical OR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200847|expr3| expr4
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200848 expr4 && expr4 ... logical AND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200850|expr4| expr5
851 expr5 == expr5 equal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 expr5 != expr5 not equal
853 expr5 > expr5 greater than
854 expr5 >= expr5 greater than or equal
855 expr5 < expr5 smaller than
856 expr5 <= expr5 smaller than or equal
857 expr5 =~ expr5 regexp matches
858 expr5 !~ expr5 regexp doesn't match
859
860 expr5 ==? expr5 equal, ignoring case
861 expr5 ==# expr5 equal, match case
862 etc. As above, append ? for ignoring case, # for
863 matching case
864
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100865 expr5 is expr5 same |List|, |Dictionary| or |Blob| instance
866 expr5 isnot expr5 different |List|, |Dictionary| or |Blob|
867 instance
Bram Moolenaarde8866b2005-01-06 23:24:37 +0000868
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200869|expr5| expr6
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200870 expr6 + expr6 ... number addition, list or blob concatenation
871 expr6 - expr6 ... number subtraction
872 expr6 . expr6 ... string concatenation
873 expr6 .. expr6 ... string concatenation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200875|expr6| expr7
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200876 expr7 * expr7 ... number multiplication
877 expr7 / expr7 ... number division
878 expr7 % expr7 ... number modulo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200880|expr7| expr8
Bram Moolenaar5da36052021-12-27 15:39:57 +0000881 <type>expr8 type check and conversion (|Vim9| only)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200883|expr8| expr9
Bram Moolenaar5da36052021-12-27 15:39:57 +0000884 ! expr8 logical NOT
885 - expr8 unary minus
886 + expr8 unary plus
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000887
Bram Moolenaar5da36052021-12-27 15:39:57 +0000888|expr9| expr10
889 expr9[expr1] byte of a String or item of a |List|
890 expr9[expr1 : expr1] substring of a String or sublist of a |List|
891 expr9.name entry in a |Dictionary|
892 expr9(expr1, ...) function call with |Funcref| variable
893 expr9->name(expr1, ...) |method| call
894
895|expr10| number number constant
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000896 "string" string constant, backslash is special
Bram Moolenaard8b02732005-01-14 21:48:43 +0000897 'string' string constant, ' is doubled
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000898 [expr1, ...] |List|
899 {expr1: expr1, ...} |Dictionary|
Bram Moolenaar5da36052021-12-27 15:39:57 +0000900 #{key: expr1, ...} legacy |Dictionary|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 &option option value
902 (expr1) nested expression
903 variable internal variable
904 va{ria}ble internal variable with curly braces
905 $VAR environment variable
906 @r contents of register 'r'
907 function(expr1, ...) function call
908 func{ti}on(expr1, ...) function call with curly braces
Bram Moolenaar5da36052021-12-27 15:39:57 +0000909 {args -> expr1} legacy lambda expression
910 (args) => expr1 Vim9 lambda expression
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911
912
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200913"..." indicates that the operations in this level can be concatenated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914Example: >
915 &nu || &list && &shell == "csh"
916
917All expressions within one level are parsed from left to right.
918
919
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +0200920expr1 *expr1* *trinary* *falsy-operator* *??* *E109*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921-----
922
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200923The trinary operator: expr2 ? expr1 : expr1
924The falsy operator: expr2 ?? expr1
925
926Trinary operator ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927
Bram Moolenaar5da36052021-12-27 15:39:57 +0000928In legacy script the expression before the '?' is evaluated to a number. If
929it evaluates to |TRUE|, the result is the value of the expression between the
930'?' and ':', otherwise the result is the value of the expression after the
931':'.
932
933In |Vim9| script the first expression must evaluate to a boolean, see
934|vim9-boolean|.
935
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936Example: >
937 :echo lnum == 1 ? "top" : lnum
938
939Since the first expression is an "expr2", it cannot contain another ?:. The
940other two expressions can, thus allow for recursive use of ?:.
941Example: >
942 :echo lnum == 1 ? "top" : lnum == 1000 ? "last" : lnum
943
944To keep this readable, using |line-continuation| is suggested: >
945 :echo lnum == 1
946 :\ ? "top"
947 :\ : lnum == 1000
948 :\ ? "last"
949 :\ : lnum
950
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000951You should always put a space before the ':', otherwise it can be mistaken for
952use in a variable such as "a:1".
953
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200954Falsy operator ~
955
956This is also known as the "null coalescing operator", but that's too
957complicated, thus we just call it the falsy operator.
958
959The expression before the '??' is evaluated. If it evaluates to
960|truthy|, this is used as the result. Otherwise the expression after the '??'
961is evaluated and used as the result. This is most useful to have a default
962value for an expression that may result in zero or empty: >
963 echo theList ?? 'list is empty'
964 echo GetName() ?? 'unknown'
965
966These are similar, but not equal: >
967 expr2 ?? expr1
968 expr2 ? expr2 : expr1
Bram Moolenaar5da36052021-12-27 15:39:57 +0000969In the second line "expr2" is evaluated twice. And in |Vim9| script the type
970of expr2 before "?" must be a boolean.
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200971
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972
973expr2 and expr3 *expr2* *expr3*
974---------------
975
Bram Moolenaar04186092016-08-29 21:55:35 +0200976expr3 || expr3 .. logical OR *expr-barbar*
977expr4 && expr4 .. logical AND *expr-&&*
978
Bram Moolenaar5da36052021-12-27 15:39:57 +0000979The "||" and "&&" operators take one argument on each side.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980
Bram Moolenaar5da36052021-12-27 15:39:57 +0000981In legacy script the arguments are (converted to) Numbers.
982
983In |Vim9| script the values must be boolean, see |vim9-boolean|. Use "!!" to
984convert any type to a boolean.
985
986The result is:
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200987 input output ~
988n1 n2 n1 || n2 n1 && n2 ~
989|FALSE| |FALSE| |FALSE| |FALSE|
990|FALSE| |TRUE| |TRUE| |FALSE|
991|TRUE| |FALSE| |TRUE| |FALSE|
992|TRUE| |TRUE| |TRUE| |TRUE|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
994The operators can be concatenated, for example: >
995
996 &nu || &list && &shell == "csh"
997
998Note that "&&" takes precedence over "||", so this has the meaning of: >
999
1000 &nu || (&list && &shell == "csh")
1001
1002Once the result is known, the expression "short-circuits", that is, further
1003arguments are not evaluated. This is like what happens in C. For example: >
1004
1005 let a = 1
1006 echo a || b
1007
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001008This is valid even if there is no variable called "b" because "a" is |TRUE|,
1009so the result must be |TRUE|. Similarly below: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010
1011 echo exists("b") && b == "yes"
1012
1013This is valid whether "b" has been defined or not. The second clause will
1014only be evaluated if "b" has been defined.
1015
1016
1017expr4 *expr4*
1018-----
1019
1020expr5 {cmp} expr5
1021
Bram Moolenaar5da36052021-12-27 15:39:57 +00001022Compare two expr5 expressions. In legacy script the result is a 0 if it
1023evaluates to false, or 1 if it evaluates to true. In |Vim9| script the result
1024is |true| or |false|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025
Bram Moolenaar446cb832008-06-24 21:56:24 +00001026 *expr-==* *expr-!=* *expr->* *expr->=*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 *expr-<* *expr-<=* *expr-=~* *expr-!~*
1028 *expr-==#* *expr-!=#* *expr->#* *expr->=#*
1029 *expr-<#* *expr-<=#* *expr-=~#* *expr-!~#*
1030 *expr-==?* *expr-!=?* *expr->?* *expr->=?*
1031 *expr-<?* *expr-<=?* *expr-=~?* *expr-!~?*
Bram Moolenaar251e1912011-06-19 05:09:16 +02001032 *expr-is* *expr-isnot* *expr-is#* *expr-isnot#*
1033 *expr-is?* *expr-isnot?*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 use 'ignorecase' match case ignore case ~
1035equal == ==# ==?
1036not equal != !=# !=?
1037greater than > ># >?
1038greater than or equal >= >=# >=?
1039smaller than < <# <?
1040smaller than or equal <= <=# <=?
1041regexp matches =~ =~# =~?
1042regexp doesn't match !~ !~# !~?
Bram Moolenaar251e1912011-06-19 05:09:16 +02001043same instance is is# is?
1044different instance isnot isnot# isnot?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045
1046Examples:
1047"abc" ==# "Abc" evaluates to 0
1048"abc" ==? "Abc" evaluates to 1
1049"abc" == "Abc" evaluates to 1 if 'ignorecase' is set, 0 otherwise
Bram Moolenaar5da36052021-12-27 15:39:57 +00001050NOTE: In |Vim9| script 'ignorecase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051
Bram Moolenaar13065c42005-01-08 16:08:21 +00001052 *E691* *E692*
Bram Moolenaar01164a62017-11-02 22:58:42 +01001053A |List| can only be compared with a |List| and only "equal", "not equal",
1054"is" and "isnot" can be used. This compares the values of the list,
1055recursively. Ignoring case means case is ignored when comparing item values.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001056
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001057 *E735* *E736*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001058A |Dictionary| can only be compared with a |Dictionary| and only "equal", "not
Bram Moolenaar01164a62017-11-02 22:58:42 +01001059equal", "is" and "isnot" can be used. This compares the key/values of the
1060|Dictionary| recursively. Ignoring case means case is ignored when comparing
1061item values.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001062
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +02001063 *E694*
Bram Moolenaare18dbe82016-07-02 21:42:23 +02001064A |Funcref| can only be compared with a |Funcref| and only "equal", "not
1065equal", "is" and "isnot" can be used. Case is never ignored. Whether
1066arguments or a Dictionary are bound (with a partial) matters. The
1067Dictionaries must also be equal (or the same, in case of "is") and the
1068arguments must be equal (or the same).
1069
1070To compare Funcrefs to see if they refer to the same function, ignoring bound
1071Dictionary and arguments, use |get()| to get the function name: >
1072 if get(Part1, 'name') == get(Part2, 'name')
1073 " Part1 and Part2 refer to the same function
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001074
Bram Moolenaar5e66b422019-01-24 21:58:10 +01001075Using "is" or "isnot" with a |List|, |Dictionary| or |Blob| checks whether
1076the expressions are referring to the same |List|, |Dictionary| or |Blob|
1077instance. A copy of a |List| is different from the original |List|. When
1078using "is" without a |List|, |Dictionary| or |Blob|, it is equivalent to
1079using "equal", using "isnot" equivalent to using "not equal". Except that
1080a different type means the values are different: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001081 echo 4 == '4'
1082 1
1083 echo 4 is '4'
1084 0
1085 echo 0 is []
1086 0
1087"is#"/"isnot#" and "is?"/"isnot?" can be used to match and ignore case.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001088
Bram Moolenaar5da36052021-12-27 15:39:57 +00001089In legacy script, when comparing a String with a Number, the String is
1090converted to a Number, and the comparison is done on Numbers. This means
1091that: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001092 echo 0 == 'x'
1093 1
1094because 'x' converted to a Number is zero. However: >
1095 echo [0] == ['x']
1096 0
1097Inside a List or Dictionary this conversion is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098
Bram Moolenaar5da36052021-12-27 15:39:57 +00001099In |Vim9| script the types must match.
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101When comparing two Strings, this is done with strcmp() or stricmp(). This
1102results in the mathematical difference (comparing byte values), not
1103necessarily the alphabetical difference in the local language.
1104
Bram Moolenaar446cb832008-06-24 21:56:24 +00001105When using the operators with a trailing '#', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001106'ignorecase' is off, the comparing is done with strcmp(): case matters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107
1108When using the operators with a trailing '?', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001109'ignorecase' is set, the comparing is done with stricmp(): case is ignored.
1110
1111'smartcase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112
1113The "=~" and "!~" operators match the lefthand argument with the righthand
1114argument, which is used as a pattern. See |pattern| for what a pattern is.
1115This matching is always done like 'magic' was set and 'cpoptions' is empty, no
1116matter what the actual value of 'magic' or 'cpoptions' is. This makes scripts
1117portable. To avoid backslashes in the regexp pattern to be doubled, use a
1118single-quote string, see |literal-string|.
1119Since a string is considered to be a single line, a multi-line pattern
1120(containing \n, backslash-n) will not match. However, a literal NL character
1121can be matched like an ordinary character. Examples:
1122 "foo\nbar" =~ "\n" evaluates to 1
1123 "foo\nbar" =~ "\\n" evaluates to 0
1124
1125
1126expr5 and expr6 *expr5* *expr6*
1127---------------
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001128expr6 + expr6 Number addition, |List| or |Blob| concatenation *expr-+*
1129expr6 - expr6 Number subtraction *expr--*
1130expr6 . expr6 String concatenation *expr-.*
1131expr6 .. expr6 String concatenation *expr-..*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001133For |Lists| only "+" is possible and then both expr6 must be a list. The
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001134result is a new list with the two lists Concatenated.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001135
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001136For String concatenation ".." is preferred, since "." is ambiguous, it is also
1137used for |Dict| member access and floating point numbers.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001138In |Vim9| script and when |vimscript-version| is 2 or higher, using "." is not
1139allowed.
1140
1141In |Vim9| script the arguments of ".." are converted to String for simple
1142types: Number, Float, Special and Bool. For other types |string()| should be
1143used.
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001144
Bram Moolenaar5e66b422019-01-24 21:58:10 +01001145expr7 * expr7 Number multiplication *expr-star*
1146expr7 / expr7 Number division *expr-/*
1147expr7 % expr7 Number modulo *expr-%*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148
Bram Moolenaar5da36052021-12-27 15:39:57 +00001149In legacy script, for all operators except "." and "..", Strings are converted
1150to Numbers.
1151
Bram Moolenaard6e256c2011-12-14 15:32:50 +01001152For bitwise operators see |and()|, |or()| and |xor()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
Bram Moolenaar5da36052021-12-27 15:39:57 +00001154Note the difference between "+" and ".." in legacy script:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 "123" + "456" = 579
Bram Moolenaar5da36052021-12-27 15:39:57 +00001156 "123" .. "456" = "123456"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157
Bram Moolenaar5da36052021-12-27 15:39:57 +00001158Since '..' has the same precedence as '+' and '-', you need to read: >
1159 1 .. 90 + 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001160As: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001161 (1 .. 90) + 90.0
1162That works in legacy script, since the String "190" is automatically converted
1163to the Number 190, which can be added to the Float 90.0. However: >
1164 1 .. 90 * 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001165Should be read as: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001166 1 .. (90 * 90.0)
1167Since '..' has lower precedence than '*'. This does NOT work, since this
Bram Moolenaar446cb832008-06-24 21:56:24 +00001168attempts to concatenate a Float and a String.
1169
1170When dividing a Number by zero the result depends on the value:
1171 0 / 0 = -0x80000000 (like NaN for Float)
1172 >0 / 0 = 0x7fffffff (like positive infinity)
1173 <0 / 0 = -0x7fffffff (like negative infinity)
1174 (before Vim 7.2 it was always 0x7fffffff)
1175
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001176When 64-bit Number support is enabled:
1177 0 / 0 = -0x8000000000000000 (like NaN for Float)
1178 >0 / 0 = 0x7fffffffffffffff (like positive infinity)
1179 <0 / 0 = -0x7fffffffffffffff (like negative infinity)
1180
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181When the righthand side of '%' is zero, the result is 0.
1182
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001183None of these work for |Funcref|s.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001184
Bram Moolenaar5da36052021-12-27 15:39:57 +00001185".", ".." and "%" do not work for Float. *E804*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001186
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187
1188expr7 *expr7*
1189-----
Bram Moolenaar5da36052021-12-27 15:39:57 +00001190<type>expr8
1191
1192This is only available in |Vim9| script, see |type-casting|.
1193
1194
1195expr8 *expr8*
1196-----
1197! expr8 logical NOT *expr-!*
1198- expr8 unary minus *expr-unary--*
1199+ expr8 unary plus *expr-unary-+*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001201For '!' |TRUE| becomes |FALSE|, |FALSE| becomes |TRUE| (one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202For '-' the sign of the number is changed.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001203For '+' the number is unchanged. Note: "++" has no effect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204
Bram Moolenaar5da36052021-12-27 15:39:57 +00001205In legacy script a String will be converted to a Number first. Note that if
1206the string does not start with a digit you likely don't get what you expect.
1207
1208In |Vim9| script an error is given when "-" or "+" is used and the type is not
1209a number.
1210
1211In |Vim9| script "!" can be used for any type and the result is always a
1212boolean. Use "!!" to convert any type to a boolean, according to whether the
1213value is |falsy|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214
Bram Moolenaar58b85342016-08-14 19:54:54 +02001215These three can be repeated and mixed. Examples:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 !-1 == 0
1217 !!8 == 1
1218 --9 == 9
1219
1220
Bram Moolenaar5da36052021-12-27 15:39:57 +00001221expr9 *expr9*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222-----
Bram Moolenaar5da36052021-12-27 15:39:57 +00001223This expression is either |expr10| or a sequence of the alternatives below,
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001224in any order. E.g., these are all possible:
Bram Moolenaar5da36052021-12-27 15:39:57 +00001225 expr9[expr1].name
1226 expr9.name[expr1]
1227 expr9(expr1, ...)[expr1].name
1228 expr9->(expr1, ...)[expr1]
Bram Moolenaarac92e252019-08-03 21:58:38 +02001229Evaluation is always from left to right.
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001230
Bram Moolenaar5da36052021-12-27 15:39:57 +00001231expr9[expr1] item of String or |List| *expr-[]* *E111*
Bram Moolenaar03413f42016-04-12 21:07:15 +02001232 *E909* *subscript*
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001233In legacy Vim script:
Bram Moolenaar5da36052021-12-27 15:39:57 +00001234If expr9 is a Number or String this results in a String that contains the
1235expr1'th single byte from expr9. expr9 is used as a String (a number is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001236automatically converted to a String), expr1 as a Number. This doesn't
Bram Moolenaar207f0092020-08-30 17:20:20 +02001237recognize multibyte encodings, see `byteidx()` for an alternative, or use
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001238`split()` to turn the string into a list of characters. Example, to get the
1239byte under the cursor: >
Bram Moolenaar61660ea2006-04-07 21:40:07 +00001240 :let c = getline(".")[col(".") - 1]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
Bram Moolenaar5da36052021-12-27 15:39:57 +00001242In |Vim9| script:
1243If expr9 is a String this results in a String that contains the expr1'th
1244single character (including any composing characters) from expr9. To use byte
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001245indexes use |strpart()|.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001246
1247Index zero gives the first byte or character. Careful: text column numbers
1248start with one!
1249
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250If the length of the String is less than the index, the result is an empty
Bram Moolenaar85084ef2016-01-17 22:26:33 +01001251String. A negative index always results in an empty string (reason: backward
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001252compatibility). Use [-1:] to get the last byte or character.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001253In Vim9 script a negative index is used like with a list: count from the end.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001254
Bram Moolenaar5da36052021-12-27 15:39:57 +00001255If expr9 is a |List| then it results the item at index expr1. See |list-index|
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001256for possible index values. If the index is out of range this results in an
Bram Moolenaar58b85342016-08-14 19:54:54 +02001257error. Example: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001258 :let item = mylist[-1] " get last item
1259
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001260Generally, if a |List| index is equal to or higher than the length of the
1261|List|, or more negative than the length of the |List|, this results in an
1262error.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001263
Bram Moolenaard8b02732005-01-14 21:48:43 +00001264
Bram Moolenaar5da36052021-12-27 15:39:57 +00001265expr9[expr1a : expr1b] substring or sublist *expr-[:]*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001266
Bram Moolenaar5da36052021-12-27 15:39:57 +00001267If expr9 is a String this results in the substring with the bytes or
1268characters from expr1a to and including expr1b. expr9 is used as a String,
Bram Moolenaar207f0092020-08-30 17:20:20 +02001269expr1a and expr1b are used as a Number.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001270
1271In legacy Vim script the indexes are byte indexes. This doesn't recognize
Bram Moolenaar5da36052021-12-27 15:39:57 +00001272multibyte encodings, see |byteidx()| for computing the indexes. If expr9 is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001273a Number it is first converted to a String.
1274
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001275In Vim9 script the indexes are character indexes and include composing
1276characters. To use byte indexes use |strpart()|. To use character indexes
1277without including composing characters use |strcharpart()|.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001278
Bram Moolenaar6601b622021-01-13 21:47:15 +01001279The item at index expr1b is included, it is inclusive. For an exclusive index
1280use the |slice()| function.
1281
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001282If expr1a is omitted zero is used. If expr1b is omitted the length of the
1283string minus one is used.
1284
1285A negative number can be used to measure from the end of the string. -1 is
1286the last character, -2 the last but one, etc.
1287
1288If an index goes out of range for the string characters are omitted. If
1289expr1b is smaller than expr1a the result is an empty string.
1290
1291Examples: >
1292 :let c = name[-1:] " last byte of a string
Bram Moolenaar207f0092020-08-30 17:20:20 +02001293 :let c = name[0:-1] " the whole string
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001294 :let c = name[-2:-2] " last but one byte of a string
1295 :let s = line(".")[4:] " from the fifth byte to the end
1296 :let s = s[:-3] " remove last two bytes
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001297<
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001298 *slice*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001299If expr9 is a |List| this results in a new |List| with the items indicated by
Bram Moolenaar58b85342016-08-14 19:54:54 +02001300the indexes expr1a and expr1b. This works like with a String, as explained
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001301just above. Also see |sublist| below. Examples: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001302 :let l = mylist[:3] " first four items
1303 :let l = mylist[4:4] " List with one item
1304 :let l = mylist[:] " shallow copy of a List
1305
Bram Moolenaar5da36052021-12-27 15:39:57 +00001306If expr9 is a |Blob| this results in a new |Blob| with the bytes in the
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001307indexes expr1a and expr1b, inclusive. Examples: >
1308 :let b = 0zDEADBEEF
1309 :let bs = b[1:2] " 0zADBE
Bram Moolenaard09091d2019-01-17 16:07:22 +01001310 :let bs = b[:] " copy of 0zDEADBEEF
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001311
Bram Moolenaar5da36052021-12-27 15:39:57 +00001312Using expr9[expr1] or expr9[expr1a : expr1b] on a |Funcref| results in an
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001313error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314
Bram Moolenaarda440d22016-01-16 21:27:23 +01001315Watch out for confusion between a namespace and a variable followed by a colon
1316for a sublist: >
1317 mylist[n:] " uses variable n
1318 mylist[s:] " uses namespace s:, error!
1319
Bram Moolenaard8b02732005-01-14 21:48:43 +00001320
Bram Moolenaar5da36052021-12-27 15:39:57 +00001321expr9.name entry in a |Dictionary| *expr-entry*
Bram Moolenaard8b02732005-01-14 21:48:43 +00001322
Bram Moolenaar5da36052021-12-27 15:39:57 +00001323If expr9 is a |Dictionary| and it is followed by a dot, then the following
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001324name will be used as a key in the |Dictionary|. This is just like:
Bram Moolenaar5da36052021-12-27 15:39:57 +00001325expr9[name].
Bram Moolenaard8b02732005-01-14 21:48:43 +00001326
1327The name must consist of alphanumeric characters, just like a variable name,
1328but it may start with a number. Curly braces cannot be used.
1329
1330There must not be white space before or after the dot.
1331
1332Examples: >
1333 :let dict = {"one": 1, 2: "two"}
Bram Moolenaar68e65602019-05-26 21:33:31 +02001334 :echo dict.one " shows "1"
1335 :echo dict.2 " shows "two"
1336 :echo dict .2 " error because of space before the dot
Bram Moolenaard8b02732005-01-14 21:48:43 +00001337
1338Note that the dot is also used for String concatenation. To avoid confusion
1339always put spaces around the dot for String concatenation.
1340
1341
Bram Moolenaar5da36052021-12-27 15:39:57 +00001342expr9(expr1, ...) |Funcref| function call
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001343
Bram Moolenaar5da36052021-12-27 15:39:57 +00001344When expr9 is a |Funcref| type variable, invoke the function it refers to.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001345
1346
Bram Moolenaar5da36052021-12-27 15:39:57 +00001347expr9->name([args]) method call *method* *->*
1348expr9->{lambda}([args])
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001349 *E276*
Bram Moolenaar25e42232019-08-04 15:04:10 +02001350For methods that are also available as global functions this is the same as: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001351 name(expr9 [, args])
1352There can also be methods specifically for the type of "expr9".
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001353
Bram Moolenaar51841322019-08-08 21:10:01 +02001354This allows for chaining, passing the value that one method returns to the
1355next method: >
Bram Moolenaar25e42232019-08-04 15:04:10 +02001356 mylist->filter(filterexpr)->map(mapexpr)->sort()->join()
1357<
Bram Moolenaar22a0c0c2019-08-09 23:25:08 +02001358Example of using a lambda: >
Bram Moolenaar02b31112019-08-31 22:16:38 +02001359 GetPercentage()->{x -> x * 100}()->printf('%d%%')
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001360<
Bram Moolenaar5da36052021-12-27 15:39:57 +00001361When using -> the |expr8| operators will be applied first, thus: >
Bram Moolenaar93cf85f2019-08-17 21:36:28 +02001362 -1.234->string()
1363Is equivalent to: >
1364 (-1.234)->string()
1365And NOT: >
1366 -(1.234->string())
1367<
Bram Moolenaar51841322019-08-08 21:10:01 +02001368 *E274*
1369"->name(" must not contain white space. There can be white space before the
1370"->" and after the "(", thus you can split the lines like this: >
1371 mylist
1372 \ ->filter(filterexpr)
1373 \ ->map(mapexpr)
1374 \ ->sort()
1375 \ ->join()
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001376
1377When using the lambda form there must be no white space between the } and the
1378(.
1379
Bram Moolenaar25e42232019-08-04 15:04:10 +02001380
Bram Moolenaar5da36052021-12-27 15:39:57 +00001381 *expr10*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382number
1383------
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01001384number number constant *expr-number*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001386 *0x* *hex-number* *0o* *octal-number* *binary-number*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001387Decimal, Hexadecimal (starting with 0x or 0X), Binary (starting with 0b or 0B)
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02001388and Octal (starting with 0, 0o or 0O).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389
Bram Moolenaar446cb832008-06-24 21:56:24 +00001390 *floating-point-format*
1391Floating point numbers can be written in two forms:
1392
1393 [-+]{N}.{M}
Bram Moolenaar8a94d872015-01-25 13:02:57 +01001394 [-+]{N}.{M}[eE][-+]{exp}
Bram Moolenaar446cb832008-06-24 21:56:24 +00001395
1396{N} and {M} are numbers. Both {N} and {M} must be present and can only
Bram Moolenaar6aa57292021-08-14 21:25:52 +02001397contain digits, except that in |Vim9| script in {N} single quotes between
1398digits are ignored.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001399[-+] means there is an optional plus or minus sign.
1400{exp} is the exponent, power of 10.
Bram Moolenaar58b85342016-08-14 19:54:54 +02001401Only a decimal point is accepted, not a comma. No matter what the current
Bram Moolenaar446cb832008-06-24 21:56:24 +00001402locale is.
1403{only when compiled with the |+float| feature}
1404
1405Examples:
1406 123.456
1407 +0.0001
1408 55.0
1409 -0.123
1410 1.234e03
1411 1.0E-6
1412 -3.1416e+88
1413
1414These are INVALID:
1415 3. empty {M}
1416 1e40 missing .{M}
1417
1418Rationale:
1419Before floating point was introduced, the text "123.456" was interpreted as
1420the two numbers "123" and "456", both converted to a string and concatenated,
1421resulting in the string "123456". Since this was considered pointless, and we
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001422could not find it intentionally being used in Vim scripts, this backwards
Bram Moolenaar446cb832008-06-24 21:56:24 +00001423incompatibility was accepted in favor of being able to use the normal notation
1424for floating point numbers.
1425
Bram Moolenaard47d5222018-12-09 20:43:55 +01001426 *float-pi* *float-e*
1427A few useful values to copy&paste: >
1428 :let pi = 3.14159265359
1429 :let e = 2.71828182846
1430Or, if you don't want to write them in as floating-point literals, you can
1431also use functions, like the following: >
1432 :let pi = acos(-1.0)
1433 :let e = exp(1.0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001434<
Bram Moolenaar446cb832008-06-24 21:56:24 +00001435 *floating-point-precision*
1436The precision and range of floating points numbers depends on what "double"
1437means in the library Vim was compiled with. There is no way to change this at
1438runtime.
1439
1440The default for displaying a |Float| is to use 6 decimal places, like using
1441printf("%g", f). You can select something else when using the |printf()|
1442function. Example: >
1443 :echo printf('%.15e', atan(1))
1444< 7.853981633974483e-01
1445
1446
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447
Bram Moolenaar979243b2015-06-26 19:35:49 +02001448string *string* *String* *expr-string* *E114*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449------
1450"string" string constant *expr-quote*
1451
1452Note that double quotes are used.
1453
1454A string constant accepts these special characters:
1455\... three-digit octal number (e.g., "\316")
1456\.. two-digit octal number (must be followed by non-digit)
1457\. one-digit octal number (must be followed by non-digit)
1458\x.. byte specified with two hex numbers (e.g., "\x1f")
1459\x. byte specified with one hex number (must be followed by non-hex char)
1460\X.. same as \x..
1461\X. same as \x.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001462\u.... character specified with up to 4 hex numbers, stored according to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 current value of 'encoding' (e.g., "\u02a4")
Bram Moolenaar541f92d2015-06-19 13:27:23 +02001464\U.... same as \u but allows up to 8 hex numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465\b backspace <BS>
1466\e escape <Esc>
Bram Moolenaar6e649222021-10-04 21:32:54 +01001467\f formfeed 0x0C
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468\n newline <NL>
1469\r return <CR>
1470\t tab <Tab>
1471\\ backslash
1472\" double quote
Bram Moolenaar00a927d2010-05-14 23:24:24 +02001473\<xxx> Special key named "xxx". e.g. "\<C-W>" for CTRL-W. This is for use
Bram Moolenaar58b85342016-08-14 19:54:54 +02001474 in mappings, the 0x80 byte is escaped.
1475 To use the double quote character it must be escaped: "<M-\">".
Bram Moolenaar6e649222021-10-04 21:32:54 +01001476 Don't use <Char-xxxx> to get a UTF-8 character, use \uxxxx as
Bram Moolenaar58b85342016-08-14 19:54:54 +02001477 mentioned above.
Bram Moolenaarfccd93f2020-05-31 22:06:51 +02001478\<*xxx> Like \<xxx> but prepends a modifier instead of including it in the
1479 character. E.g. "\<C-w>" is one character 0x17 while "\<*C-w>" is four
Bram Moolenaarebe9d342020-05-30 21:52:54 +02001480 bytes: 3 for the CTRL modifier and then character "W".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001482Note that "\xff" is stored as the byte 255, which may be invalid in some
1483encodings. Use "\u00ff" to store character 255 according to the current value
1484of 'encoding'.
1485
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486Note that "\000" and "\x00" force the end of the string.
1487
1488
Bram Moolenaard8968242019-01-15 22:51:57 +01001489blob-literal *blob-literal* *E973*
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001490------------
1491
1492Hexadecimal starting with 0z or 0Z, with an arbitrary number of bytes.
1493The sequence must be an even number of hex characters. Example: >
1494 :let b = 0zFF00ED015DAF
1495
1496
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497literal-string *literal-string* *E115*
1498---------------
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001499'string' string constant *expr-'*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500
1501Note that single quotes are used.
1502
Bram Moolenaar58b85342016-08-14 19:54:54 +02001503This string is taken as it is. No backslashes are removed or have a special
Bram Moolenaard8b02732005-01-14 21:48:43 +00001504meaning. The only exception is that two quotes stand for one quote.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001505
1506Single quoted strings are useful for patterns, so that backslashes do not need
Bram Moolenaar58b85342016-08-14 19:54:54 +02001507to be doubled. These two commands are equivalent: >
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001508 if a =~ "\\s*"
1509 if a =~ '\s*'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510
1511
1512option *expr-option* *E112* *E113*
1513------
1514&option option value, local value if possible
1515&g:option global option value
1516&l:option local option value
1517
1518Examples: >
1519 echo "tabstop is " . &tabstop
1520 if &insertmode
1521
1522Any option name can be used here. See |options|. When using the local value
1523and there is no buffer-local or window-local value, the global value is used
1524anyway.
1525
1526
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001527register *expr-register* *@r*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528--------
1529@r contents of register 'r'
1530
1531The result is the contents of the named register, as a single string.
1532Newlines are inserted where required. To get the contents of the unnamed
Bram Moolenaar58b85342016-08-14 19:54:54 +02001533register use @" or @@. See |registers| for an explanation of the available
Bram Moolenaare7566042005-06-17 22:00:15 +00001534registers.
1535
1536When using the '=' register you get the expression itself, not what it
1537evaluates to. Use |eval()| to evaluate it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538
1539
1540nesting *expr-nesting* *E110*
1541-------
1542(expr1) nested expression
1543
1544
1545environment variable *expr-env*
1546--------------------
1547$VAR environment variable
1548
1549The String value of any environment variable. When it is not defined, the
1550result is an empty string.
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001551
1552The functions `getenv()` and `setenv()` can also be used and work for
1553environment variables with non-alphanumeric names.
1554The function `environ()` can be used to get a Dict with all environment
1555variables.
1556
1557
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 *expr-env-expand*
1559Note that there is a difference between using $VAR directly and using
1560expand("$VAR"). Using it directly will only expand environment variables that
1561are known inside the current Vim session. Using expand() will first try using
1562the environment variables known inside the current Vim session. If that
1563fails, a shell will be used to expand the variable. This can be slow, but it
1564does expand all variables that the shell knows about. Example: >
Bram Moolenaar34401cc2014-08-29 15:12:19 +02001565 :echo $shell
1566 :echo expand("$shell")
1567The first one probably doesn't echo anything, the second echoes the $shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568variable (if your shell supports it).
1569
1570
1571internal variable *expr-variable*
1572-----------------
1573variable internal variable
1574See below |internal-variables|.
1575
1576
Bram Moolenaar05159a02005-02-26 23:04:13 +00001577function call *expr-function* *E116* *E118* *E119* *E120*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578-------------
1579function(expr1, ...) function call
1580See below |functions|.
1581
1582
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001583lambda expression *expr-lambda* *lambda*
1584-----------------
Bram Moolenaar5da36052021-12-27 15:39:57 +00001585{args -> expr1} legacy lambda expression
1586(args) => expr1 |Vim9| lambda expression
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001587
1588A lambda expression creates a new unnamed function which returns the result of
Bram Moolenaar42ebd062016-07-17 13:35:14 +02001589evaluating |expr1|. Lambda expressions differ from |user-functions| in
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001590the following ways:
1591
15921. The body of the lambda expression is an |expr1| and not a sequence of |Ex|
1593 commands.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +020015942. The prefix "a:" should not be used for arguments. E.g.: >
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001595 :let F = {arg1, arg2 -> arg1 - arg2}
1596 :echo F(5, 2)
1597< 3
1598
1599The arguments are optional. Example: >
1600 :let F = {-> 'error function'}
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001601 :echo F('ignored')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001602< error function
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001603
Bram Moolenaar5da36052021-12-27 15:39:57 +00001604The |Vim9| lambda does not only use a different syntax, it also adds type
1605checking and can be split over multiple lines, see |vim9-lambda|.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001606
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001607 *closure*
1608Lambda expressions can access outer scope variables and arguments. This is
Bram Moolenaar50ba5262016-09-22 22:33:02 +02001609often called a closure. Example where "i" and "a:arg" are used in a lambda
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001610while they already exist in the function scope. They remain valid even after
1611the function returns: >
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001612 :function Foo(arg)
1613 : let i = 3
1614 : return {x -> x + i - a:arg}
1615 :endfunction
1616 :let Bar = Foo(4)
1617 :echo Bar(6)
1618< 5
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001619
Bram Moolenaar388a5d42020-05-26 21:20:45 +02001620Note that the variables must exist in the outer scope before the lambda is
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001621defined for this to work. See also |:func-closure|.
1622
1623Lambda and closure support can be checked with: >
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001624 if has('lambda')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001625
1626Examples for using a lambda expression with |sort()|, |map()| and |filter()|: >
1627 :echo map([1, 2, 3], {idx, val -> val + 1})
1628< [2, 3, 4] >
1629 :echo sort([3,7,2,1,4], {a, b -> a - b})
1630< [1, 2, 3, 4, 7]
1631
1632The lambda expression is also useful for Channel, Job and timer: >
1633 :let timer = timer_start(500,
1634 \ {-> execute("echo 'Handler called'", "")},
1635 \ {'repeat': 3})
1636< Handler called
1637 Handler called
1638 Handler called
1639
Bram Moolenaar90df4b92021-07-07 20:26:08 +02001640Note that it is possible to cause memory to be used and not freed if the
1641closure is referenced by the context it depends on: >
1642 function Function()
1643 let x = 0
1644 let F = {-> x}
1645 endfunction
1646The closure uses "x" from the function scope, and "F" in that same scope
1647refers to the closure. This cycle results in the memory not being freed.
1648Recommendation: don't do this.
1649
1650Notice how execute() is used to execute an Ex command. That's ugly though.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001651In Vim9 script you can use a command block, see |inline-function|.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001652
1653Lambda expressions have internal names like '<lambda>42'. If you get an error
1654for a lambda expression, you can find what it is with the following command: >
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001655 :function <lambda>42
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001656See also: |numbered-function|
1657
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658==============================================================================
Bram Moolenaar4a748032010-09-30 21:47:56 +020016593. Internal variable *internal-variables* *E461*
1660
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661An internal variable name can be made up of letters, digits and '_'. But it
Bram Moolenaar5da36052021-12-27 15:39:57 +00001662cannot start with a digit. In legacy script it also possible to use curly
1663braces, see |curly-braces-names|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664
Bram Moolenaar5da36052021-12-27 15:39:57 +00001665In legacy script ann internal variable is created with the ":let" command
1666|:let|. An internal variable is explicitly destroyed with the ":unlet"
1667command |:unlet|.
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001668Using a name that is not an internal variable or refers to a variable that has
1669been destroyed results in an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670
Bram Moolenaar5da36052021-12-27 15:39:57 +00001671In |Vim9| script `:let` is not used and variables work differently, see |:var|.
1672
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001673 *variable-scope*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674There are several name spaces for variables. Which one is to be used is
1675specified by what is prepended:
1676
Bram Moolenaar5da36052021-12-27 15:39:57 +00001677 (nothing) In a function: local to the function;
1678 in a legacy script: global;
1679 in a |Vim9| script: local to the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680|buffer-variable| b: Local to the current buffer.
1681|window-variable| w: Local to the current window.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001682|tabpage-variable| t: Local to the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683|global-variable| g: Global.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001684|local-variable| l: Local to a function (only in a legacy function)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685|script-variable| s: Local to a |:source|'ed Vim script.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001686|function-argument| a: Function argument (only in a legacy function).
Bram Moolenaar75b81562014-04-06 14:09:13 +02001687|vim-variable| v: Global, predefined by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001689The scope name by itself can be used as a |Dictionary|. For example, to
1690delete all script-local variables: >
Bram Moolenaar8f999f12005-01-25 22:12:55 +00001691 :for k in keys(s:)
1692 : unlet s:[k]
1693 :endfor
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001694
Bram Moolenaar5da36052021-12-27 15:39:57 +00001695Note: in Vim9 script variables can also be local to a block of commands, see
1696|vim9-scopes|.
Bram Moolenaar531da592013-05-06 05:58:55 +02001697 *buffer-variable* *b:var* *b:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698A variable name that is preceded with "b:" is local to the current buffer.
1699Thus you can have several "b:foo" variables, one for each buffer.
1700This kind of variable is deleted when the buffer is wiped out or deleted with
1701|:bdelete|.
1702
1703One local buffer variable is predefined:
Bram Moolenaarbf884932013-04-05 22:26:15 +02001704 *b:changedtick* *changetick*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705b:changedtick The total number of changes to the current buffer. It is
1706 incremented for each change. An undo command is also a change
Bram Moolenaarc024b462019-06-08 18:07:21 +02001707 in this case. Resetting 'modified' when writing the buffer is
1708 also counted.
1709 This can be used to perform an action only when the buffer has
1710 changed. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 :if my_changedtick != b:changedtick
Bram Moolenaar446cb832008-06-24 21:56:24 +00001712 : let my_changedtick = b:changedtick
1713 : call My_Update()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 :endif
Bram Moolenaar3df01732017-02-17 22:47:16 +01001715< You cannot change or delete the b:changedtick variable.
1716
Bram Moolenaar531da592013-05-06 05:58:55 +02001717 *window-variable* *w:var* *w:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718A variable name that is preceded with "w:" is local to the current window. It
1719is deleted when the window is closed.
1720
Bram Moolenaarad3b3662013-05-17 18:14:19 +02001721 *tabpage-variable* *t:var* *t:*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001722A variable name that is preceded with "t:" is local to the current tab page,
1723It is deleted when the tab page is closed. {not available when compiled
Bram Moolenaardb84e452010-08-15 13:50:43 +02001724without the |+windows| feature}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001725
Bram Moolenaar531da592013-05-06 05:58:55 +02001726 *global-variable* *g:var* *g:*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001727Inside functions and in |Vim9| script global variables are accessed with "g:".
1728Omitting this will access a variable local to a function or script. "g:"
1729can also be used in any other place if you like.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730
Bram Moolenaar531da592013-05-06 05:58:55 +02001731 *local-variable* *l:var* *l:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732Inside functions local variables are accessed without prepending anything.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001733But you can also prepend "l:" if you like. However, without prepending "l:"
1734you may run into reserved variable names. For example "count". By itself it
1735refers to "v:count". Using "l:count" you can have a local variable with the
1736same name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737
1738 *script-variable* *s:var*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001739In a legacy Vim script variables starting with "s:" can be used. They cannot
1740be accessed from outside of the scripts, thus are local to the script.
1741In |Vim9| script the "s:" prefix can be omitted, variables are script-local by
1742default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743
1744They can be used in:
1745- commands executed while the script is sourced
1746- functions defined in the script
1747- autocommands defined in the script
1748- functions and autocommands defined in functions and autocommands which were
1749 defined in the script (recursively)
1750- user defined commands defined in the script
1751Thus not in:
1752- other scripts sourced from this one
1753- mappings
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001754- menus
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755- etc.
1756
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001757Script variables can be used to avoid conflicts with global variable names.
1758Take this example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759
1760 let s:counter = 0
1761 function MyCounter()
1762 let s:counter = s:counter + 1
1763 echo s:counter
1764 endfunction
1765 command Tick call MyCounter()
1766
1767You can now invoke "Tick" from any script, and the "s:counter" variable in
1768that script will not be changed, only the "s:counter" in the script where
1769"Tick" was defined is used.
1770
1771Another example that does the same: >
1772
1773 let s:counter = 0
1774 command Tick let s:counter = s:counter + 1 | echo s:counter
1775
1776When calling a function and invoking a user-defined command, the context for
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001777script variables is set to the script where the function or command was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778defined.
1779
1780The script variables are also available when a function is defined inside a
1781function that is defined in a script. Example: >
1782
1783 let s:counter = 0
1784 function StartCounting(incr)
1785 if a:incr
1786 function MyCounter()
1787 let s:counter = s:counter + 1
1788 endfunction
1789 else
1790 function MyCounter()
1791 let s:counter = s:counter - 1
1792 endfunction
1793 endif
1794 endfunction
1795
1796This defines the MyCounter() function either for counting up or counting down
1797when calling StartCounting(). It doesn't matter from where StartCounting() is
1798called, the s:counter variable will be accessible in MyCounter().
1799
1800When the same script is sourced again it will use the same script variables.
1801They will remain valid as long as Vim is running. This can be used to
1802maintain a counter: >
1803
1804 if !exists("s:counter")
1805 let s:counter = 1
1806 echo "script executed for the first time"
1807 else
1808 let s:counter = s:counter + 1
1809 echo "script executed " . s:counter . " times now"
1810 endif
1811
1812Note that this means that filetype plugins don't get a different set of script
1813variables for each buffer. Use local buffer variables instead |b:var|.
1814
1815
Bram Moolenaard47d5222018-12-09 20:43:55 +01001816PREDEFINED VIM VARIABLES *vim-variable* *v:var* *v:*
1817 *E963*
1818Some variables can be set by the user, but the type cannot be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001820 *v:argv* *argv-variable*
1821v:argv The command line arguments Vim was invoked with. This is a
1822 list of strings. The first item is the Vim command.
1823
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001824 *v:beval_col* *beval_col-variable*
1825v:beval_col The number of the column, over which the mouse pointer is.
1826 This is the byte index in the |v:beval_lnum| line.
1827 Only valid while evaluating the 'balloonexpr' option.
1828
1829 *v:beval_bufnr* *beval_bufnr-variable*
1830v:beval_bufnr The number of the buffer, over which the mouse pointer is. Only
1831 valid while evaluating the 'balloonexpr' option.
1832
1833 *v:beval_lnum* *beval_lnum-variable*
1834v:beval_lnum The number of the line, over which the mouse pointer is. Only
1835 valid while evaluating the 'balloonexpr' option.
1836
1837 *v:beval_text* *beval_text-variable*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001838v:beval_text The text under or after the mouse pointer. Usually a word as
1839 it is useful for debugging a C program. 'iskeyword' applies,
1840 but a dot and "->" before the position is included. When on a
1841 ']' the text before it is used, including the matching '[' and
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001842 word before it. When on a Visual area within one line the
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +02001843 highlighted text is used. Also see |<cexpr>|.
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001844 Only valid while evaluating the 'balloonexpr' option.
1845
1846 *v:beval_winnr* *beval_winnr-variable*
1847v:beval_winnr The number of the window, over which the mouse pointer is. Only
Bram Moolenaar00654022011-02-25 14:42:19 +01001848 valid while evaluating the 'balloonexpr' option. The first
1849 window has number zero (unlike most other places where a
1850 window gets a number).
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001851
Bram Moolenaar511972d2016-06-04 18:09:59 +02001852 *v:beval_winid* *beval_winid-variable*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001853v:beval_winid The |window-ID| of the window, over which the mouse pointer
1854 is. Otherwise like v:beval_winnr.
Bram Moolenaar511972d2016-06-04 18:09:59 +02001855
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001856 *v:char* *char-variable*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001857v:char Argument for evaluating 'formatexpr' and used for the typed
Bram Moolenaar945e2db2010-06-05 17:43:32 +02001858 character when using <expr> in an abbreviation |:map-<expr>|.
Bram Moolenaare6ae6222013-05-21 21:01:10 +02001859 It is also used by the |InsertCharPre| and |InsertEnter| events.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001860
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 *v:charconvert_from* *charconvert_from-variable*
1862v:charconvert_from
1863 The name of the character encoding of a file to be converted.
1864 Only valid while evaluating the 'charconvert' option.
1865
1866 *v:charconvert_to* *charconvert_to-variable*
1867v:charconvert_to
1868 The name of the character encoding of a file after conversion.
1869 Only valid while evaluating the 'charconvert' option.
1870
1871 *v:cmdarg* *cmdarg-variable*
1872v:cmdarg This variable is used for two purposes:
1873 1. The extra arguments given to a file read/write command.
1874 Currently these are "++enc=" and "++ff=". This variable is
1875 set before an autocommand event for a file read/write
1876 command is triggered. There is a leading space to make it
1877 possible to append this variable directly after the
Bram Moolenaar58b85342016-08-14 19:54:54 +02001878 read/write command. Note: The "+cmd" argument isn't
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 included here, because it will be executed anyway.
1880 2. When printing a PostScript file with ":hardcopy" this is
1881 the argument for the ":hardcopy" command. This can be used
1882 in 'printexpr'.
1883
1884 *v:cmdbang* *cmdbang-variable*
1885v:cmdbang Set like v:cmdarg for a file read/write command. When a "!"
1886 was used the value is 1, otherwise it is 0. Note that this
1887 can only be used in autocommands. For user commands |<bang>|
1888 can be used.
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +02001889 *v:collate* *collate-variable*
1890v:collate The current locale setting for collation order of the runtime
1891 environment. This allows Vim scripts to be aware of the
1892 current locale encoding. Technical: it's the value of
1893 LC_COLLATE. When not using a locale the value is "C".
1894 This variable can not be set directly, use the |:language|
1895 command.
1896 See |multi-lang|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
Drew Vogele30d1022021-10-24 20:35:07 +01001898 *v:colornames*
1899v:colornames A dictionary that maps color names to hex color strings. These
1900 color names can be used with the |highlight-guifg|,
1901 |highlight-guibg|, and |highlight-guisp| parameters. Updating
1902 an entry in v:colornames has no immediate effect on the syntax
1903 highlighting. The highlight commands (probably in a
1904 colorscheme script) need to be re-evaluated in order to use
1905 the updated color values. For example: >
1906
1907 :let v:colornames['fuscia'] = '#cf3ab4'
1908 :let v:colornames['mauve'] = '#915f6d'
1909 :highlight Normal guifg=fuscia guibg=mauve
1910<
1911 This cannot be used to override the |cterm-colors| but it can
1912 be used to override other colors. For example, the X11 colors
1913 defined in the `colors/lists/default.vim` (previously defined
1914 in |rgb.txt|). When defining new color names in a plugin, the
1915 recommended practice is to set a color entry only when it does
1916 not already exist. For example: >
1917
1918 :call extend(v:colornames, {
1919 \ 'fuscia': '#cf3ab4',
1920 \ 'mauve': '#915f6d,
1921 \ }, 'keep')
1922<
Bram Moolenaar113cb512021-11-07 20:27:04 +00001923 Using |extend()| with the 'keep' option updates each color only
Drew Vogele30d1022021-10-24 20:35:07 +01001924 if it did not exist in |v:colornames|. Doing so allows the
1925 user to choose the precise color value for a common name
1926 by setting it in their |.vimrc|.
1927
1928 It is possible to remove entries from this dictionary but
Drew Vogela0fca172021-11-13 10:50:01 +00001929 doing so is NOT recommended, because it is disruptive to
Drew Vogele30d1022021-10-24 20:35:07 +01001930 other scripts. It is also unlikely to achieve the desired
Bram Moolenaar113cb512021-11-07 20:27:04 +00001931 result because the |:colorscheme| and |:highlight| commands will
Drew Vogele30d1022021-10-24 20:35:07 +01001932 both automatically load all `colors/lists/default.vim` color
1933 scripts.
1934
Bram Moolenaar42a45122015-07-10 17:56:23 +02001935 *v:completed_item* *completed_item-variable*
1936v:completed_item
1937 |Dictionary| containing the |complete-items| for the most
1938 recently completed word after |CompleteDone|. The
1939 |Dictionary| is empty if the completion failed.
1940
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 *v:count* *count-variable*
1942v:count The count given for the last Normal mode command. Can be used
Bram Moolenaar58b85342016-08-14 19:54:54 +02001943 to get the count before a mapping. Read-only. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 :map _x :<C-U>echo "the count is " . v:count<CR>
1945< Note: The <C-U> is required to remove the line range that you
1946 get when typing ':' after a count.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001947 When there are two counts, as in "3d2w", they are multiplied,
1948 just like what happens in the command, "d6w" for the example.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001949 Also used for evaluating the 'formatexpr' option.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02001950 "count" also works, for backwards compatibility, unless
1951 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952
1953 *v:count1* *count1-variable*
1954v:count1 Just like "v:count", but defaults to one when no count is
1955 used.
1956
1957 *v:ctype* *ctype-variable*
1958v:ctype The current locale setting for characters of the runtime
1959 environment. This allows Vim scripts to be aware of the
1960 current locale encoding. Technical: it's the value of
1961 LC_CTYPE. When not using a locale the value is "C".
1962 This variable can not be set directly, use the |:language|
1963 command.
1964 See |multi-lang|.
1965
1966 *v:dying* *dying-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02001967v:dying Normally zero. When a deadly signal is caught it's set to
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 one. When multiple signals are caught the number increases.
1969 Can be used in an autocommand to check if Vim didn't
1970 terminate normally. {only works on Unix}
1971 Example: >
1972 :au VimLeave * if v:dying | echo "\nAAAAaaaarrrggghhhh!!!\n" | endif
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001973< Note: if another deadly signal is caught when v:dying is one,
1974 VimLeave autocommands will not be executed.
1975
Bram Moolenaarf0068c52020-11-30 17:42:10 +01001976 *v:exiting* *exiting-variable*
1977v:exiting Vim exit code. Normally zero, non-zero when something went
1978 wrong. The value is v:null before invoking the |VimLeavePre|
1979 and |VimLeave| autocmds. See |:q|, |:x| and |:cquit|.
1980 Example: >
1981 :au VimLeave * echo "Exit value is " .. v:exiting
1982<
Bram Moolenaar37f4cbd2019-08-23 20:58:45 +02001983 *v:echospace* *echospace-variable*
1984v:echospace Number of screen cells that can be used for an `:echo` message
1985 in the last screen line before causing the |hit-enter-prompt|.
1986 Depends on 'showcmd', 'ruler' and 'columns'. You need to
1987 check 'cmdheight' for whether there are full-width lines
1988 available above the last line.
1989
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 *v:errmsg* *errmsg-variable*
1991v:errmsg Last given error message. It's allowed to set this variable.
1992 Example: >
1993 :let v:errmsg = ""
1994 :silent! next
1995 :if v:errmsg != ""
1996 : ... handle error
Bram Moolenaard2e716e2019-04-20 14:39:52 +02001997< "errmsg" also works, for backwards compatibility, unless
1998 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
Bram Moolenaar65a54642018-04-28 16:56:53 +02002000 *v:errors* *errors-variable* *assert-return*
Bram Moolenaar683fa182015-11-30 21:38:24 +01002001v:errors Errors found by assert functions, such as |assert_true()|.
Bram Moolenaar43345542015-11-29 17:35:35 +01002002 This is a list of strings.
2003 The assert functions append an item when an assert fails.
Bram Moolenaar65a54642018-04-28 16:56:53 +02002004 The return value indicates this: a one is returned if an item
2005 was added to v:errors, otherwise zero is returned.
Bram Moolenaar43345542015-11-29 17:35:35 +01002006 To remove old results make it empty: >
2007 :let v:errors = []
2008< If v:errors is set to anything but a list it is made an empty
2009 list by the assert function.
2010
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01002011 *v:event* *event-variable*
2012v:event Dictionary containing information about the current
Bram Moolenaar560979e2020-02-04 22:53:05 +01002013 |autocommand|. See the specific event for what it puts in
2014 this dictionary.
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +02002015 The dictionary is emptied when the |autocommand| finishes,
2016 please refer to |dict-identity| for how to get an independent
2017 copy of it. Use |deepcopy()| if you want to keep the
2018 information after the event triggers. Example: >
2019 au TextYankPost * let g:foo = deepcopy(v:event)
2020<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 *v:exception* *exception-variable*
2022v:exception The value of the exception most recently caught and not
2023 finished. See also |v:throwpoint| and |throw-variables|.
2024 Example: >
2025 :try
2026 : throw "oops"
2027 :catch /.*/
Bram Moolenaar54775062019-07-31 21:07:14 +02002028 : echo "caught " .. v:exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 :endtry
2030< Output: "caught oops".
2031
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002032 *v:false* *false-variable*
2033v:false A Number with value zero. Used to put "false" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002034 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002035 When used as a string this evaluates to "v:false". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002036 echo v:false
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002037< v:false ~
2038 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002039 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002040 In |Vim9| script "false" can be used which has a boolean type.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002041
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002042 *v:fcs_reason* *fcs_reason-variable*
2043v:fcs_reason The reason why the |FileChangedShell| event was triggered.
2044 Can be used in an autocommand to decide what to do and/or what
2045 to set v:fcs_choice to. Possible values:
2046 deleted file no longer exists
2047 conflict file contents, mode or timestamp was
2048 changed and buffer is modified
2049 changed file contents has changed
2050 mode mode of file changed
2051 time only file timestamp changed
2052
2053 *v:fcs_choice* *fcs_choice-variable*
2054v:fcs_choice What should happen after a |FileChangedShell| event was
2055 triggered. Can be used in an autocommand to tell Vim what to
2056 do with the affected buffer:
2057 reload Reload the buffer (does not work if
2058 the file was deleted).
2059 ask Ask the user what to do, as if there
2060 was no autocommand. Except that when
2061 only the timestamp changed nothing
2062 will happen.
2063 <empty> Nothing, the autocommand should do
2064 everything that needs to be done.
2065 The default is empty. If another (invalid) value is used then
2066 Vim behaves like it is empty, there is no warning message.
2067
Bram Moolenaar4c295022021-05-02 17:19:11 +02002068 *v:fname* *fname-variable*
Bram Moolenaar90df4b92021-07-07 20:26:08 +02002069v:fname When evaluating 'includeexpr': the file name that was
2070 detected. Empty otherwise.
Bram Moolenaar4c295022021-05-02 17:19:11 +02002071
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 *v:fname_in* *fname_in-variable*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002073v:fname_in The name of the input file. Valid while evaluating:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 option used for ~
2075 'charconvert' file to be converted
2076 'diffexpr' original file
2077 'patchexpr' original file
2078 'printexpr' file to be printed
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002079 And set to the swap file name for |SwapExists|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
2081 *v:fname_out* *fname_out-variable*
2082v:fname_out The name of the output file. Only valid while
2083 evaluating:
2084 option used for ~
2085 'charconvert' resulting converted file (*)
2086 'diffexpr' output of diff
2087 'patchexpr' resulting patched file
2088 (*) When doing conversion for a write command (e.g., ":w
Bram Moolenaar58b85342016-08-14 19:54:54 +02002089 file") it will be equal to v:fname_in. When doing conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 for a read command (e.g., ":e file") it will be a temporary
2091 file and different from v:fname_in.
2092
2093 *v:fname_new* *fname_new-variable*
2094v:fname_new The name of the new version of the file. Only valid while
2095 evaluating 'diffexpr'.
2096
2097 *v:fname_diff* *fname_diff-variable*
2098v:fname_diff The name of the diff (patch) file. Only valid while
2099 evaluating 'patchexpr'.
2100
2101 *v:folddashes* *folddashes-variable*
2102v:folddashes Used for 'foldtext': dashes representing foldlevel of a closed
2103 fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002104 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105
2106 *v:foldlevel* *foldlevel-variable*
2107v:foldlevel Used for 'foldtext': foldlevel of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002108 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109
2110 *v:foldend* *foldend-variable*
2111v:foldend Used for 'foldtext': last line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002112 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113
2114 *v:foldstart* *foldstart-variable*
2115v:foldstart Used for 'foldtext': first line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002116 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117
Bram Moolenaar817a8802013-11-09 01:44:43 +01002118 *v:hlsearch* *hlsearch-variable*
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002119v:hlsearch Variable that indicates whether search highlighting is on.
Bram Moolenaar76440e22014-11-27 19:14:49 +01002120 Setting it makes sense only if 'hlsearch' is enabled which
2121 requires |+extra_search|. Setting this variable to zero acts
Bram Moolenaar705ada12016-01-24 17:56:50 +01002122 like the |:nohlsearch| command, setting it to one acts like >
Bram Moolenaar817a8802013-11-09 01:44:43 +01002123 let &hlsearch = &hlsearch
Bram Moolenaar86ae7202015-07-10 19:31:35 +02002124< Note that the value is restored when returning from a
2125 function. |function-search-undo|.
2126
Bram Moolenaar843ee412004-06-30 16:16:41 +00002127 *v:insertmode* *insertmode-variable*
2128v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand
2129 events. Values:
2130 i Insert mode
2131 r Replace mode
2132 v Virtual Replace mode
2133
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002134 *v:key* *key-variable*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002135v:key Key of the current item of a |Dictionary|. Only valid while
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002136 evaluating the expression used with |map()| and |filter()|.
2137 Read-only.
2138
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 *v:lang* *lang-variable*
2140v:lang The current locale setting for messages of the runtime
2141 environment. This allows Vim scripts to be aware of the
2142 current language. Technical: it's the value of LC_MESSAGES.
2143 The value is system dependent.
2144 This variable can not be set directly, use the |:language|
2145 command.
2146 It can be different from |v:ctype| when messages are desired
2147 in a different language than what is used for character
2148 encoding. See |multi-lang|.
2149
2150 *v:lc_time* *lc_time-variable*
2151v:lc_time The current locale setting for time messages of the runtime
2152 environment. This allows Vim scripts to be aware of the
2153 current language. Technical: it's the value of LC_TIME.
2154 This variable can not be set directly, use the |:language|
2155 command. See |multi-lang|.
2156
2157 *v:lnum* *lnum-variable*
Bram Moolenaar368373e2010-07-19 20:46:22 +02002158v:lnum Line number for the 'foldexpr' |fold-expr|, 'formatexpr' and
2159 'indentexpr' expressions, tab page number for 'guitablabel'
2160 and 'guitabtooltip'. Only valid while one of these
2161 expressions is being evaluated. Read-only when in the
2162 |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163
naohiro ono56200ee2022-01-01 14:59:44 +00002164 *v:maxcol* *maxcol-variable*
2165v:maxcol Maximum line length.
2166
Bram Moolenaar219b8702006-11-01 14:32:36 +00002167 *v:mouse_win* *mouse_win-variable*
2168v:mouse_win Window number for a mouse click obtained with |getchar()|.
2169 First window has number 1, like with |winnr()|. The value is
2170 zero when there was no mouse button click.
2171
Bram Moolenaar511972d2016-06-04 18:09:59 +02002172 *v:mouse_winid* *mouse_winid-variable*
2173v:mouse_winid Window ID for a mouse click obtained with |getchar()|.
2174 The value is zero when there was no mouse button click.
2175
Bram Moolenaar219b8702006-11-01 14:32:36 +00002176 *v:mouse_lnum* *mouse_lnum-variable*
2177v:mouse_lnum Line number for a mouse click obtained with |getchar()|.
2178 This is the text line number, not the screen line number. The
2179 value is zero when there was no mouse button click.
2180
2181 *v:mouse_col* *mouse_col-variable*
2182v:mouse_col Column number for a mouse click obtained with |getchar()|.
2183 This is the screen column number, like with |virtcol()|. The
2184 value is zero when there was no mouse button click.
2185
Bram Moolenaard09091d2019-01-17 16:07:22 +01002186 *v:none* *none-variable* *None*
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002187v:none An empty String. Used to put an empty item in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002188 |json_encode()|.
Bram Moolenaar2547aa92020-07-26 17:00:44 +02002189 This can also be used as a function argument to use the
2190 default value, see |none-function_argument|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002191 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002192 When used as a string this evaluates to "v:none". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002193 echo v:none
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002194< v:none ~
2195 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002196 value. Read-only.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002197
2198 *v:null* *null-variable*
2199v:null An empty String. Used to put "null" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002200 |json_encode()|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002201 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002202 When used as a string this evaluates to "v:null". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002203 echo v:null
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002204< v:null ~
2205 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002206 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002207 In |Vim9| script "null" can be used without "v:".
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002208
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002209 *v:numbermax* *numbermax-variable*
2210v:numbermax Maximum value of a number.
2211
Bram Moolenaare0e39172021-01-25 21:14:57 +01002212 *v:numbermin* *numbermin-variable*
Bram Moolenaar2346a632021-06-13 19:02:49 +02002213v:numbermin Minimum value of a number (negative).
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002214
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002215 *v:numbersize* *numbersize-variable*
2216v:numbersize Number of bits in a Number. This is normally 64, but on some
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01002217 systems it may be 32.
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002218
Bram Moolenaard812df62008-11-09 12:46:09 +00002219 *v:oldfiles* *oldfiles-variable*
2220v:oldfiles List of file names that is loaded from the |viminfo| file on
2221 startup. These are the files that Vim remembers marks for.
2222 The length of the List is limited by the ' argument of the
2223 'viminfo' option (default is 100).
Bram Moolenaar8d043172014-01-23 14:24:41 +01002224 When the |viminfo| file is not used the List is empty.
Bram Moolenaard812df62008-11-09 12:46:09 +00002225 Also see |:oldfiles| and |c_#<|.
2226 The List can be modified, but this has no effect on what is
2227 stored in the |viminfo| file later. If you use values other
2228 than String this will cause trouble.
Bram Moolenaardb84e452010-08-15 13:50:43 +02002229 {only when compiled with the |+viminfo| feature}
Bram Moolenaard812df62008-11-09 12:46:09 +00002230
Bram Moolenaar53744302015-07-17 17:38:22 +02002231 *v:option_new*
2232v:option_new New value of the option. Valid while executing an |OptionSet|
2233 autocommand.
2234 *v:option_old*
2235v:option_old Old value of the option. Valid while executing an |OptionSet|
Bram Moolenaard7c96872019-06-15 17:12:48 +02002236 autocommand. Depending on the command used for setting and the
2237 kind of option this is either the local old value or the
2238 global old value.
2239 *v:option_oldlocal*
2240v:option_oldlocal
2241 Old local value of the option. Valid while executing an
2242 |OptionSet| autocommand.
2243 *v:option_oldglobal*
2244v:option_oldglobal
2245 Old global value of the option. Valid while executing an
2246 |OptionSet| autocommand.
Bram Moolenaar53744302015-07-17 17:38:22 +02002247 *v:option_type*
2248v:option_type Scope of the set command. Valid while executing an
2249 |OptionSet| autocommand. Can be either "global" or "local"
Bram Moolenaard7c96872019-06-15 17:12:48 +02002250 *v:option_command*
2251v:option_command
2252 Command used to set the option. Valid while executing an
2253 |OptionSet| autocommand.
2254 value option was set via ~
2255 "setlocal" |:setlocal| or ":let l:xxx"
2256 "setglobal" |:setglobal| or ":let g:xxx"
2257 "set" |:set| or |:let|
2258 "modeline" |modeline|
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002259 *v:operator* *operator-variable*
2260v:operator The last operator given in Normal mode. This is a single
2261 character except for commands starting with <g> or <z>,
2262 in which case it is two characters. Best used alongside
2263 |v:prevcount| and |v:register|. Useful if you want to cancel
2264 Operator-pending mode and then use the operator, e.g.: >
2265 :omap O <Esc>:call MyMotion(v:operator)<CR>
2266< The value remains set until another operator is entered, thus
2267 don't expect it to be empty.
2268 v:operator is not set for |:delete|, |:yank| or other Ex
2269 commands.
2270 Read-only.
2271
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 *v:prevcount* *prevcount-variable*
2273v:prevcount The count given for the last but one Normal mode command.
2274 This is the v:count value of the previous command. Useful if
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002275 you want to cancel Visual or Operator-pending mode and then
2276 use the count, e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 :vmap % <Esc>:call MyFilter(v:prevcount)<CR>
2278< Read-only.
2279
Bram Moolenaar05159a02005-02-26 23:04:13 +00002280 *v:profiling* *profiling-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002281v:profiling Normally zero. Set to one after using ":profile start".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002282 See |profiling|.
2283
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 *v:progname* *progname-variable*
2285v:progname Contains the name (with path removed) with which Vim was
Bram Moolenaard38b0552012-04-25 19:07:41 +02002286 invoked. Allows you to do special initialisations for |view|,
2287 |evim| etc., or any other name you might symlink to Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 Read-only.
2289
Bram Moolenaara1706c92014-04-01 19:55:49 +02002290 *v:progpath* *progpath-variable*
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002291v:progpath Contains the command with which Vim was invoked, in a form
2292 that when passed to the shell will run the same Vim executable
2293 as the current one (if $PATH remains unchanged).
2294 Useful if you want to message a Vim server using a
Bram Moolenaara1706c92014-04-01 19:55:49 +02002295 |--remote-expr|.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002296 To get the full path use: >
2297 echo exepath(v:progpath)
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002298< If the command has a relative path it will be expanded to the
2299 full path, so that it still works after `:cd`. Thus starting
2300 "./vim" results in "/home/user/path/to/vim/src/vim".
2301 On Linux and other systems it will always be the full path.
2302 On Mac it may just be "vim" and using exepath() as mentioned
2303 above should be used to get the full path.
Bram Moolenaar08cab962017-03-04 14:37:18 +01002304 On MS-Windows the executable may be called "vim.exe", but the
2305 ".exe" is not added to v:progpath.
Bram Moolenaara1706c92014-04-01 19:55:49 +02002306 Read-only.
2307
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 *v:register* *register-variable*
Bram Moolenaard58e9292011-02-09 17:07:58 +01002309v:register The name of the register in effect for the current normal mode
Bram Moolenaard38b0552012-04-25 19:07:41 +02002310 command (regardless of whether that command actually used a
2311 register). Or for the currently executing normal mode mapping
2312 (use this in custom commands that take a register).
2313 If none is supplied it is the default register '"', unless
2314 'clipboard' contains "unnamed" or "unnamedplus", then it is
2315 '*' or '+'.
Bram Moolenaard58e9292011-02-09 17:07:58 +01002316 Also see |getreg()| and |setreg()|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002318 *v:scrollstart* *scrollstart-variable*
2319v:scrollstart String describing the script or function that caused the
2320 screen to scroll up. It's only set when it is empty, thus the
2321 first reason is remembered. It is set to "Unknown" for a
2322 typed command.
2323 This can be used to find out why your script causes the
2324 hit-enter prompt.
2325
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 *v:servername* *servername-variable*
Bram Moolenaarc2ce52c2017-08-01 18:35:38 +02002327v:servername The resulting registered |client-server-name| if any.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 Read-only.
2329
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002330
Bram Moolenaar446cb832008-06-24 21:56:24 +00002331v:searchforward *v:searchforward* *searchforward-variable*
2332 Search direction: 1 after a forward search, 0 after a
2333 backward search. It is reset to forward when directly setting
2334 the last search pattern, see |quote/|.
2335 Note that the value is restored when returning from a
2336 function. |function-search-undo|.
2337 Read-write.
2338
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 *v:shell_error* *shell_error-variable*
2340v:shell_error Result of the last shell command. When non-zero, the last
2341 shell command had an error. When zero, there was no problem.
2342 This only works when the shell returns the error code to Vim.
2343 The value -1 is often used when the command could not be
2344 executed. Read-only.
2345 Example: >
2346 :!mv foo bar
2347 :if v:shell_error
2348 : echo 'could not rename "foo" to "bar"!'
2349 :endif
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002350< "shell_error" also works, for backwards compatibility, unless
2351 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352
Bram Moolenaar113cb512021-11-07 20:27:04 +00002353 *v:sizeofint* *sizeofint-variable*
2354v:sizeofint Number of bytes in an int. Depends on how Vim was compiled.
2355 This is only useful for deciding whether a test will give the
2356 expected result.
2357
2358 *v:sizeoflong* *sizeoflong-variable*
2359v:sizeoflong Number of bytes in a long. Depends on how Vim was compiled.
2360 This is only useful for deciding whether a test will give the
2361 expected result.
2362
2363 *v:sizeofpointer* *sizeofpointer-variable*
2364v:sizeofpointer Number of bytes in a pointer. Depends on how Vim was compiled.
2365 This is only useful for deciding whether a test will give the
2366 expected result.
2367
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 *v:statusmsg* *statusmsg-variable*
2369v:statusmsg Last given status message. It's allowed to set this variable.
2370
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002371 *v:swapname* *swapname-variable*
2372v:swapname Only valid when executing |SwapExists| autocommands: Name of
2373 the swap file found. Read-only.
2374
2375 *v:swapchoice* *swapchoice-variable*
2376v:swapchoice |SwapExists| autocommands can set this to the selected choice
2377 for handling an existing swap file:
2378 'o' Open read-only
2379 'e' Edit anyway
2380 'r' Recover
2381 'd' Delete swapfile
2382 'q' Quit
2383 'a' Abort
Bram Moolenaar58b85342016-08-14 19:54:54 +02002384 The value should be a single-character string. An empty value
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002385 results in the user being asked, as would happen when there is
2386 no SwapExists autocommand. The default is empty.
2387
Bram Moolenaarb3480382005-12-11 21:33:32 +00002388 *v:swapcommand* *swapcommand-variable*
Bram Moolenaar4770d092006-01-12 23:22:24 +00002389v:swapcommand Normal mode command to be executed after a file has been
Bram Moolenaarb3480382005-12-11 21:33:32 +00002390 opened. Can be used for a |SwapExists| autocommand to have
Bram Moolenaar58b85342016-08-14 19:54:54 +02002391 another Vim open the file and jump to the right place. For
Bram Moolenaarb3480382005-12-11 21:33:32 +00002392 example, when jumping to a tag the value is ":tag tagname\r".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002393 For ":edit +cmd file" the value is ":cmd\r".
Bram Moolenaarb3480382005-12-11 21:33:32 +00002394
Bram Moolenaard823fa92016-08-12 16:29:27 +02002395 *v:t_TYPE* *v:t_bool* *t_bool-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002396v:t_bool Value of |Boolean| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002397 *v:t_channel* *t_channel-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002398v:t_channel Value of |Channel| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002399 *v:t_dict* *t_dict-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002400v:t_dict Value of |Dictionary| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002401 *v:t_float* *t_float-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002402v:t_float Value of |Float| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002403 *v:t_func* *t_func-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002404v:t_func Value of |Funcref| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002405 *v:t_job* *t_job-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002406v:t_job Value of |Job| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002407 *v:t_list* *t_list-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002408v:t_list Value of |List| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002409 *v:t_none* *t_none-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002410v:t_none Value of |None| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002411 *v:t_number* *t_number-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002412v:t_number Value of |Number| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002413 *v:t_string* *t_string-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002414v:t_string Value of |String| type. Read-only. See: |type()|
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002415 *v:t_blob* *t_blob-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002416v:t_blob Value of |Blob| type. Read-only. See: |type()|
Bram Moolenaarf562e722016-07-19 17:25:25 +02002417
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 *v:termresponse* *termresponse-variable*
2419v:termresponse The escape sequence returned by the terminal for the |t_RV|
Bram Moolenaar58b85342016-08-14 19:54:54 +02002420 termcap entry. It is set when Vim receives an escape sequence
Bram Moolenaarb4230122019-05-30 18:40:53 +02002421 that starts with ESC [ or CSI, then '>' or '?' and ends in a
2422 'c', with only digits and ';' in between.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 When this option is set, the TermResponse autocommand event is
2424 fired, so that you can react to the response from the
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02002425 terminal. You can use |terminalprops()| to see what Vim
2426 figured out about the terminal.
Bram Moolenaarb4230122019-05-30 18:40:53 +02002427 The response from a new xterm is: "<Esc>[> Pp ; Pv ; Pc c". Pp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 is the terminal type: 0 for vt100 and 1 for vt220. Pv is the
2429 patch level (since this was introduced in patch 95, it's
Bram Moolenaarfa3b7232021-12-24 13:18:38 +00002430 always 95 or higher). Pc is always zero.
2431 If Pv is 141 or higher then Vim will try to request terminal
2432 codes. This only works with xterm |xterm-codes|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 {only when compiled with |+termresponse| feature}
2434
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002435 *v:termblinkresp*
2436v:termblinkresp The escape sequence returned by the terminal for the |t_RC|
2437 termcap entry. This is used to find out whether the terminal
2438 cursor is blinking. This is used by |term_getcursor()|.
2439
2440 *v:termstyleresp*
2441v:termstyleresp The escape sequence returned by the terminal for the |t_RS|
2442 termcap entry. This is used to find out what the shape of the
2443 cursor is. This is used by |term_getcursor()|.
2444
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002445 *v:termrbgresp*
2446v:termrbgresp The escape sequence returned by the terminal for the |t_RB|
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002447 termcap entry. This is used to find out what the terminal
2448 background color is, see 'background'.
2449
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002450 *v:termrfgresp*
2451v:termrfgresp The escape sequence returned by the terminal for the |t_RF|
2452 termcap entry. This is used to find out what the terminal
2453 foreground color is.
2454
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002455 *v:termu7resp*
2456v:termu7resp The escape sequence returned by the terminal for the |t_u7|
2457 termcap entry. This is used to find out what the terminal
2458 does with ambiguous width characters, see 'ambiwidth'.
2459
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002460 *v:testing* *testing-variable*
Bram Moolenaar8e8df252016-05-25 21:23:21 +02002461v:testing Must be set before using `test_garbagecollect_now()`.
Bram Moolenaar036986f2017-03-16 17:41:02 +01002462 Also, when set certain error messages won't be shown for 2
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002463 seconds. (e.g. "'dictionary' option is empty")
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002464
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 *v:this_session* *this_session-variable*
2466v:this_session Full filename of the last loaded or saved session file. See
2467 |:mksession|. It is allowed to set this variable. When no
2468 session file has been saved, this variable is empty.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002469 "this_session" also works, for backwards compatibility, unless
2470 |scriptversion| is 3 or higher
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471
2472 *v:throwpoint* *throwpoint-variable*
2473v:throwpoint The point where the exception most recently caught and not
Bram Moolenaar58b85342016-08-14 19:54:54 +02002474 finished was thrown. Not set when commands are typed. See
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 also |v:exception| and |throw-variables|.
2476 Example: >
2477 :try
2478 : throw "oops"
2479 :catch /.*/
2480 : echo "Exception from" v:throwpoint
2481 :endtry
2482< Output: "Exception from test.vim, line 2"
2483
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002484 *v:true* *true-variable*
2485v:true A Number with value one. Used to put "true" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002486 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002487 When used as a string this evaluates to "v:true". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002488 echo v:true
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002489< v:true ~
2490 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002491 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002492 In |Vim9| script "true" can be used which has a boolean type.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002493 *v:val* *val-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002494v:val Value of the current item of a |List| or |Dictionary|. Only
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002495 valid while evaluating the expression used with |map()| and
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002496 |filter()|. Read-only.
2497
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 *v:version* *version-variable*
2499v:version Version number of Vim: Major version number times 100 plus
Bram Moolenaar9b283522019-06-17 22:19:33 +02002500 minor version number. Version 5.0 is 500. Version 5.1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 is 501. Read-only. "version" also works, for backwards
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002502 compatibility, unless |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 Use |has()| to check if a certain patch was included, e.g.: >
Bram Moolenaar6716d9a2014-04-02 12:12:08 +02002504 if has("patch-7.4.123")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505< Note that patch numbers are specific to the version, thus both
2506 version 5.0 and 5.1 may have a patch 123, but these are
2507 completely different.
2508
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002509 *v:versionlong* *versionlong-variable*
Bram Moolenaar9b283522019-06-17 22:19:33 +02002510v:versionlong Like v:version, but also including the patchlevel in the last
2511 four digits. Version 8.1 with patch 123 has value 8010123.
2512 This can be used like this: >
2513 if v:versionlong >= 8010123
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002514< However, if there are gaps in the list of patches included
2515 this will not work well. This can happen if a recent patch
2516 was included into an older version, e.g. for a security fix.
2517 Use the has() function to make sure the patch is actually
2518 included.
2519
Bram Moolenaar14735512016-03-26 21:00:08 +01002520 *v:vim_did_enter* *vim_did_enter-variable*
2521v:vim_did_enter Zero until most of startup is done. It is set to one just
2522 before |VimEnter| autocommands are triggered.
2523
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 *v:warningmsg* *warningmsg-variable*
2525v:warningmsg Last given warning message. It's allowed to set this variable.
2526
Bram Moolenaar727c8762010-10-20 19:17:48 +02002527 *v:windowid* *windowid-variable*
2528v:windowid When any X11 based GUI is running or when running in a
2529 terminal and Vim connects to the X server (|-X|) this will be
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02002530 set to the window ID.
2531 When an MS-Windows GUI is running this will be set to the
2532 window handle.
2533 Otherwise the value is zero.
Bram Moolenaar7571d552016-08-18 22:54:46 +02002534 Note: for windows inside Vim use |winnr()| or |win_getid()|,
2535 see |window-ID|.
Bram Moolenaar727c8762010-10-20 19:17:48 +02002536
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537==============================================================================
25384. Builtin Functions *functions*
2539
2540See |function-list| for a list grouped by what the function is used for.
2541
Bram Moolenaar1cae5a02021-12-27 21:28:34 +00002542The alphabetic list of all builtin functions and details are in a separate
2543help file: |builtin-functions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544
2545==============================================================================
25465. Defining functions *user-functions*
2547
2548New functions can be defined. These can be called just like builtin
2549functions. The function executes a sequence of Ex commands. Normal mode
2550commands can be executed with the |:normal| command.
2551
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002552This section is about the legacy functions. For the Vim9 functions, which
2553execute much faster, support type checking and more, see |vim9.txt|.
2554
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555The function name must start with an uppercase letter, to avoid confusion with
2556builtin functions. To prevent from using the same name in different scripts
2557avoid obvious, short names. A good habit is to start the function name with
2558the name of the script, e.g., "HTMLcolor()".
2559
Bram Moolenaar5da36052021-12-27 15:39:57 +00002560In legacy script it is also possible to use curly braces, see
2561|curly-braces-names|.
2562The |autoload| facility is useful to define a function only when it's called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563
2564 *local-function*
Bram Moolenaar5da36052021-12-27 15:39:57 +00002565A function local to a legacy script must start with "s:". A local script
2566function can only be called from within the script and from functions, user
2567commands and autocommands defined in the script. It is also possible to call
2568the function from a mapping defined in the script, but then |<SID>| must be
2569used instead of "s:" when the mapping is expanded outside of the script.
Bram Moolenaarbcb98982014-05-01 14:08:19 +02002570There are only script-local functions, no buffer-local or window-local
2571functions.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572
Bram Moolenaar5da36052021-12-27 15:39:57 +00002573In |Vim9| script functions are local to the script by default, prefix "g:" to
2574define a global function.
2575
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 *:fu* *:function* *E128* *E129* *E123*
2577:fu[nction] List all functions and their arguments.
2578
2579:fu[nction] {name} List function {name}.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002580 {name} can also be a |Dictionary| entry that is a
2581 |Funcref|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002582 :function dict.init
Bram Moolenaar92d640f2005-09-05 22:11:52 +00002583
2584:fu[nction] /{pattern} List functions with a name matching {pattern}.
2585 Example that lists all functions ending with "File": >
2586 :function /File$
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002587<
2588 *:function-verbose*
2589When 'verbose' is non-zero, listing a function will also display where it was
2590last defined. Example: >
2591
2592 :verbose function SetFileTypeSH
2593 function SetFileTypeSH(name)
2594 Last set from /usr/share/vim/vim-7.0/filetype.vim
2595<
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002596See |:verbose-cmd| for more information.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00002597
Bram Moolenaarbcb98982014-05-01 14:08:19 +02002598 *E124* *E125* *E853* *E884*
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002599:fu[nction][!] {name}([arguments]) [range] [abort] [dict] [closure]
Bram Moolenaar01164a62017-11-02 22:58:42 +01002600 Define a new function by the name {name}. The body of
2601 the function follows in the next lines, until the
2602 matching |:endfunction|.
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002603
Bram Moolenaar01164a62017-11-02 22:58:42 +01002604 The name must be made of alphanumeric characters and
2605 '_', and must start with a capital or "s:" (see
2606 above). Note that using "b:" or "g:" is not allowed.
2607 (since patch 7.4.260 E884 is given if the function
2608 name has a colon in the name, e.g. for "foo:bar()".
2609 Before that patch no error was given).
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002610
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002611 {name} can also be a |Dictionary| entry that is a
2612 |Funcref|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002613 :function dict.init(arg)
Bram Moolenaar58b85342016-08-14 19:54:54 +02002614< "dict" must be an existing dictionary. The entry
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002615 "init" is added if it didn't exist yet. Otherwise [!]
Bram Moolenaar58b85342016-08-14 19:54:54 +02002616 is required to overwrite an existing function. The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002617 result is a |Funcref| to a numbered function. The
2618 function can only be used with a |Funcref| and will be
2619 deleted if there are no more references to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 *E127* *E122*
2621 When a function by this name already exists and [!] is
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01002622 not used an error message is given. There is one
2623 exception: When sourcing a script again, a function
2624 that was previously defined in that script will be
2625 silently replaced.
2626 When [!] is used, an existing function is silently
2627 replaced. Unless it is currently being executed, that
2628 is an error.
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002629 NOTE: Use ! wisely. If used without care it can cause
2630 an existing function to be replaced unexpectedly,
2631 which is hard to debug.
Bram Moolenaar388a5d42020-05-26 21:20:45 +02002632 NOTE: In Vim9 script script-local functions cannot be
2633 deleted or redefined.
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002634
2635 For the {arguments} see |function-argument|.
2636
Bram Moolenaar8d043172014-01-23 14:24:41 +01002637 *:func-range* *a:firstline* *a:lastline*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 When the [range] argument is added, the function is
2639 expected to take care of a range itself. The range is
2640 passed as "a:firstline" and "a:lastline". If [range]
2641 is excluded, ":{range}call" will call the function for
2642 each line in the range, with the cursor on the start
2643 of each line. See |function-range-example|.
Bram Moolenaar2df58b42012-11-28 18:21:11 +01002644 The cursor is still moved to the first line of the
2645 range, as is the case with all Ex commands.
Bram Moolenaar8d043172014-01-23 14:24:41 +01002646 *:func-abort*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 When the [abort] argument is added, the function will
2648 abort as soon as an error is detected.
Bram Moolenaar8d043172014-01-23 14:24:41 +01002649 *:func-dict*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002650 When the [dict] argument is added, the function must
Bram Moolenaar58b85342016-08-14 19:54:54 +02002651 be invoked through an entry in a |Dictionary|. The
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002652 local variable "self" will then be set to the
2653 dictionary. See |Dictionary-function|.
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002654 *:func-closure* *E932*
2655 When the [closure] argument is added, the function
2656 can access variables and arguments from the outer
2657 scope. This is usually called a closure. In this
2658 example Bar() uses "x" from the scope of Foo(). It
2659 remains referenced even after Foo() returns: >
2660 :function! Foo()
2661 : let x = 0
2662 : function! Bar() closure
2663 : let x += 1
2664 : return x
2665 : endfunction
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002666 : return funcref('Bar')
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002667 :endfunction
2668
2669 :let F = Foo()
2670 :echo F()
2671< 1 >
2672 :echo F()
2673< 2 >
2674 :echo F()
2675< 3
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
Bram Moolenaar446cb832008-06-24 21:56:24 +00002677 *function-search-undo*
Bram Moolenaar98692072006-02-04 00:57:42 +00002678 The last used search pattern and the redo command "."
Bram Moolenaar446cb832008-06-24 21:56:24 +00002679 will not be changed by the function. This also
2680 implies that the effect of |:nohlsearch| is undone
2681 when the function returns.
Bram Moolenaar98692072006-02-04 00:57:42 +00002682
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002683 *:endf* *:endfunction* *E126* *E193* *W22*
Bram Moolenaar663bb232017-06-22 19:12:10 +02002684:endf[unction] [argument]
2685 The end of a function definition. Best is to put it
2686 on a line by its own, without [argument].
2687
2688 [argument] can be:
2689 | command command to execute next
2690 \n command command to execute next
2691 " comment always ignored
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002692 anything else ignored, warning given when
2693 'verbose' is non-zero
Bram Moolenaar663bb232017-06-22 19:12:10 +02002694 The support for a following command was added in Vim
2695 8.0.0654, before that any argument was silently
2696 ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002698 To be able to define a function inside an `:execute`
2699 command, use line breaks instead of |:bar|: >
2700 :exe "func Foo()\necho 'foo'\nendfunc"
2701<
Bram Moolenaar437bafe2016-08-01 15:40:54 +02002702 *:delf* *:delfunction* *E130* *E131* *E933*
Bram Moolenaar663bb232017-06-22 19:12:10 +02002703:delf[unction][!] {name}
2704 Delete function {name}.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002705 {name} can also be a |Dictionary| entry that is a
2706 |Funcref|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002707 :delfunc dict.init
Bram Moolenaar58b85342016-08-14 19:54:54 +02002708< This will remove the "init" entry from "dict". The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002709 function is deleted if there are no more references to
2710 it.
Bram Moolenaar663bb232017-06-22 19:12:10 +02002711 With the ! there is no error if the function does not
2712 exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 *:retu* *:return* *E133*
2714:retu[rn] [expr] Return from a function. When "[expr]" is given, it is
2715 evaluated and returned as the result of the function.
2716 If "[expr]" is not given, the number 0 is returned.
2717 When a function ends without an explicit ":return",
2718 the number 0 is returned.
2719 Note that there is no check for unreachable lines,
2720 thus there is no warning if commands follow ":return".
2721
2722 If the ":return" is used after a |:try| but before the
2723 matching |:finally| (if present), the commands
2724 following the ":finally" up to the matching |:endtry|
2725 are executed first. This process applies to all
2726 nested ":try"s inside the function. The function
2727 returns at the outermost ":endtry".
2728
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002729 *function-argument* *a:var*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002730An argument can be defined by giving its name. In the function this can then
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002731be used as "a:name" ("a:" for argument).
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002732 *a:0* *a:1* *a:000* *E740* *...*
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002733Up to 20 arguments can be given, separated by commas. After the named
2734arguments an argument "..." can be specified, which means that more arguments
2735may optionally be following. In the function the extra arguments can be used
2736as "a:1", "a:2", etc. "a:0" is set to the number of extra arguments (which
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002737can be 0). "a:000" is set to a |List| that contains these arguments. Note
2738that "a:1" is the same as "a:000[0]".
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00002739 *E742*
2740The a: scope and the variables in it cannot be changed, they are fixed.
Bram Moolenaar069c1e72016-07-15 21:25:08 +02002741However, if a composite type is used, such as |List| or |Dictionary| , you can
2742change their contents. Thus you can pass a |List| to a function and have the
2743function add an item to it. If you want to make sure the function cannot
2744change a |List| or |Dictionary| use |:lockvar|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002746It is also possible to define a function without any arguments. You must
Bram Moolenaar01164a62017-11-02 22:58:42 +01002747still supply the () then.
2748
Bram Moolenaar98ef2332018-03-18 14:44:37 +01002749It is allowed to define another function inside a function body.
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002750
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002751 *optional-function-argument*
2752You can provide default values for positional named arguments. This makes
2753them optional for function calls. When a positional argument is not
2754specified at a call, the default expression is used to initialize it.
Bram Moolenaard1caa942020-04-10 22:10:56 +02002755This only works for functions declared with `:function` or `:def`, not for
2756lambda expressions |expr-lambda|.
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002757
2758Example: >
2759 function Something(key, value = 10)
Bram Moolenaar8aad88d2019-05-12 13:53:50 +02002760 echo a:key .. ": " .. a:value
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002761 endfunction
2762 call Something('empty') "empty: 10"
Bram Moolenaar8aad88d2019-05-12 13:53:50 +02002763 call Something('key', 20) "key: 20"
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002764
2765The argument default expressions are evaluated at the time of the function
2766call, not definition. Thus it is possible to use an expression which is
Bram Moolenaar68e65602019-05-26 21:33:31 +02002767invalid the moment the function is defined. The expressions are also only
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002768evaluated when arguments are not specified during a call.
Bram Moolenaar2547aa92020-07-26 17:00:44 +02002769 *none-function_argument*
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002770You can pass |v:none| to use the default expression. Note that this means you
2771cannot pass v:none as an ordinary value when an argument has a default
2772expression.
2773
2774Example: >
2775 function Something(a = 10, b = 20, c = 30)
2776 endfunction
2777 call Something(1, v:none, 3) " b = 20
2778<
2779 *E989*
2780Optional arguments with default expressions must occur after any mandatory
2781arguments. You can use "..." after all optional named arguments.
2782
2783It is possible for later argument defaults to refer to prior arguments,
2784but not the other way around. They must be prefixed with "a:", as with all
2785arguments.
2786
2787Example that works: >
2788 :function Okay(mandatory, optional = a:mandatory)
2789 :endfunction
2790Example that does NOT work: >
2791 :function NoGood(first = a:second, second = 10)
2792 :endfunction
2793<
Bram Moolenaard1caa942020-04-10 22:10:56 +02002794When not using "...", the number of arguments in a function call must be at
2795least equal to the number of mandatory named arguments. When using "...", the
2796number of arguments may be larger than the total of mandatory and optional
2797arguments.
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002798
Bram Moolenaar8f999f12005-01-25 22:12:55 +00002799 *local-variables*
Bram Moolenaar069c1e72016-07-15 21:25:08 +02002800Inside a function local variables can be used. These will disappear when the
2801function returns. Global variables need to be accessed with "g:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802
2803Example: >
2804 :function Table(title, ...)
2805 : echohl Title
2806 : echo a:title
2807 : echohl None
Bram Moolenaar677ee682005-01-27 14:41:15 +00002808 : echo a:0 . " items:"
2809 : for s in a:000
2810 : echon ' ' . s
2811 : endfor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 :endfunction
2813
2814This function can then be called with: >
Bram Moolenaar677ee682005-01-27 14:41:15 +00002815 call Table("Table", "line1", "line2")
2816 call Table("Empty Table")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002818To return more than one value, return a |List|: >
2819 :function Compute(n1, n2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 : if a:n2 == 0
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002821 : return ["fail", 0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 : endif
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002823 : return ["ok", a:n1 / a:n2]
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 :endfunction
2825
2826This function can then be called with: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002827 :let [success, div] = Compute(102, 6)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 :if success == "ok"
2829 : echo div
2830 :endif
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002831<
Bram Moolenaar39f05632006-03-19 22:15:26 +00002832 *:cal* *:call* *E107* *E117*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833:[range]cal[l] {name}([arguments])
2834 Call a function. The name of the function and its arguments
Bram Moolenaar68e65602019-05-26 21:33:31 +02002835 are as specified with `:function`. Up to 20 arguments can be
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002836 used. The returned value is discarded.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002837 In |Vim9| script using `:call` is optional, these two lines do
2838 the same thing: >
2839 call SomeFunc(arg)
2840 SomeFunc(arg)
2841< Without a range and for functions that accept a range, the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 function is called once. When a range is given the cursor is
2843 positioned at the start of the first line before executing the
2844 function.
2845 When a range is given and the function doesn't handle it
2846 itself, the function is executed for each line in the range,
2847 with the cursor in the first column of that line. The cursor
2848 is left at the last line (possibly moved by the last function
Bram Moolenaar58b85342016-08-14 19:54:54 +02002849 call). The arguments are re-evaluated for each line. Thus
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 this works:
2851 *function-range-example* >
2852 :function Mynumber(arg)
2853 : echo line(".") . " " . a:arg
2854 :endfunction
2855 :1,5call Mynumber(getline("."))
2856<
2857 The "a:firstline" and "a:lastline" are defined anyway, they
2858 can be used to do something different at the start or end of
2859 the range.
2860
2861 Example of a function that handles the range itself: >
2862
2863 :function Cont() range
2864 : execute (a:firstline + 1) . "," . a:lastline . 's/^/\t\\ '
2865 :endfunction
2866 :4,8call Cont()
2867<
2868 This function inserts the continuation character "\" in front
2869 of all the lines in the range, except the first one.
2870
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002871 When the function returns a composite value it can be further
2872 dereferenced, but the range will not be used then. Example: >
2873 :4,8call GetDict().method()
2874< Here GetDict() gets the range but method() does not.
2875
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 *E132*
2877The recursiveness of user functions is restricted with the |'maxfuncdepth'|
2878option.
2879
Bram Moolenaar25e42232019-08-04 15:04:10 +02002880It is also possible to use `:eval`. It does not support a range, but does
2881allow for method chaining, e.g.: >
2882 eval GetList()->Filter()->append('$')
2883
Bram Moolenaar088e8e32019-08-08 22:15:18 +02002884A function can also be called as part of evaluating an expression or when it
2885is used as a method: >
2886 let x = GetList()
2887 let y = GetList()->Filter()
2888
Bram Moolenaar7c626922005-02-07 22:01:03 +00002889
2890AUTOMATICALLY LOADING FUNCTIONS ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 *autoload-functions*
2892When using many or large functions, it's possible to automatically define them
Bram Moolenaar7c626922005-02-07 22:01:03 +00002893only when they are used. There are two methods: with an autocommand and with
2894the "autoload" directory in 'runtimepath'.
2895
2896
2897Using an autocommand ~
2898
Bram Moolenaar05159a02005-02-26 23:04:13 +00002899This is introduced in the user manual, section |41.14|.
2900
Bram Moolenaar7c626922005-02-07 22:01:03 +00002901The autocommand is useful if you have a plugin that is a long Vim script file.
Bram Moolenaar68e65602019-05-26 21:33:31 +02002902You can define the autocommand and quickly quit the script with `:finish`.
Bram Moolenaar58b85342016-08-14 19:54:54 +02002903That makes Vim startup faster. The autocommand should then load the same file
Bram Moolenaar68e65602019-05-26 21:33:31 +02002904again, setting a variable to skip the `:finish` command.
Bram Moolenaar7c626922005-02-07 22:01:03 +00002905
2906Use the FuncUndefined autocommand event with a pattern that matches the
2907function(s) to be defined. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908
2909 :au FuncUndefined BufNet* source ~/vim/bufnetfuncs.vim
2910
2911The file "~/vim/bufnetfuncs.vim" should then define functions that start with
2912"BufNet". Also see |FuncUndefined|.
2913
Bram Moolenaar7c626922005-02-07 22:01:03 +00002914
2915Using an autoload script ~
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002916 *autoload* *E746*
Bram Moolenaar05159a02005-02-26 23:04:13 +00002917This is introduced in the user manual, section |41.15|.
2918
Bram Moolenaar7c626922005-02-07 22:01:03 +00002919Using a script in the "autoload" directory is simpler, but requires using
2920exactly the right file name. A function that can be autoloaded has a name
2921like this: >
2922
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002923 :call filename#funcname()
Bram Moolenaar7c626922005-02-07 22:01:03 +00002924
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002925These functions are always global, in Vim9 script "g:" needs to be used: >
2926 :call g:filename#funcname()
2927
Bram Moolenaar7c626922005-02-07 22:01:03 +00002928When such a function is called, and it is not defined yet, Vim will search the
2929"autoload" directories in 'runtimepath' for a script file called
2930"filename.vim". For example "~/.vim/autoload/filename.vim". That file should
2931then define the function like this: >
2932
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002933 function filename#funcname()
Bram Moolenaar7c626922005-02-07 22:01:03 +00002934 echo "Done!"
2935 endfunction
2936
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002937The file name and the name used before the # in the function must match
Bram Moolenaar7c626922005-02-07 22:01:03 +00002938exactly, and the defined function must have the name exactly as it will be
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002939called. In Vim9 script the "g:" prefix must be used: >
2940 function g:filename#funcname()
2941
2942or for a compiled function: >
2943 def g:filename#funcname()
Bram Moolenaar7c626922005-02-07 22:01:03 +00002944
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002945It is possible to use subdirectories. Every # in the function name works like
2946a path separator. Thus when calling a function: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00002947
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002948 :call foo#bar#func()
Bram Moolenaar7c626922005-02-07 22:01:03 +00002949
2950Vim will look for the file "autoload/foo/bar.vim" in 'runtimepath'.
2951
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002952This also works when reading a variable that has not been set yet: >
2953
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002954 :let l = foo#bar#lvar
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002955
Bram Moolenaara5792f52005-11-23 21:25:05 +00002956However, when the autoload script was already loaded it won't be loaded again
2957for an unknown variable.
2958
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002959When assigning a value to such a variable nothing special happens. This can
2960be used to pass settings to the autoload script before it's loaded: >
2961
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002962 :let foo#bar#toggle = 1
2963 :call foo#bar#func()
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002964
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002965Note that when you make a mistake and call a function that is supposed to be
2966defined in an autoload script, but the script doesn't actually define the
Bram Moolenaarcb80aa22020-10-26 21:12:46 +01002967function, you will get an error message for the missing function. If you fix
2968the autoload script it won't be automatically loaded again. Either restart
2969Vim or manually source the script.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002970
2971Also note that if you have two script files, and one calls a function in the
Bram Moolenaar446cb832008-06-24 21:56:24 +00002972other and vice versa, before the used function is defined, it won't work.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002973Avoid using the autoload functionality at the toplevel.
Bram Moolenaar7c626922005-02-07 22:01:03 +00002974
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002975Hint: If you distribute a bunch of scripts you can pack them together with the
2976|vimball| utility. Also read the user manual |distribute-script|.
2977
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978==============================================================================
29796. Curly braces names *curly-braces-names*
2980
Bram Moolenaar84f72352012-03-11 15:57:40 +01002981In most places where you can use a variable, you can use a "curly braces name"
2982variable. This is a regular variable name with one or more expressions
2983wrapped in braces {} like this: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 my_{adjective}_variable
2985
Bram Moolenaar5da36052021-12-27 15:39:57 +00002986This only works in legacy Vim script, not in |Vim9| script.
2987
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988When Vim encounters this, it evaluates the expression inside the braces, puts
2989that in place of the expression, and re-interprets the whole as a variable
2990name. So in the above example, if the variable "adjective" was set to
2991"noisy", then the reference would be to "my_noisy_variable", whereas if
2992"adjective" was set to "quiet", then it would be to "my_quiet_variable".
2993
2994One application for this is to create a set of variables governed by an option
Bram Moolenaar58b85342016-08-14 19:54:54 +02002995value. For example, the statement >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 echo my_{&background}_message
2997
2998would output the contents of "my_dark_message" or "my_light_message" depending
2999on the current value of 'background'.
3000
3001You can use multiple brace pairs: >
3002 echo my_{adverb}_{adjective}_message
3003..or even nest them: >
3004 echo my_{ad{end_of_word}}_message
3005where "end_of_word" is either "verb" or "jective".
3006
3007However, the expression inside the braces must evaluate to a valid single
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003008variable name, e.g. this is invalid: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 :let foo='a + b'
3010 :echo c{foo}d
3011.. since the result of expansion is "ca + bd", which is not a variable name.
3012
3013 *curly-braces-function-names*
3014You can call and define functions by an evaluated name in a similar way.
3015Example: >
3016 :let func_end='whizz'
3017 :call my_func_{func_end}(parameter)
3018
3019This would call the function "my_func_whizz(parameter)".
3020
Bram Moolenaar84f72352012-03-11 15:57:40 +01003021This does NOT work: >
3022 :let i = 3
3023 :let @{i} = '' " error
3024 :echo @{i} " error
3025
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026==============================================================================
30277. Commands *expression-commands*
3028
Bram Moolenaar5da36052021-12-27 15:39:57 +00003029Note: in |Vim9| script `:let` is not used. `:var` is used for variable
3030declarations and assignments do not use a command. |vim9-declaration|
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003031
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032:let {var-name} = {expr1} *:let* *E18*
3033 Set internal variable {var-name} to the result of the
3034 expression {expr1}. The variable will get the type
3035 from the {expr}. If {var-name} didn't exist yet, it
3036 is created.
3037
Bram Moolenaar13065c42005-01-08 16:08:21 +00003038:let {var-name}[{idx}] = {expr1} *E689*
3039 Set a list item to the result of the expression
3040 {expr1}. {var-name} must refer to a list and {idx}
3041 must be a valid index in that list. For nested list
3042 the index can be repeated.
Bram Moolenaar446cb832008-06-24 21:56:24 +00003043 This cannot be used to add an item to a |List|.
Bram Moolenaar58b85342016-08-14 19:54:54 +02003044 This cannot be used to set a byte in a String. You
Bram Moolenaar446cb832008-06-24 21:56:24 +00003045 can do that like this: >
3046 :let var = var[0:2] . 'X' . var[4:]
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01003047< When {var-name} is a |Blob| then {idx} can be the
3048 length of the blob, in which case one byte is
3049 appended.
3050
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003051 *E711* *E719*
3052:let {var-name}[{idx1}:{idx2}] = {expr1} *E708* *E709* *E710*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003053 Set a sequence of items in a |List| to the result of
3054 the expression {expr1}, which must be a list with the
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003055 correct number of items.
3056 {idx1} can be omitted, zero is used instead.
3057 {idx2} can be omitted, meaning the end of the list.
3058 When the selected range of items is partly past the
3059 end of the list, items will be added.
3060
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003061 *:let+=* *:let-=* *:letstar=*
3062 *:let/=* *:let%=* *:let.=* *:let..=* *E734* *E985*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003063:let {var} += {expr1} Like ":let {var} = {var} + {expr1}".
3064:let {var} -= {expr1} Like ":let {var} = {var} - {expr1}".
Bram Moolenaarff697e62019-02-12 22:28:33 +01003065:let {var} *= {expr1} Like ":let {var} = {var} * {expr1}".
3066:let {var} /= {expr1} Like ":let {var} = {var} / {expr1}".
3067:let {var} %= {expr1} Like ":let {var} = {var} % {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003068:let {var} .= {expr1} Like ":let {var} = {var} . {expr1}".
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003069:let {var} ..= {expr1} Like ":let {var} = {var} .. {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003070 These fail if {var} was not set yet and when the type
3071 of {var} and {expr1} don't fit the operator.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003072 `.=` is not supported with Vim script version 2 and
3073 later, see |vimscript-version|.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003074
3075
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076:let ${env-name} = {expr1} *:let-environment* *:let-$*
3077 Set environment variable {env-name} to the result of
3078 the expression {expr1}. The type is always String.
Bram Moolenaar56c860c2019-08-17 20:09:31 +02003079
3080 On some systems making an environment variable empty
3081 causes it to be deleted. Many systems do not make a
3082 difference between an environment variable that is not
3083 set and an environment variable that is empty.
3084
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003085:let ${env-name} .= {expr1}
3086 Append {expr1} to the environment variable {env-name}.
3087 If the environment variable didn't exist yet this
3088 works like "=".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089
3090:let @{reg-name} = {expr1} *:let-register* *:let-@*
3091 Write the result of the expression {expr1} in register
3092 {reg-name}. {reg-name} must be a single letter, and
3093 must be the name of a writable register (see
3094 |registers|). "@@" can be used for the unnamed
3095 register, "@/" for the search pattern.
3096 If the result of {expr1} ends in a <CR> or <NL>, the
3097 register will be linewise, otherwise it will be set to
3098 characterwise.
3099 This can be used to clear the last search pattern: >
3100 :let @/ = ""
3101< This is different from searching for an empty string,
3102 that would match everywhere.
3103
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003104:let @{reg-name} .= {expr1}
Bram Moolenaar58b85342016-08-14 19:54:54 +02003105 Append {expr1} to register {reg-name}. If the
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003106 register was empty it's like setting it to {expr1}.
3107
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003108:let &{option-name} = {expr1} *:let-option* *:let-&*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 Set option {option-name} to the result of the
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003110 expression {expr1}. A String or Number value is
3111 always converted to the type of the option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 For an option local to a window or buffer the effect
3113 is just like using the |:set| command: both the local
Bram Moolenaara5fac542005-10-12 20:58:49 +00003114 value and the global value are changed.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003115 Example: >
3116 :let &path = &path . ',/usr/local/include'
Bram Moolenaar3df01732017-02-17 22:47:16 +01003117< This also works for terminal codes in the form t_xx.
3118 But only for alphanumerical names. Example: >
3119 :let &t_k1 = "\<Esc>[234;"
3120< When the code does not exist yet it will be created as
3121 a terminal key code, there is no error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003123:let &{option-name} .= {expr1}
3124 For a string option: Append {expr1} to the value.
3125 Does not insert a comma like |:set+=|.
3126
3127:let &{option-name} += {expr1}
3128:let &{option-name} -= {expr1}
3129 For a number or boolean option: Add or subtract
3130 {expr1}.
3131
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132:let &l:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003133:let &l:{option-name} .= {expr1}
3134:let &l:{option-name} += {expr1}
3135:let &l:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 Like above, but only set the local value of an option
3137 (if there is one). Works like |:setlocal|.
3138
3139:let &g:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003140:let &g:{option-name} .= {expr1}
3141:let &g:{option-name} += {expr1}
3142:let &g:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 Like above, but only set the global value of an option
3144 (if there is one). Works like |:setglobal|.
3145
Bram Moolenaar13065c42005-01-08 16:08:21 +00003146:let [{name1}, {name2}, ...] = {expr1} *:let-unpack* *E687* *E688*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003147 {expr1} must evaluate to a |List|. The first item in
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003148 the list is assigned to {name1}, the second item to
3149 {name2}, etc.
3150 The number of names must match the number of items in
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003151 the |List|.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003152 Each name can be one of the items of the ":let"
3153 command as mentioned above.
3154 Example: >
3155 :let [s, item] = GetItem(s)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003156< Detail: {expr1} is evaluated first, then the
3157 assignments are done in sequence. This matters if
3158 {name2} depends on {name1}. Example: >
3159 :let x = [0, 1]
3160 :let i = 0
3161 :let [i, x[i]] = [1, 2]
3162 :echo x
3163< The result is [0, 2].
3164
3165:let [{name1}, {name2}, ...] .= {expr1}
3166:let [{name1}, {name2}, ...] += {expr1}
3167:let [{name1}, {name2}, ...] -= {expr1}
3168 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003169 |List| item.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003170
Bram Moolenaard1caa942020-04-10 22:10:56 +02003171:let [{name}, ..., ; {lastname}] = {expr1} *E452*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003172 Like |:let-unpack| above, but the |List| may have more
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003173 items than there are names. A list of the remaining
3174 items is assigned to {lastname}. If there are no
3175 remaining items {lastname} is set to an empty list.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00003176 Example: >
3177 :let [a, b; rest] = ["aval", "bval", 3, 4]
3178<
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003179:let [{name}, ..., ; {lastname}] .= {expr1}
3180:let [{name}, ..., ; {lastname}] += {expr1}
3181:let [{name}, ..., ; {lastname}] -= {expr1}
3182 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003183 |List| item.
Bram Moolenaar4a748032010-09-30 21:47:56 +02003184
Bram Moolenaar24582002019-07-21 14:14:26 +02003185 *:let=<<* *:let-heredoc*
3186 *E990* *E991* *E172* *E221*
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003187:let {var-name} =<< [trim] {endmarker}
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003188text...
3189text...
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003190{endmarker}
Bram Moolenaare46a4402020-06-30 20:38:27 +02003191 Set internal variable {var-name} to a |List|
3192 containing the lines of text bounded by the string
Bram Moolenaaraa970ab2020-08-02 16:10:39 +02003193 {endmarker}. The lines of text is used as a
3194 |literal-string|.
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003195 {endmarker} must not contain white space.
3196 {endmarker} cannot start with a lower case character.
3197 The last line should end only with the {endmarker}
3198 string without any other character. Watch out for
3199 white space after {endmarker}!
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003200
Bram Moolenaare7eb9272019-06-24 00:58:07 +02003201 Without "trim" any white space characters in the lines
3202 of text are preserved. If "trim" is specified before
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003203 {endmarker}, then indentation is stripped so you can
3204 do: >
Bram Moolenaare7eb9272019-06-24 00:58:07 +02003205 let text =<< trim END
3206 if ok
3207 echo 'done'
3208 endif
3209 END
3210< Results in: ["if ok", " echo 'done'", "endif"]
3211 The marker must line up with "let" and the indentation
3212 of the first line is removed from all the text lines.
3213 Specifically: all the leading indentation exactly
3214 matching the leading indentation of the first
3215 non-empty text line is stripped from the input lines.
3216 All leading indentation exactly matching the leading
3217 indentation before `let` is stripped from the line
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003218 containing {endmarker}. Note that the difference
3219 between space and tab matters here.
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003220
3221 If {var-name} didn't exist yet, it is created.
3222 Cannot be followed by another command, but can be
3223 followed by a comment.
3224
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003225 To avoid line continuation to be applied, consider
3226 adding 'C' to 'cpoptions': >
3227 set cpo+=C
3228 let var =<< END
3229 \ leading backslash
3230 END
3231 set cpo-=C
3232<
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003233 Examples: >
3234 let var1 =<< END
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003235 Sample text 1
3236 Sample text 2
3237 Sample text 3
3238 END
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003239
3240 let data =<< trim DATA
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003241 1 2 3 4
3242 5 6 7 8
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003243 DATA
3244<
Bram Moolenaar4a748032010-09-30 21:47:56 +02003245 *E121*
Bram Moolenaar58b85342016-08-14 19:54:54 +02003246:let {var-name} .. List the value of variable {var-name}. Multiple
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003247 variable names may be given. Special names recognized
3248 here: *E738*
Bram Moolenaarca003e12006-03-17 23:19:38 +00003249 g: global variables
3250 b: local buffer variables
3251 w: local window variables
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003252 t: local tab page variables
Bram Moolenaarca003e12006-03-17 23:19:38 +00003253 s: script-local variables
3254 l: local function variables
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003255 v: Vim variables.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003256 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00003258:let List the values of all variables. The type of the
3259 variable is indicated before the value:
3260 <nothing> String
3261 # Number
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003262 * Funcref
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003263 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003265:unl[et][!] {name} ... *:unlet* *:unl* *E108* *E795*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003266 Remove the internal variable {name}. Several variable
3267 names can be given, they are all removed. The name
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003268 may also be a |List| or |Dictionary| item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 With [!] no error message is given for non-existing
3270 variables.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003271 One or more items from a |List| can be removed: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003272 :unlet list[3] " remove fourth item
3273 :unlet list[3:] " remove fourth item to last
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003274< One item from a |Dictionary| can be removed at a time: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003275 :unlet dict['two']
3276 :unlet dict.two
Bram Moolenaarc236c162008-07-13 17:41:49 +00003277< This is especially useful to clean up used global
3278 variables and script-local variables (these are not
3279 deleted when the script ends). Function-local
3280 variables are automatically deleted when the function
3281 ends.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282
Bram Moolenaar137374f2018-05-13 15:59:50 +02003283:unl[et] ${env-name} ... *:unlet-environment* *:unlet-$*
3284 Remove environment variable {env-name}.
3285 Can mix {name} and ${env-name} in one :unlet command.
3286 No error message is given for a non-existing
3287 variable, also without !.
3288 If the system does not support deleting an environment
Bram Moolenaar9937a052019-06-15 15:45:06 +02003289 variable, it is made empty.
Bram Moolenaar137374f2018-05-13 15:59:50 +02003290
Bram Moolenaar1c196e72019-06-16 15:41:58 +02003291 *:cons* *:const*
Bram Moolenaar9937a052019-06-15 15:45:06 +02003292:cons[t] {var-name} = {expr1}
3293:cons[t] [{name1}, {name2}, ...] = {expr1}
Bram Moolenaar9937a052019-06-15 15:45:06 +02003294:cons[t] [{name}, ..., ; {lastname}] = {expr1}
3295:cons[t] {var-name} =<< [trim] {marker}
3296text...
3297text...
3298{marker}
3299 Similar to |:let|, but additionally lock the variable
3300 after setting the value. This is the same as locking
3301 the variable with |:lockvar| just after |:let|, thus: >
3302 :const x = 1
3303< is equivalent to: >
3304 :let x = 1
Bram Moolenaar021bda52020-08-17 21:07:22 +02003305 :lockvar! x
Bram Moolenaara187c432020-09-16 21:08:28 +02003306< NOTE: in Vim9 script `:const` works differently, see
3307 |vim9-const|
3308 This is useful if you want to make sure the variable
Bram Moolenaar021bda52020-08-17 21:07:22 +02003309 is not modified. If the value is a List or Dictionary
3310 literal then the items also cannot be changed: >
3311 const ll = [1, 2, 3]
3312 let ll[1] = 5 " Error!
Bram Moolenaar6e649222021-10-04 21:32:54 +01003313< Nested references are not locked: >
Bram Moolenaar021bda52020-08-17 21:07:22 +02003314 let lvar = ['a']
3315 const lconst = [0, lvar]
3316 let lconst[0] = 2 " Error!
3317 let lconst[1][0] = 'b' " OK
3318< *E995*
Bram Moolenaar9b283522019-06-17 22:19:33 +02003319 |:const| does not allow to for changing a variable: >
Bram Moolenaar9937a052019-06-15 15:45:06 +02003320 :let x = 1
3321 :const x = 2 " Error!
Bram Moolenaar1c196e72019-06-16 15:41:58 +02003322< *E996*
3323 Note that environment variables, option values and
3324 register values cannot be used here, since they cannot
3325 be locked.
3326
Bram Moolenaar85850f32019-07-19 22:05:51 +02003327:cons[t]
3328:cons[t] {var-name}
3329 If no argument is given or only {var-name} is given,
3330 the behavior is the same as |:let|.
3331
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003332:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
3333 Lock the internal variable {name}. Locking means that
3334 it can no longer be changed (until it is unlocked).
3335 A locked variable can be deleted: >
3336 :lockvar v
Bram Moolenaardad44732021-03-31 20:07:33 +02003337 :let v = 'asdf' " fails!
3338 :unlet v " works
Bram Moolenaare7877fe2017-02-20 22:35:33 +01003339< *E741* *E940*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003340 If you try to change a locked variable you get an
Bram Moolenaare7877fe2017-02-20 22:35:33 +01003341 error message: "E741: Value is locked: {name}".
3342 If you try to lock or unlock a built-in variable you
3343 get an error message: "E940: Cannot lock or unlock
3344 variable {name}".
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003345
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003346 [depth] is relevant when locking a |List| or
3347 |Dictionary|. It specifies how deep the locking goes:
Bram Moolenaara187c432020-09-16 21:08:28 +02003348 0 Lock the variable {name} but not its
3349 value.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003350 1 Lock the |List| or |Dictionary| itself,
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003351 cannot add or remove items, but can
3352 still change their values.
3353 2 Also lock the values, cannot change
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003354 the items. If an item is a |List| or
3355 |Dictionary|, cannot add or remove
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003356 items, but can still change the
3357 values.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003358 3 Like 2 but for the |List| /
3359 |Dictionary| in the |List| /
3360 |Dictionary|, one level deeper.
3361 The default [depth] is 2, thus when {name} is a |List|
3362 or |Dictionary| the values cannot be changed.
Bram Moolenaara187c432020-09-16 21:08:28 +02003363
3364 Example with [depth] 0: >
3365 let mylist = [1, 2, 3]
3366 lockvar 0 mylist
Bram Moolenaar6e649222021-10-04 21:32:54 +01003367 let mylist[0] = 77 " OK
3368 call add(mylist, 4] " OK
Bram Moolenaara187c432020-09-16 21:08:28 +02003369 let mylist = [7, 8, 9] " Error!
3370< *E743*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003371 For unlimited depth use [!] and omit [depth].
3372 However, there is a maximum depth of 100 to catch
3373 loops.
3374
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003375 Note that when two variables refer to the same |List|
3376 and you lock one of them, the |List| will also be
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003377 locked when used through the other variable.
3378 Example: >
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003379 :let l = [0, 1, 2, 3]
3380 :let cl = l
3381 :lockvar l
3382 :let cl[1] = 99 " won't work!
3383< You may want to make a copy of a list to avoid this.
3384 See |deepcopy()|.
3385
3386
3387:unlo[ckvar][!] [depth] {name} ... *:unlockvar* *:unlo*
3388 Unlock the internal variable {name}. Does the
3389 opposite of |:lockvar|.
3390
Bram Moolenaar61da1bf2019-06-06 12:14:49 +02003391:if {expr1} *:if* *:end* *:endif* *:en* *E171* *E579* *E580*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392:en[dif] Execute the commands until the next matching ":else"
3393 or ":endif" if {expr1} evaluates to non-zero.
3394
3395 From Vim version 4.5 until 5.0, every Ex command in
3396 between the ":if" and ":endif" is ignored. These two
3397 commands were just to allow for future expansions in a
Bram Moolenaar85084ef2016-01-17 22:26:33 +01003398 backward compatible way. Nesting was allowed. Note
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 that any ":else" or ":elseif" was ignored, the "else"
3400 part was not executed either.
3401
3402 You can use this to remain compatible with older
3403 versions: >
3404 :if version >= 500
3405 : version-5-specific-commands
3406 :endif
3407< The commands still need to be parsed to find the
3408 "endif". Sometimes an older Vim has a problem with a
3409 new command. For example, ":silent" is recognized as
3410 a ":substitute" command. In that case ":execute" can
3411 avoid problems: >
3412 :if version >= 600
3413 : execute "silent 1,$delete"
3414 :endif
3415<
3416 NOTE: The ":append" and ":insert" commands don't work
3417 properly in between ":if" and ":endif".
3418
3419 *:else* *:el* *E581* *E583*
3420:el[se] Execute the commands until the next matching ":else"
3421 or ":endif" if they previously were not being
3422 executed.
3423
3424 *:elseif* *:elsei* *E582* *E584*
3425:elsei[f] {expr1} Short for ":else" ":if", with the addition that there
3426 is no extra ":endif".
3427
3428:wh[ile] {expr1} *:while* *:endwhile* *:wh* *:endw*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003429 *E170* *E585* *E588* *E733*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430:endw[hile] Repeat the commands between ":while" and ":endwhile",
3431 as long as {expr1} evaluates to non-zero.
3432 When an error is detected from a command inside the
3433 loop, execution continues after the "endwhile".
Bram Moolenaar12805862005-01-05 22:16:17 +00003434 Example: >
3435 :let lnum = 1
3436 :while lnum <= line("$")
3437 :call FixLine(lnum)
3438 :let lnum = lnum + 1
3439 :endwhile
3440<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 NOTE: The ":append" and ":insert" commands don't work
Bram Moolenaard8b02732005-01-14 21:48:43 +00003442 properly inside a ":while" and ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003444:for {var} in {object} *:for* *E690* *E732*
Bram Moolenaar12805862005-01-05 22:16:17 +00003445:endfo[r] *:endfo* *:endfor*
3446 Repeat the commands between ":for" and ":endfor" for
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003447 each item in {object}. {object} can be a |List| or
Bram Moolenaar5da36052021-12-27 15:39:57 +00003448 a |Blob|.
3449
3450 Variable {var} is set to the value of each item.
3451 In |Vim9| script the loop variable must not have been
3452 declared yet, unless when it is a
3453 global/window/tab/buffer variable.
3454
3455 When an error is detected for a command inside the
3456 loop, execution continues after the "endfor".
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003457 Changing {object} inside the loop affects what items
3458 are used. Make a copy if this is unwanted: >
Bram Moolenaarde8866b2005-01-06 23:24:37 +00003459 :for item in copy(mylist)
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003460<
Bram Moolenaar5da36052021-12-27 15:39:57 +00003461 When {object} is a |List| and not making a copy, in
3462 legacy script Vim stores a reference to the next item
3463 in the |List| before executing the commands with the
3464 current item. Thus the current item can be removed
3465 without effect. Removing any later item means it will
3466 not be found. Thus the following example works (an
3467 inefficient way to make a |List| empty): >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003468 for item in mylist
3469 call remove(mylist, 0)
3470 endfor
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003471< Note that reordering the |List| (e.g., with sort() or
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003472 reverse()) may have unexpected effects.
Bram Moolenaar5da36052021-12-27 15:39:57 +00003473 In |Vim9| script the index is used. If an item before
3474 the current one is deleted the next item will be
3475 skipped.
Bram Moolenaar12805862005-01-05 22:16:17 +00003476
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003477 When {object} is a |Blob|, Vim always makes a copy to
3478 iterate over. Unlike with |List|, modifying the
3479 |Blob| does not affect the iteration.
3480
Bram Moolenaar12805862005-01-05 22:16:17 +00003481:for [{var1}, {var2}, ...] in {listlist}
3482:endfo[r]
3483 Like ":for" above, but each item in {listlist} must be
3484 a list, of which each item is assigned to {var1},
3485 {var2}, etc. Example: >
3486 :for [lnum, col] in [[1, 3], [2, 5], [3, 8]]
3487 :echo getline(lnum)[col]
3488 :endfor
3489<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 *:continue* *:con* *E586*
Bram Moolenaar12805862005-01-05 22:16:17 +00003491:con[tinue] When used inside a ":while" or ":for" loop, jumps back
3492 to the start of the loop.
3493 If it is used after a |:try| inside the loop but
3494 before the matching |:finally| (if present), the
3495 commands following the ":finally" up to the matching
3496 |:endtry| are executed first. This process applies to
3497 all nested ":try"s inside the loop. The outermost
3498 ":endtry" then jumps back to the start of the loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499
3500 *:break* *:brea* *E587*
Bram Moolenaar12805862005-01-05 22:16:17 +00003501:brea[k] When used inside a ":while" or ":for" loop, skips to
3502 the command after the matching ":endwhile" or
3503 ":endfor".
3504 If it is used after a |:try| inside the loop but
3505 before the matching |:finally| (if present), the
3506 commands following the ":finally" up to the matching
3507 |:endtry| are executed first. This process applies to
3508 all nested ":try"s inside the loop. The outermost
3509 ":endtry" then jumps to the command after the loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510
3511:try *:try* *:endt* *:endtry* *E600* *E601* *E602*
3512:endt[ry] Change the error handling for the commands between
3513 ":try" and ":endtry" including everything being
3514 executed across ":source" commands, function calls,
3515 or autocommand invocations.
3516
3517 When an error or interrupt is detected and there is
3518 a |:finally| command following, execution continues
3519 after the ":finally". Otherwise, or when the
3520 ":endtry" is reached thereafter, the next
3521 (dynamically) surrounding ":try" is checked for
3522 a corresponding ":finally" etc. Then the script
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003523 processing is terminated. Whether a function
3524 definition has an "abort" argument does not matter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 Example: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003526 try | call Unknown() | finally | echomsg "cleanup" | endtry
3527 echomsg "not reached"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528<
3529 Moreover, an error or interrupt (dynamically) inside
3530 ":try" and ":endtry" is converted to an exception. It
3531 can be caught as if it were thrown by a |:throw|
3532 command (see |:catch|). In this case, the script
3533 processing is not terminated.
3534
3535 The value "Vim:Interrupt" is used for an interrupt
3536 exception. An error in a Vim command is converted
3537 to a value of the form "Vim({command}):{errmsg}",
3538 other errors are converted to a value of the form
3539 "Vim:{errmsg}". {command} is the full command name,
3540 and {errmsg} is the message that is displayed if the
3541 error exception is not caught, always beginning with
3542 the error number.
3543 Examples: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003544 try | sleep 100 | catch /^Vim:Interrupt$/ | endtry
3545 try | edit | catch /^Vim(edit):E\d\+/ | echo "error" | endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546<
3547 *:cat* *:catch* *E603* *E604* *E605*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003548:cat[ch] /{pattern}/ The following commands until the next |:catch|,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 |:finally|, or |:endtry| that belongs to the same
3550 |:try| as the ":catch" are executed when an exception
3551 matching {pattern} is being thrown and has not yet
3552 been caught by a previous ":catch". Otherwise, these
3553 commands are skipped.
3554 When {pattern} is omitted all errors are caught.
3555 Examples: >
Bram Moolenaar647e24b2019-03-17 16:39:46 +01003556 :catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C)
3557 :catch /^Vim\%((\a\+)\)\=:E/ " catch all Vim errors
3558 :catch /^Vim\%((\a\+)\)\=:/ " catch errors and interrupts
3559 :catch /^Vim(write):/ " catch all errors in :write
3560 :catch /^Vim\%((\a\+)\)\=:E123:/ " catch error E123
3561 :catch /my-exception/ " catch user exception
3562 :catch /.*/ " catch everything
3563 :catch " same as /.*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564<
3565 Another character can be used instead of / around the
3566 {pattern}, so long as it does not have a special
3567 meaning (e.g., '|' or '"') and doesn't occur inside
3568 {pattern}.
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02003569 Information about the exception is available in
3570 |v:exception|. Also see |throw-variables|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 NOTE: It is not reliable to ":catch" the TEXT of
3572 an error message because it may vary in different
3573 locales.
3574
3575 *:fina* *:finally* *E606* *E607*
3576:fina[lly] The following commands until the matching |:endtry|
3577 are executed whenever the part between the matching
3578 |:try| and the ":finally" is left: either by falling
3579 through to the ":finally" or by a |:continue|,
3580 |:break|, |:finish|, or |:return|, or by an error or
3581 interrupt or exception (see |:throw|).
3582
3583 *:th* *:throw* *E608*
3584:th[row] {expr1} The {expr1} is evaluated and thrown as an exception.
3585 If the ":throw" is used after a |:try| but before the
3586 first corresponding |:catch|, commands are skipped
3587 until the first ":catch" matching {expr1} is reached.
3588 If there is no such ":catch" or if the ":throw" is
3589 used after a ":catch" but before the |:finally|, the
3590 commands following the ":finally" (if present) up to
3591 the matching |:endtry| are executed. If the ":throw"
3592 is after the ":finally", commands up to the ":endtry"
3593 are skipped. At the ":endtry", this process applies
3594 again for the next dynamically surrounding ":try"
3595 (which may be found in a calling function or sourcing
3596 script), until a matching ":catch" has been found.
3597 If the exception is not caught, the command processing
3598 is terminated.
3599 Example: >
3600 :try | throw "oops" | catch /^oo/ | echo "caught" | endtry
Bram Moolenaar662db672011-03-22 14:05:35 +01003601< Note that "catch" may need to be on a separate line
3602 for when an error causes the parsing to skip the whole
3603 line and not see the "|" that separates the commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604
3605 *:ec* *:echo*
3606:ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The
3607 first {expr1} starts on a new line.
3608 Also see |:comment|.
3609 Use "\n" to start a new line. Use "\r" to move the
3610 cursor to the first column.
3611 Uses the highlighting set by the |:echohl| command.
3612 Cannot be followed by a comment.
3613 Example: >
3614 :echo "the value of 'shell' is" &shell
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003615< *:echo-redraw*
3616 A later redraw may make the message disappear again.
3617 And since Vim mostly postpones redrawing until it's
3618 finished with a sequence of commands this happens
3619 quite often. To avoid that a command from before the
3620 ":echo" causes a redraw afterwards (redraws are often
3621 postponed until you type something), force a redraw
3622 with the |:redraw| command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 :new | redraw | echo "there is a new window"
3624<
3625 *:echon*
3626:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
3627 |:comment|.
3628 Uses the highlighting set by the |:echohl| command.
3629 Cannot be followed by a comment.
3630 Example: >
3631 :echon "the value of 'shell' is " &shell
3632<
3633 Note the difference between using ":echo", which is a
3634 Vim command, and ":!echo", which is an external shell
3635 command: >
3636 :!echo % --> filename
3637< The arguments of ":!" are expanded, see |:_%|. >
3638 :!echo "%" --> filename or "filename"
3639< Like the previous example. Whether you see the double
3640 quotes or not depends on your 'shell'. >
3641 :echo % --> nothing
3642< The '%' is an illegal character in an expression. >
3643 :echo "%" --> %
3644< This just echoes the '%' character. >
3645 :echo expand("%") --> filename
3646< This calls the expand() function to expand the '%'.
3647
3648 *:echoh* *:echohl*
3649:echoh[l] {name} Use the highlight group {name} for the following
3650 |:echo|, |:echon| and |:echomsg| commands. Also used
3651 for the |input()| prompt. Example: >
3652 :echohl WarningMsg | echo "Don't panic!" | echohl None
3653< Don't forget to set the group back to "None",
3654 otherwise all following echo's will be highlighted.
3655
3656 *:echom* *:echomsg*
3657:echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
3658 message in the |message-history|.
3659 Spaces are placed between the arguments as with the
3660 |:echo| command. But unprintable characters are
3661 displayed, not interpreted.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003662 The parsing works slightly different from |:echo|,
3663 more like |:execute|. All the expressions are first
3664 evaluated and concatenated before echoing anything.
Bram Moolenaar461a7fc2018-12-22 13:28:07 +01003665 If expressions does not evaluate to a Number or
3666 String, string() is used to turn it into a string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 Uses the highlighting set by the |:echohl| command.
3668 Example: >
3669 :echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see."
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003670< See |:echo-redraw| to avoid the message disappearing
3671 when the screen is redrawn.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 *:echoe* *:echoerr*
3673:echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
3674 message in the |message-history|. When used in a
3675 script or function the line number will be added.
3676 Spaces are placed between the arguments as with the
Bram Moolenaar461a7fc2018-12-22 13:28:07 +01003677 |:echomsg| command. When used inside a try conditional,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 the message is raised as an error exception instead
3679 (see |try-echoerr|).
3680 Example: >
3681 :echoerr "This script just failed!"
3682< If you just want a highlighted message use |:echohl|.
3683 And to get a beep: >
3684 :exe "normal \<Esc>"
Bram Moolenaar4c868302021-03-22 16:19:45 +01003685
3686:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3687 Intended for testing: works like `:echomsg` but when
3688 running in the GUI and started from a terminal write
3689 the text to stdout.
3690
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003691 *:eval*
3692:eval {expr} Evaluate {expr} and discard the result. Example: >
3693 :eval Getlist()->Filter()->append('$')
3694
3695< The expression is supposed to have a side effect,
3696 since the resulting value is not used. In the example
3697 the `append()` call appends the List with text to the
3698 buffer. This is similar to `:call` but works with any
3699 expression.
3700
3701 The command can be shortened to `:ev` or `:eva`, but
3702 these are hard to recognize and therefore not to be
3703 used.
3704
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003705 The command cannot be followed by "|" and another
3706 command, since "|" is seen as part of the expression.
3707
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003708
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 *:exe* *:execute*
3710:exe[cute] {expr1} .. Executes the string that results from the evaluation
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003711 of {expr1} as an Ex command.
3712 Multiple arguments are concatenated, with a space in
Bram Moolenaar7e6a5152021-01-02 16:39:53 +01003713 between. To avoid the extra space use the ".."
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003714 operator to concatenate strings into one argument.
3715 {expr1} is used as the processed command, command line
3716 editing keys are not recognized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 Cannot be followed by a comment.
3718 Examples: >
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003719 :execute "buffer" nextbuf
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003720 :execute "normal" count .. "w"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721<
3722 ":execute" can be used to append a command to commands
3723 that don't accept a '|'. Example: >
3724 :execute '!ls' | echo "theend"
3725
3726< ":execute" is also a nice way to avoid having to type
3727 control characters in a Vim script for a ":normal"
3728 command: >
3729 :execute "normal ixxx\<Esc>"
3730< This has an <Esc> character, see |expr-string|.
3731
Bram Moolenaar446cb832008-06-24 21:56:24 +00003732 Be careful to correctly escape special characters in
3733 file names. The |fnameescape()| function can be used
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003734 for Vim commands, |shellescape()| for |:!| commands.
3735 Examples: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003736 :execute "e " .. fnameescape(filename)
3737 :execute "!ls " .. shellescape(filename, 1)
Bram Moolenaar446cb832008-06-24 21:56:24 +00003738<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 Note: The executed string may be any command-line, but
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01003740 starting or ending "if", "while" and "for" does not
3741 always work, because when commands are skipped the
3742 ":execute" is not evaluated and Vim loses track of
3743 where blocks start and end. Also "break" and
3744 "continue" should not be inside ":execute".
3745 This example does not work, because the ":execute" is
3746 not evaluated and Vim does not see the "while", and
3747 gives an error for finding an ":endwhile": >
3748 :if 0
3749 : execute 'while i > 5'
3750 : echo "test"
3751 : endwhile
3752 :endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753<
3754 It is allowed to have a "while" or "if" command
3755 completely in the executed string: >
3756 :execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
3757<
3758
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003759 *:exe-comment*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 ":execute", ":echo" and ":echon" cannot be followed by
3761 a comment directly, because they see the '"' as the
3762 start of a string. But, you can use '|' followed by a
3763 comment. Example: >
3764 :echo "foo" | "this is a comment
3765
3766==============================================================================
37678. Exception handling *exception-handling*
3768
3769The Vim script language comprises an exception handling feature. This section
3770explains how it can be used in a Vim script.
3771
3772Exceptions may be raised by Vim on an error or on interrupt, see
3773|catch-errors| and |catch-interrupt|. You can also explicitly throw an
3774exception by using the ":throw" command, see |throw-catch|.
3775
3776
3777TRY CONDITIONALS *try-conditionals*
3778
3779Exceptions can be caught or can cause cleanup code to be executed. You can
3780use a try conditional to specify catch clauses (that catch exceptions) and/or
3781a finally clause (to be executed for cleanup).
3782 A try conditional begins with a |:try| command and ends at the matching
3783|:endtry| command. In between, you can use a |:catch| command to start
3784a catch clause, or a |:finally| command to start a finally clause. There may
3785be none or multiple catch clauses, but there is at most one finally clause,
3786which must not be followed by any catch clauses. The lines before the catch
3787clauses and the finally clause is called a try block. >
3788
3789 :try
Bram Moolenaar446cb832008-06-24 21:56:24 +00003790 : ...
3791 : ... TRY BLOCK
3792 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003794 : ...
3795 : ... CATCH CLAUSE
3796 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003798 : ...
3799 : ... CATCH CLAUSE
3800 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 :finally
Bram Moolenaar446cb832008-06-24 21:56:24 +00003802 : ...
3803 : ... FINALLY CLAUSE
3804 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 :endtry
3806
3807The try conditional allows to watch code for exceptions and to take the
3808appropriate actions. Exceptions from the try block may be caught. Exceptions
3809from the try block and also the catch clauses may cause cleanup actions.
3810 When no exception is thrown during execution of the try block, the control
3811is transferred to the finally clause, if present. After its execution, the
3812script continues with the line following the ":endtry".
3813 When an exception occurs during execution of the try block, the remaining
3814lines in the try block are skipped. The exception is matched against the
3815patterns specified as arguments to the ":catch" commands. The catch clause
3816after the first matching ":catch" is taken, other catch clauses are not
3817executed. The catch clause ends when the next ":catch", ":finally", or
3818":endtry" command is reached - whatever is first. Then, the finally clause
3819(if present) is executed. When the ":endtry" is reached, the script execution
3820continues in the following line as usual.
3821 When an exception that does not match any of the patterns specified by the
3822":catch" commands is thrown in the try block, the exception is not caught by
3823that try conditional and none of the catch clauses is executed. Only the
3824finally clause, if present, is taken. The exception pends during execution of
3825the finally clause. It is resumed at the ":endtry", so that commands after
3826the ":endtry" are not executed and the exception might be caught elsewhere,
3827see |try-nesting|.
3828 When during execution of a catch clause another exception is thrown, the
Bram Moolenaar58b85342016-08-14 19:54:54 +02003829remaining lines in that catch clause are not executed. The new exception is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830not matched against the patterns in any of the ":catch" commands of the same
3831try conditional and none of its catch clauses is taken. If there is, however,
3832a finally clause, it is executed, and the exception pends during its
3833execution. The commands following the ":endtry" are not executed. The new
3834exception might, however, be caught elsewhere, see |try-nesting|.
3835 When during execution of the finally clause (if present) an exception is
Bram Moolenaar58b85342016-08-14 19:54:54 +02003836thrown, the remaining lines in the finally clause are skipped. If the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837clause has been taken because of an exception from the try block or one of the
3838catch clauses, the original (pending) exception is discarded. The commands
3839following the ":endtry" are not executed, and the exception from the finally
3840clause is propagated and can be caught elsewhere, see |try-nesting|.
3841
3842The finally clause is also executed, when a ":break" or ":continue" for
3843a ":while" loop enclosing the complete try conditional is executed from the
3844try block or a catch clause. Or when a ":return" or ":finish" is executed
3845from the try block or a catch clause of a try conditional in a function or
3846sourced script, respectively. The ":break", ":continue", ":return", or
3847":finish" pends during execution of the finally clause and is resumed when the
3848":endtry" is reached. It is, however, discarded when an exception is thrown
3849from the finally clause.
3850 When a ":break" or ":continue" for a ":while" loop enclosing the complete
3851try conditional or when a ":return" or ":finish" is encountered in the finally
3852clause, the rest of the finally clause is skipped, and the ":break",
3853":continue", ":return" or ":finish" is executed as usual. If the finally
3854clause has been taken because of an exception or an earlier ":break",
3855":continue", ":return", or ":finish" from the try block or a catch clause,
3856this pending exception or command is discarded.
3857
3858For examples see |throw-catch| and |try-finally|.
3859
3860
3861NESTING OF TRY CONDITIONALS *try-nesting*
3862
3863Try conditionals can be nested arbitrarily. That is, a complete try
3864conditional can be put into the try block, a catch clause, or the finally
3865clause of another try conditional. If the inner try conditional does not
3866catch an exception thrown in its try block or throws a new exception from one
3867of its catch clauses or its finally clause, the outer try conditional is
3868checked according to the rules above. If the inner try conditional is in the
3869try block of the outer try conditional, its catch clauses are checked, but
Bram Moolenaar58b85342016-08-14 19:54:54 +02003870otherwise only the finally clause is executed. It does not matter for
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871nesting, whether the inner try conditional is directly contained in the outer
3872one, or whether the outer one sources a script or calls a function containing
3873the inner try conditional.
3874
3875When none of the active try conditionals catches an exception, just their
3876finally clauses are executed. Thereafter, the script processing terminates.
3877An error message is displayed in case of an uncaught exception explicitly
3878thrown by a ":throw" command. For uncaught error and interrupt exceptions
3879implicitly raised by Vim, the error message(s) or interrupt message are shown
3880as usual.
3881
3882For examples see |throw-catch|.
3883
3884
3885EXAMINING EXCEPTION HANDLING CODE *except-examine*
3886
3887Exception handling code can get tricky. If you are in doubt what happens, set
3888'verbose' to 13 or use the ":13verbose" command modifier when sourcing your
3889script file. Then you see when an exception is thrown, discarded, caught, or
3890finished. When using a verbosity level of at least 14, things pending in
3891a finally clause are also shown. This information is also given in debug mode
3892(see |debug-scripts|).
3893
3894
3895THROWING AND CATCHING EXCEPTIONS *throw-catch*
3896
3897You can throw any number or string as an exception. Use the |:throw| command
3898and pass the value to be thrown as argument: >
3899 :throw 4711
3900 :throw "string"
3901< *throw-expression*
3902You can also specify an expression argument. The expression is then evaluated
3903first, and the result is thrown: >
3904 :throw 4705 + strlen("string")
3905 :throw strpart("strings", 0, 6)
3906
3907An exception might be thrown during evaluation of the argument of the ":throw"
3908command. Unless it is caught there, the expression evaluation is abandoned.
3909The ":throw" command then does not throw a new exception.
3910 Example: >
3911
3912 :function! Foo(arg)
3913 : try
3914 : throw a:arg
3915 : catch /foo/
3916 : endtry
3917 : return 1
3918 :endfunction
3919 :
3920 :function! Bar()
3921 : echo "in Bar"
3922 : return 4710
3923 :endfunction
3924 :
3925 :throw Foo("arrgh") + Bar()
3926
3927This throws "arrgh", and "in Bar" is not displayed since Bar() is not
3928executed. >
3929 :throw Foo("foo") + Bar()
3930however displays "in Bar" and throws 4711.
3931
3932Any other command that takes an expression as argument might also be
Bram Moolenaar58b85342016-08-14 19:54:54 +02003933abandoned by an (uncaught) exception during the expression evaluation. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934exception is then propagated to the caller of the command.
3935 Example: >
3936
3937 :if Foo("arrgh")
3938 : echo "then"
3939 :else
3940 : echo "else"
3941 :endif
3942
3943Here neither of "then" or "else" is displayed.
3944
3945 *catch-order*
3946Exceptions can be caught by a try conditional with one or more |:catch|
3947commands, see |try-conditionals|. The values to be caught by each ":catch"
3948command can be specified as a pattern argument. The subsequent catch clause
3949gets executed when a matching exception is caught.
3950 Example: >
3951
3952 :function! Foo(value)
3953 : try
3954 : throw a:value
3955 : catch /^\d\+$/
3956 : echo "Number thrown"
3957 : catch /.*/
3958 : echo "String thrown"
3959 : endtry
3960 :endfunction
3961 :
3962 :call Foo(0x1267)
3963 :call Foo('string')
3964
3965The first call to Foo() displays "Number thrown", the second "String thrown".
3966An exception is matched against the ":catch" commands in the order they are
3967specified. Only the first match counts. So you should place the more
3968specific ":catch" first. The following order does not make sense: >
3969
3970 : catch /.*/
3971 : echo "String thrown"
3972 : catch /^\d\+$/
3973 : echo "Number thrown"
3974
3975The first ":catch" here matches always, so that the second catch clause is
3976never taken.
3977
3978 *throw-variables*
3979If you catch an exception by a general pattern, you may access the exact value
3980in the variable |v:exception|: >
3981
3982 : catch /^\d\+$/
3983 : echo "Number thrown. Value is" v:exception
3984
3985You may also be interested where an exception was thrown. This is stored in
3986|v:throwpoint|. Note that "v:exception" and "v:throwpoint" are valid for the
3987exception most recently caught as long it is not finished.
3988 Example: >
3989
3990 :function! Caught()
3991 : if v:exception != ""
3992 : echo 'Caught "' . v:exception . '" in ' . v:throwpoint
3993 : else
3994 : echo 'Nothing caught'
3995 : endif
3996 :endfunction
3997 :
3998 :function! Foo()
3999 : try
4000 : try
4001 : try
4002 : throw 4711
4003 : finally
4004 : call Caught()
4005 : endtry
4006 : catch /.*/
4007 : call Caught()
4008 : throw "oops"
4009 : endtry
4010 : catch /.*/
4011 : call Caught()
4012 : finally
4013 : call Caught()
4014 : endtry
4015 :endfunction
4016 :
4017 :call Foo()
4018
4019This displays >
4020
4021 Nothing caught
4022 Caught "4711" in function Foo, line 4
4023 Caught "oops" in function Foo, line 10
4024 Nothing caught
4025
4026A practical example: The following command ":LineNumber" displays the line
4027number in the script or function where it has been used: >
4028
4029 :function! LineNumber()
4030 : return substitute(v:throwpoint, '.*\D\(\d\+\).*', '\1', "")
4031 :endfunction
4032 :command! LineNumber try | throw "" | catch | echo LineNumber() | endtry
4033<
4034 *try-nested*
4035An exception that is not caught by a try conditional can be caught by
4036a surrounding try conditional: >
4037
4038 :try
4039 : try
4040 : throw "foo"
4041 : catch /foobar/
4042 : echo "foobar"
4043 : finally
4044 : echo "inner finally"
4045 : endtry
4046 :catch /foo/
4047 : echo "foo"
4048 :endtry
4049
4050The inner try conditional does not catch the exception, just its finally
4051clause is executed. The exception is then caught by the outer try
4052conditional. The example displays "inner finally" and then "foo".
4053
4054 *throw-from-catch*
4055You can catch an exception and throw a new one to be caught elsewhere from the
4056catch clause: >
4057
4058 :function! Foo()
4059 : throw "foo"
4060 :endfunction
4061 :
4062 :function! Bar()
4063 : try
4064 : call Foo()
4065 : catch /foo/
4066 : echo "Caught foo, throw bar"
4067 : throw "bar"
4068 : endtry
4069 :endfunction
4070 :
4071 :try
4072 : call Bar()
4073 :catch /.*/
4074 : echo "Caught" v:exception
4075 :endtry
4076
4077This displays "Caught foo, throw bar" and then "Caught bar".
4078
4079 *rethrow*
4080There is no real rethrow in the Vim script language, but you may throw
4081"v:exception" instead: >
4082
4083 :function! Bar()
4084 : try
4085 : call Foo()
4086 : catch /.*/
4087 : echo "Rethrow" v:exception
4088 : throw v:exception
4089 : endtry
4090 :endfunction
4091< *try-echoerr*
4092Note that this method cannot be used to "rethrow" Vim error or interrupt
4093exceptions, because it is not possible to fake Vim internal exceptions.
4094Trying so causes an error exception. You should throw your own exception
4095denoting the situation. If you want to cause a Vim error exception containing
4096the original error exception value, you can use the |:echoerr| command: >
4097
4098 :try
4099 : try
4100 : asdf
4101 : catch /.*/
4102 : echoerr v:exception
4103 : endtry
4104 :catch /.*/
4105 : echo v:exception
4106 :endtry
4107
4108This code displays
4109
Bram Moolenaar446cb832008-06-24 21:56:24 +00004110 Vim(echoerr):Vim:E492: Not an editor command: asdf ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111
4112
4113CLEANUP CODE *try-finally*
4114
4115Scripts often change global settings and restore them at their end. If the
4116user however interrupts the script by pressing CTRL-C, the settings remain in
Bram Moolenaar58b85342016-08-14 19:54:54 +02004117an inconsistent state. The same may happen to you in the development phase of
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118a script when an error occurs or you explicitly throw an exception without
4119catching it. You can solve these problems by using a try conditional with
4120a finally clause for restoring the settings. Its execution is guaranteed on
4121normal control flow, on error, on an explicit ":throw", and on interrupt.
4122(Note that errors and interrupts from inside the try conditional are converted
Bram Moolenaar58b85342016-08-14 19:54:54 +02004123to exceptions. When not caught, they terminate the script after the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124clause has been executed.)
4125Example: >
4126
4127 :try
4128 : let s:saved_ts = &ts
4129 : set ts=17
4130 :
4131 : " Do the hard work here.
4132 :
4133 :finally
4134 : let &ts = s:saved_ts
4135 : unlet s:saved_ts
4136 :endtry
4137
4138This method should be used locally whenever a function or part of a script
4139changes global settings which need to be restored on failure or normal exit of
4140that function or script part.
4141
4142 *break-finally*
4143Cleanup code works also when the try block or a catch clause is left by
4144a ":continue", ":break", ":return", or ":finish".
4145 Example: >
4146
4147 :let first = 1
4148 :while 1
4149 : try
4150 : if first
4151 : echo "first"
4152 : let first = 0
4153 : continue
4154 : else
4155 : throw "second"
4156 : endif
4157 : catch /.*/
4158 : echo v:exception
4159 : break
4160 : finally
4161 : echo "cleanup"
4162 : endtry
4163 : echo "still in while"
4164 :endwhile
4165 :echo "end"
4166
4167This displays "first", "cleanup", "second", "cleanup", and "end". >
4168
4169 :function! Foo()
4170 : try
4171 : return 4711
4172 : finally
4173 : echo "cleanup\n"
4174 : endtry
4175 : echo "Foo still active"
4176 :endfunction
4177 :
4178 :echo Foo() "returned by Foo"
4179
4180This displays "cleanup" and "4711 returned by Foo". You don't need to add an
Bram Moolenaar58b85342016-08-14 19:54:54 +02004181extra ":return" in the finally clause. (Above all, this would override the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182return value.)
4183
4184 *except-from-finally*
4185Using either of ":continue", ":break", ":return", ":finish", or ":throw" in
4186a finally clause is possible, but not recommended since it abandons the
4187cleanup actions for the try conditional. But, of course, interrupt and error
4188exceptions might get raised from a finally clause.
4189 Example where an error in the finally clause stops an interrupt from
4190working correctly: >
4191
4192 :try
4193 : try
4194 : echo "Press CTRL-C for interrupt"
4195 : while 1
4196 : endwhile
4197 : finally
4198 : unlet novar
4199 : endtry
4200 :catch /novar/
4201 :endtry
4202 :echo "Script still running"
4203 :sleep 1
4204
4205If you need to put commands that could fail into a finally clause, you should
4206think about catching or ignoring the errors in these commands, see
4207|catch-errors| and |ignore-errors|.
4208
4209
4210CATCHING ERRORS *catch-errors*
4211
4212If you want to catch specific errors, you just have to put the code to be
4213watched in a try block and add a catch clause for the error message. The
4214presence of the try conditional causes all errors to be converted to an
4215exception. No message is displayed and |v:errmsg| is not set then. To find
4216the right pattern for the ":catch" command, you have to know how the format of
4217the error exception is.
4218 Error exceptions have the following format: >
4219
4220 Vim({cmdname}):{errmsg}
4221or >
4222 Vim:{errmsg}
4223
4224{cmdname} is the name of the command that failed; the second form is used when
Bram Moolenaar58b85342016-08-14 19:54:54 +02004225the command name is not known. {errmsg} is the error message usually produced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226when the error occurs outside try conditionals. It always begins with
4227a capital "E", followed by a two or three-digit error number, a colon, and
4228a space.
4229
4230Examples:
4231
4232The command >
4233 :unlet novar
4234normally produces the error message >
4235 E108: No such variable: "novar"
4236which is converted inside try conditionals to an exception >
4237 Vim(unlet):E108: No such variable: "novar"
4238
4239The command >
4240 :dwim
4241normally produces the error message >
4242 E492: Not an editor command: dwim
4243which is converted inside try conditionals to an exception >
4244 Vim:E492: Not an editor command: dwim
4245
4246You can catch all ":unlet" errors by a >
4247 :catch /^Vim(unlet):/
4248or all errors for misspelled command names by a >
4249 :catch /^Vim:E492:/
4250
4251Some error messages may be produced by different commands: >
4252 :function nofunc
4253and >
4254 :delfunction nofunc
4255both produce the error message >
4256 E128: Function name must start with a capital: nofunc
4257which is converted inside try conditionals to an exception >
4258 Vim(function):E128: Function name must start with a capital: nofunc
4259or >
4260 Vim(delfunction):E128: Function name must start with a capital: nofunc
4261respectively. You can catch the error by its number independently on the
4262command that caused it if you use the following pattern: >
4263 :catch /^Vim(\a\+):E128:/
4264
4265Some commands like >
4266 :let x = novar
4267produce multiple error messages, here: >
4268 E121: Undefined variable: novar
4269 E15: Invalid expression: novar
4270Only the first is used for the exception value, since it is the most specific
4271one (see |except-several-errors|). So you can catch it by >
4272 :catch /^Vim(\a\+):E121:/
4273
4274You can catch all errors related to the name "nofunc" by >
4275 :catch /\<nofunc\>/
4276
4277You can catch all Vim errors in the ":write" and ":read" commands by >
4278 :catch /^Vim(\(write\|read\)):E\d\+:/
4279
4280You can catch all Vim errors by the pattern >
4281 :catch /^Vim\((\a\+)\)\=:E\d\+:/
4282<
4283 *catch-text*
4284NOTE: You should never catch the error message text itself: >
4285 :catch /No such variable/
Bram Moolenaar2b8388b2015-02-28 13:11:45 +01004286only works in the English locale, but not when the user has selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287a different language by the |:language| command. It is however helpful to
4288cite the message text in a comment: >
4289 :catch /^Vim(\a\+):E108:/ " No such variable
4290
4291
4292IGNORING ERRORS *ignore-errors*
4293
4294You can ignore errors in a specific Vim command by catching them locally: >
4295
4296 :try
4297 : write
4298 :catch
4299 :endtry
4300
4301But you are strongly recommended NOT to use this simple form, since it could
4302catch more than you want. With the ":write" command, some autocommands could
4303be executed and cause errors not related to writing, for instance: >
4304
4305 :au BufWritePre * unlet novar
4306
4307There could even be such errors you are not responsible for as a script
4308writer: a user of your script might have defined such autocommands. You would
4309then hide the error from the user.
4310 It is much better to use >
4311
4312 :try
4313 : write
4314 :catch /^Vim(write):/
4315 :endtry
4316
4317which only catches real write errors. So catch only what you'd like to ignore
4318intentionally.
4319
4320For a single command that does not cause execution of autocommands, you could
4321even suppress the conversion of errors to exceptions by the ":silent!"
4322command: >
4323 :silent! nunmap k
4324This works also when a try conditional is active.
4325
4326
4327CATCHING INTERRUPTS *catch-interrupt*
4328
4329When there are active try conditionals, an interrupt (CTRL-C) is converted to
Bram Moolenaar58b85342016-08-14 19:54:54 +02004330the exception "Vim:Interrupt". You can catch it like every exception. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331script is not terminated, then.
4332 Example: >
4333
4334 :function! TASK1()
4335 : sleep 10
4336 :endfunction
4337
4338 :function! TASK2()
4339 : sleep 20
4340 :endfunction
4341
4342 :while 1
4343 : let command = input("Type a command: ")
4344 : try
4345 : if command == ""
4346 : continue
4347 : elseif command == "END"
4348 : break
4349 : elseif command == "TASK1"
4350 : call TASK1()
4351 : elseif command == "TASK2"
4352 : call TASK2()
4353 : else
4354 : echo "\nIllegal command:" command
4355 : continue
4356 : endif
4357 : catch /^Vim:Interrupt$/
4358 : echo "\nCommand interrupted"
4359 : " Caught the interrupt. Continue with next prompt.
4360 : endtry
4361 :endwhile
4362
4363You can interrupt a task here by pressing CTRL-C; the script then asks for
Bram Moolenaar58b85342016-08-14 19:54:54 +02004364a new command. If you press CTRL-C at the prompt, the script is terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365
4366For testing what happens when CTRL-C would be pressed on a specific line in
4367your script, use the debug mode and execute the |>quit| or |>interrupt|
4368command on that line. See |debug-scripts|.
4369
4370
4371CATCHING ALL *catch-all*
4372
4373The commands >
4374
4375 :catch /.*/
4376 :catch //
4377 :catch
4378
4379catch everything, error exceptions, interrupt exceptions and exceptions
4380explicitly thrown by the |:throw| command. This is useful at the top level of
4381a script in order to catch unexpected things.
4382 Example: >
4383
4384 :try
4385 :
4386 : " do the hard work here
4387 :
4388 :catch /MyException/
4389 :
4390 : " handle known problem
4391 :
4392 :catch /^Vim:Interrupt$/
4393 : echo "Script interrupted"
4394 :catch /.*/
4395 : echo "Internal error (" . v:exception . ")"
4396 : echo " - occurred at " . v:throwpoint
4397 :endtry
4398 :" end of script
4399
4400Note: Catching all might catch more things than you want. Thus, you are
4401strongly encouraged to catch only for problems that you can really handle by
4402specifying a pattern argument to the ":catch".
4403 Example: Catching all could make it nearly impossible to interrupt a script
4404by pressing CTRL-C: >
4405
4406 :while 1
4407 : try
4408 : sleep 1
4409 : catch
4410 : endtry
4411 :endwhile
4412
4413
4414EXCEPTIONS AND AUTOCOMMANDS *except-autocmd*
4415
4416Exceptions may be used during execution of autocommands. Example: >
4417
4418 :autocmd User x try
4419 :autocmd User x throw "Oops!"
4420 :autocmd User x catch
4421 :autocmd User x echo v:exception
4422 :autocmd User x endtry
4423 :autocmd User x throw "Arrgh!"
4424 :autocmd User x echo "Should not be displayed"
4425 :
4426 :try
4427 : doautocmd User x
4428 :catch
4429 : echo v:exception
4430 :endtry
4431
4432This displays "Oops!" and "Arrgh!".
4433
4434 *except-autocmd-Pre*
4435For some commands, autocommands get executed before the main action of the
4436command takes place. If an exception is thrown and not caught in the sequence
4437of autocommands, the sequence and the command that caused its execution are
4438abandoned and the exception is propagated to the caller of the command.
4439 Example: >
4440
4441 :autocmd BufWritePre * throw "FAIL"
4442 :autocmd BufWritePre * echo "Should not be displayed"
4443 :
4444 :try
4445 : write
4446 :catch
4447 : echo "Caught:" v:exception "from" v:throwpoint
4448 :endtry
4449
4450Here, the ":write" command does not write the file currently being edited (as
4451you can see by checking 'modified'), since the exception from the BufWritePre
4452autocommand abandons the ":write". The exception is then caught and the
4453script displays: >
4454
4455 Caught: FAIL from BufWrite Auto commands for "*"
4456<
4457 *except-autocmd-Post*
4458For some commands, autocommands get executed after the main action of the
4459command has taken place. If this main action fails and the command is inside
4460an active try conditional, the autocommands are skipped and an error exception
4461is thrown that can be caught by the caller of the command.
4462 Example: >
4463
4464 :autocmd BufWritePost * echo "File successfully written!"
4465 :
4466 :try
4467 : write /i/m/p/o/s/s/i/b/l/e
4468 :catch
4469 : echo v:exception
4470 :endtry
4471
4472This just displays: >
4473
4474 Vim(write):E212: Can't open file for writing (/i/m/p/o/s/s/i/b/l/e)
4475
4476If you really need to execute the autocommands even when the main action
4477fails, trigger the event from the catch clause.
4478 Example: >
4479
4480 :autocmd BufWritePre * set noreadonly
4481 :autocmd BufWritePost * set readonly
4482 :
4483 :try
4484 : write /i/m/p/o/s/s/i/b/l/e
4485 :catch
4486 : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e
4487 :endtry
4488<
4489You can also use ":silent!": >
4490
4491 :let x = "ok"
4492 :let v:errmsg = ""
4493 :autocmd BufWritePost * if v:errmsg != ""
4494 :autocmd BufWritePost * let x = "after fail"
4495 :autocmd BufWritePost * endif
4496 :try
4497 : silent! write /i/m/p/o/s/s/i/b/l/e
4498 :catch
4499 :endtry
4500 :echo x
4501
4502This displays "after fail".
4503
4504If the main action of the command does not fail, exceptions from the
4505autocommands will be catchable by the caller of the command: >
4506
4507 :autocmd BufWritePost * throw ":-("
4508 :autocmd BufWritePost * echo "Should not be displayed"
4509 :
4510 :try
4511 : write
4512 :catch
4513 : echo v:exception
4514 :endtry
4515<
4516 *except-autocmd-Cmd*
4517For some commands, the normal action can be replaced by a sequence of
4518autocommands. Exceptions from that sequence will be catchable by the caller
4519of the command.
4520 Example: For the ":write" command, the caller cannot know whether the file
Bram Moolenaar58b85342016-08-14 19:54:54 +02004521had actually been written when the exception occurred. You need to tell it in
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522some way. >
4523
4524 :if !exists("cnt")
4525 : let cnt = 0
4526 :
4527 : autocmd BufWriteCmd * if &modified
4528 : autocmd BufWriteCmd * let cnt = cnt + 1
4529 : autocmd BufWriteCmd * if cnt % 3 == 2
4530 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4531 : autocmd BufWriteCmd * endif
4532 : autocmd BufWriteCmd * write | set nomodified
4533 : autocmd BufWriteCmd * if cnt % 3 == 0
4534 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4535 : autocmd BufWriteCmd * endif
4536 : autocmd BufWriteCmd * echo "File successfully written!"
4537 : autocmd BufWriteCmd * endif
4538 :endif
4539 :
4540 :try
4541 : write
4542 :catch /^BufWriteCmdError$/
4543 : if &modified
4544 : echo "Error on writing (file contents not changed)"
4545 : else
4546 : echo "Error after writing"
4547 : endif
4548 :catch /^Vim(write):/
4549 : echo "Error on writing"
4550 :endtry
4551
4552When this script is sourced several times after making changes, it displays
4553first >
4554 File successfully written!
4555then >
4556 Error on writing (file contents not changed)
4557then >
4558 Error after writing
4559etc.
4560
4561 *except-autocmd-ill*
4562You cannot spread a try conditional over autocommands for different events.
4563The following code is ill-formed: >
4564
4565 :autocmd BufWritePre * try
4566 :
4567 :autocmd BufWritePost * catch
4568 :autocmd BufWritePost * echo v:exception
4569 :autocmd BufWritePost * endtry
4570 :
4571 :write
4572
4573
4574EXCEPTION HIERARCHIES AND PARAMETERIZED EXCEPTIONS *except-hier-param*
4575
4576Some programming languages allow to use hierarchies of exception classes or to
4577pass additional information with the object of an exception class. You can do
4578similar things in Vim.
4579 In order to throw an exception from a hierarchy, just throw the complete
4580class name with the components separated by a colon, for instance throw the
4581string "EXCEPT:MATHERR:OVERFLOW" for an overflow in a mathematical library.
4582 When you want to pass additional information with your exception class, add
4583it in parentheses, for instance throw the string "EXCEPT:IO:WRITEERR(myfile)"
4584for an error when writing "myfile".
4585 With the appropriate patterns in the ":catch" command, you can catch for
4586base classes or derived classes of your hierarchy. Additional information in
4587parentheses can be cut out from |v:exception| with the ":substitute" command.
4588 Example: >
4589
4590 :function! CheckRange(a, func)
4591 : if a:a < 0
4592 : throw "EXCEPT:MATHERR:RANGE(" . a:func . ")"
4593 : endif
4594 :endfunction
4595 :
4596 :function! Add(a, b)
4597 : call CheckRange(a:a, "Add")
4598 : call CheckRange(a:b, "Add")
4599 : let c = a:a + a:b
4600 : if c < 0
4601 : throw "EXCEPT:MATHERR:OVERFLOW"
4602 : endif
4603 : return c
4604 :endfunction
4605 :
4606 :function! Div(a, b)
4607 : call CheckRange(a:a, "Div")
4608 : call CheckRange(a:b, "Div")
4609 : if (a:b == 0)
4610 : throw "EXCEPT:MATHERR:ZERODIV"
4611 : endif
4612 : return a:a / a:b
4613 :endfunction
4614 :
4615 :function! Write(file)
4616 : try
Bram Moolenaar446cb832008-06-24 21:56:24 +00004617 : execute "write" fnameescape(a:file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 : catch /^Vim(write):/
4619 : throw "EXCEPT:IO(" . getcwd() . ", " . a:file . "):WRITEERR"
4620 : endtry
4621 :endfunction
4622 :
4623 :try
4624 :
4625 : " something with arithmetics and I/O
4626 :
4627 :catch /^EXCEPT:MATHERR:RANGE/
4628 : let function = substitute(v:exception, '.*(\(\a\+\)).*', '\1', "")
4629 : echo "Range error in" function
4630 :
4631 :catch /^EXCEPT:MATHERR/ " catches OVERFLOW and ZERODIV
4632 : echo "Math error"
4633 :
4634 :catch /^EXCEPT:IO/
4635 : let dir = substitute(v:exception, '.*(\(.\+\),\s*.\+).*', '\1', "")
4636 : let file = substitute(v:exception, '.*(.\+,\s*\(.\+\)).*', '\1', "")
4637 : if file !~ '^/'
4638 : let file = dir . "/" . file
4639 : endif
4640 : echo 'I/O error for "' . file . '"'
4641 :
4642 :catch /^EXCEPT/
4643 : echo "Unspecified error"
4644 :
4645 :endtry
4646
4647The exceptions raised by Vim itself (on error or when pressing CTRL-C) use
4648a flat hierarchy: they are all in the "Vim" class. You cannot throw yourself
4649exceptions with the "Vim" prefix; they are reserved for Vim.
4650 Vim error exceptions are parameterized with the name of the command that
4651failed, if known. See |catch-errors|.
4652
4653
4654PECULIARITIES
4655 *except-compat*
4656The exception handling concept requires that the command sequence causing the
4657exception is aborted immediately and control is transferred to finally clauses
4658and/or a catch clause.
4659
4660In the Vim script language there are cases where scripts and functions
4661continue after an error: in functions without the "abort" flag or in a command
4662after ":silent!", control flow goes to the following line, and outside
4663functions, control flow goes to the line following the outermost ":endwhile"
4664or ":endif". On the other hand, errors should be catchable as exceptions
4665(thus, requiring the immediate abortion).
4666
4667This problem has been solved by converting errors to exceptions and using
4668immediate abortion (if not suppressed by ":silent!") only when a try
Bram Moolenaar58b85342016-08-14 19:54:54 +02004669conditional is active. This is no restriction since an (error) exception can
4670be caught only from an active try conditional. If you want an immediate
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671termination without catching the error, just use a try conditional without
4672catch clause. (You can cause cleanup code being executed before termination
4673by specifying a finally clause.)
4674
4675When no try conditional is active, the usual abortion and continuation
4676behavior is used instead of immediate abortion. This ensures compatibility of
4677scripts written for Vim 6.1 and earlier.
4678
4679However, when sourcing an existing script that does not use exception handling
4680commands (or when calling one of its functions) from inside an active try
4681conditional of a new script, you might change the control flow of the existing
4682script on error. You get the immediate abortion on error and can catch the
4683error in the new script. If however the sourced script suppresses error
4684messages by using the ":silent!" command (checking for errors by testing
Bram Moolenaar58b85342016-08-14 19:54:54 +02004685|v:errmsg| if appropriate), its execution path is not changed. The error is
4686not converted to an exception. (See |:silent|.) So the only remaining cause
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687where this happens is for scripts that don't care about errors and produce
4688error messages. You probably won't want to use such code from your new
4689scripts.
4690
4691 *except-syntax-err*
4692Syntax errors in the exception handling commands are never caught by any of
4693the ":catch" commands of the try conditional they belong to. Its finally
4694clauses, however, is executed.
4695 Example: >
4696
4697 :try
4698 : try
4699 : throw 4711
4700 : catch /\(/
4701 : echo "in catch with syntax error"
4702 : catch
4703 : echo "inner catch-all"
4704 : finally
4705 : echo "inner finally"
4706 : endtry
4707 :catch
4708 : echo 'outer catch-all caught "' . v:exception . '"'
4709 : finally
4710 : echo "outer finally"
4711 :endtry
4712
4713This displays: >
4714 inner finally
4715 outer catch-all caught "Vim(catch):E54: Unmatched \("
4716 outer finally
4717The original exception is discarded and an error exception is raised, instead.
4718
4719 *except-single-line*
4720The ":try", ":catch", ":finally", and ":endtry" commands can be put on
4721a single line, but then syntax errors may make it difficult to recognize the
4722"catch" line, thus you better avoid this.
4723 Example: >
4724 :try | unlet! foo # | catch | endtry
4725raises an error exception for the trailing characters after the ":unlet!"
4726argument, but does not see the ":catch" and ":endtry" commands, so that the
4727error exception is discarded and the "E488: Trailing characters" message gets
4728displayed.
4729
4730 *except-several-errors*
4731When several errors appear in a single command, the first error message is
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +02004732usually the most specific one and therefore converted to the error exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 Example: >
4734 echo novar
4735causes >
4736 E121: Undefined variable: novar
4737 E15: Invalid expression: novar
4738The value of the error exception inside try conditionals is: >
4739 Vim(echo):E121: Undefined variable: novar
4740< *except-syntax-error*
4741But when a syntax error is detected after a normal error in the same command,
4742the syntax error is used for the exception being thrown.
4743 Example: >
4744 unlet novar #
4745causes >
4746 E108: No such variable: "novar"
4747 E488: Trailing characters
4748The value of the error exception inside try conditionals is: >
4749 Vim(unlet):E488: Trailing characters
4750This is done because the syntax error might change the execution path in a way
4751not intended by the user. Example: >
4752 try
4753 try | unlet novar # | catch | echo v:exception | endtry
4754 catch /.*/
4755 echo "outer catch:" v:exception
4756 endtry
4757This displays "outer catch: Vim(unlet):E488: Trailing characters", and then
4758a "E600: Missing :endtry" error message is given, see |except-single-line|.
4759
4760==============================================================================
47619. Examples *eval-examples*
4762
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004763Printing in Binary ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764>
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01004765 :" The function Nr2Bin() returns the binary string representation of a number.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004766 :func Nr2Bin(nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 : let n = a:nr
4768 : let r = ""
4769 : while n
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004770 : let r = '01'[n % 2] . r
4771 : let n = n / 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 : endwhile
4773 : return r
4774 :endfunc
4775
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004776 :" The function String2Bin() converts each character in a string to a
4777 :" binary string, separated with dashes.
4778 :func String2Bin(str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 : let out = ''
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004780 : for ix in range(strlen(a:str))
4781 : let out = out . '-' . Nr2Bin(char2nr(a:str[ix]))
4782 : endfor
4783 : return out[1:]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 :endfunc
4785
4786Example of its use: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004787 :echo Nr2Bin(32)
4788result: "100000" >
4789 :echo String2Bin("32")
4790result: "110011-110010"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791
4792
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004793Sorting lines ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004795This example sorts lines with a specific compare function. >
4796
4797 :func SortBuffer()
4798 : let lines = getline(1, '$')
4799 : call sort(lines, function("Strcmp"))
4800 : call setline(1, lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 :endfunction
4802
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004803As a one-liner: >
4804 :call setline(1, sort(getline(1, '$'), function("Strcmp")))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004807scanf() replacement ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 *sscanf*
4809There is no sscanf() function in Vim. If you need to extract parts from a
4810line, you can use matchstr() and substitute() to do it. This example shows
4811how to get the file name, line number and column number out of a line like
4812"foobar.txt, 123, 45". >
4813 :" Set up the match bit
4814 :let mx='\(\f\+\),\s*\(\d\+\),\s*\(\d\+\)'
4815 :"get the part matching the whole expression
4816 :let l = matchstr(line, mx)
4817 :"get each item out of the match
4818 :let file = substitute(l, mx, '\1', '')
4819 :let lnum = substitute(l, mx, '\2', '')
4820 :let col = substitute(l, mx, '\3', '')
4821
4822The input is in the variable "line", the results in the variables "file",
4823"lnum" and "col". (idea from Michael Geddes)
4824
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004825
4826getting the scriptnames in a Dictionary ~
4827 *scriptnames-dictionary*
4828The |:scriptnames| command can be used to get a list of all script files that
4829have been sourced. There is no equivalent function or variable for this
4830(because it's rarely needed). In case you need to manipulate the list this
4831code can be used: >
4832 " Get the output of ":scriptnames" in the scriptnames_output variable.
4833 let scriptnames_output = ''
4834 redir => scriptnames_output
4835 silent scriptnames
4836 redir END
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01004837
Bram Moolenaar446cb832008-06-24 21:56:24 +00004838 " Split the output into lines and parse each line. Add an entry to the
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004839 " "scripts" dictionary.
4840 let scripts = {}
4841 for line in split(scriptnames_output, "\n")
4842 " Only do non-blank lines.
4843 if line =~ '\S'
4844 " Get the first number in the line.
Bram Moolenaar446cb832008-06-24 21:56:24 +00004845 let nr = matchstr(line, '\d\+')
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004846 " Get the file name, remove the script number " 123: ".
Bram Moolenaar446cb832008-06-24 21:56:24 +00004847 let name = substitute(line, '.\+:\s*', '', '')
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004848 " Add an item to the Dictionary
Bram Moolenaar446cb832008-06-24 21:56:24 +00004849 let scripts[nr] = name
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004850 endif
4851 endfor
4852 unlet scriptnames_output
4853
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200485510. Vim script versions *vimscript-version* *vimscript-versions*
Bram Moolenaar911ead12019-04-21 00:03:35 +02004856 *scriptversion*
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004857Over time many features have been added to Vim script. This includes Ex
4858commands, functions, variable types, etc. Each individual feature can be
4859checked with the |has()| and |exists()| functions.
4860
4861Sometimes old syntax of functionality gets in the way of making Vim better.
4862When support is taken away this will break older Vim scripts. To make this
4863explicit the |:scriptversion| command can be used. When a Vim script is not
4864compatible with older versions of Vim this will give an explicit error,
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004865instead of failing in mysterious ways.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004866
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004867 *scriptversion-1* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004868 :scriptversion 1
4869< This is the original Vim script, same as not using a |:scriptversion|
4870 command. Can be used to go back to old syntax for a range of lines.
4871 Test for support with: >
4872 has('vimscript-1')
4873
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004874< *scriptversion-2* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004875 :scriptversion 2
Bram Moolenaar68e65602019-05-26 21:33:31 +02004876< String concatenation with "." is not supported, use ".." instead.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004877 This avoids the ambiguity using "." for Dict member access and
4878 floating point numbers. Now ".5" means the number 0.5.
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004879
4880 *scriptversion-3* >
Bram Moolenaar911ead12019-04-21 00:03:35 +02004881 :scriptversion 3
4882< All |vim-variable|s must be prefixed by "v:". E.g. "version" doesn't
4883 work as |v:version| anymore, it can be used as a normal variable.
4884 Same for some obvious names as "count" and others.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004885
Bram Moolenaar911ead12019-04-21 00:03:35 +02004886 Test for support with: >
4887 has('vimscript-3')
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004888<
4889 *scriptversion-4* >
4890 :scriptversion 4
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004891< Numbers with a leading zero are not recognized as octal. "0o" or "0O"
4892 is still recognized as octal. With the
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004893 previous version you get: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004894 echo 017 " displays 15 (octal)
4895 echo 0o17 " displays 15 (octal)
4896 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004897< with script version 4: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004898 echo 017 " displays 17 (decimal)
4899 echo 0o17 " displays 15 (octal)
4900 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004901< Also, it is possible to use single quotes inside numbers to make them
4902 easier to read: >
4903 echo 1'000'000
4904< The quotes must be surrounded by digits.
4905
4906 Test for support with: >
4907 has('vimscript-4')
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004908
4909==============================================================================
491011. No +eval feature *no-eval-feature*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911
4912When the |+eval| feature was disabled at compile time, none of the expression
4913evaluation commands are available. To prevent this from causing Vim scripts
4914to generate all kinds of errors, the ":if" and ":endif" commands are still
4915recognized, though the argument of the ":if" and everything between the ":if"
4916and the matching ":endif" is ignored. Nesting of ":if" blocks is allowed, but
4917only if the commands are at the start of the line. The ":else" command is not
4918recognized.
4919
4920Example of how to avoid executing commands when the |+eval| feature is
4921missing: >
4922
4923 :if 1
4924 : echo "Expression evaluation is compiled in"
4925 :else
4926 : echo "You will _never_ see this message"
4927 :endif
4928
Bram Moolenaar773a97c2019-06-06 20:39:55 +02004929To execute a command only when the |+eval| feature is disabled can be done in
4930two ways. The simplest is to exit the script (or Vim) prematurely: >
4931 if 1
4932 echo "commands executed with +eval"
4933 finish
4934 endif
4935 args " command executed without +eval
4936
4937If you do not want to abort loading the script you can use a trick, as this
4938example shows: >
Bram Moolenaar45d2cca2017-04-30 16:36:05 +02004939
4940 silent! while 0
4941 set history=111
4942 silent! endwhile
4943
4944When the |+eval| feature is available the command is skipped because of the
4945"while 0". Without the |+eval| feature the "while 0" is an error, which is
4946silently ignored, and the command is executed.
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +02004947
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200494912. The sandbox *eval-sandbox* *sandbox* *E48*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950
Bram Moolenaar368373e2010-07-19 20:46:22 +02004951The 'foldexpr', 'formatexpr', 'includeexpr', 'indentexpr', 'statusline' and
4952'foldtext' options may be evaluated in a sandbox. This means that you are
4953protected from these expressions having nasty side effects. This gives some
4954safety for when these options are set from a modeline. It is also used when
4955the command from a tags file is executed and for CTRL-R = in the command line.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004956The sandbox is also used for the |:sandbox| command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957
4958These items are not allowed in the sandbox:
4959 - changing the buffer text
Bram Moolenaarb477af22018-07-15 20:20:18 +02004960 - defining or changing mapping, autocommands, user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 - setting certain options (see |option-summary|)
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004962 - setting certain v: variables (see |v:var|) *E794*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 - executing a shell command
4964 - reading or writing a file
4965 - jumping to another buffer or editing a file
Bram Moolenaar4770d092006-01-12 23:22:24 +00004966 - executing Python, Perl, etc. commands
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004967This is not guaranteed 100% secure, but it should block most attacks.
4968
4969 *:san* *:sandbox*
Bram Moolenaar045e82d2005-07-08 22:25:33 +00004970:san[dbox] {cmd} Execute {cmd} in the sandbox. Useful to evaluate an
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004971 option that may have been set from a modeline, e.g.
4972 'foldexpr'.
4973
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004974 *sandbox-option*
4975A few options contain an expression. When this expression is evaluated it may
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00004976have to be done in the sandbox to avoid a security risk. But the sandbox is
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004977restrictive, thus this only happens when the option was set from an insecure
4978location. Insecure in this context are:
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004979- sourcing a .vimrc or .exrc in the current directory
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004980- while executing in the sandbox
4981- value coming from a modeline
Bram Moolenaarb477af22018-07-15 20:20:18 +02004982- executing a function that was defined in the sandbox
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004983
4984Note that when in the sandbox and saving an option value and restoring it, the
4985option will still be marked as it was set in the sandbox.
4986
4987==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200498813. Textlock *textlock*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004989
4990In a few situations it is not allowed to change the text in the buffer, jump
4991to another window and some other things that might confuse or break what Vim
4992is currently doing. This mostly applies to things that happen when Vim is
Bram Moolenaar58b85342016-08-14 19:54:54 +02004993actually doing something else. For example, evaluating the 'balloonexpr' may
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004994happen any moment the mouse cursor is resting at some position.
4995
4996This is not allowed when the textlock is active:
4997 - changing the buffer text
4998 - jumping to another buffer or window
4999 - editing another file
5000 - closing a window or quitting Vim
5001 - etc.
5002
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003
Bram Moolenaar91f84f62018-07-29 15:07:52 +02005004 vim:tw=78:ts=8:noet:ft=help:norl: