blob: ba95f3291f40daa647936cee001965150c3a7cbb [file] [log] [blame]
Bram Moolenaar7c6cd442022-10-11 21:54:04 +01001*eval.txt* For Vim version 9.0. Last change: 2022 Oct 07
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
Bram Moolenaar446cb832008-06-24 21:56:24 +00004 VIM REFERENCE MANUAL by Bram Moolenaar
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6
7Expression evaluation *expression* *expr* *E15* *eval*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00008 *E1002*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009Using expressions is introduced in chapter 41 of the user manual |usr_41.txt|.
10
11Note: Expression evaluation can be disabled at compile time. If this has been
Bram Moolenaar58b85342016-08-14 19:54:54 +020012done, the features in this document are not available. See |+eval| and
Bram Moolenaard8b02732005-01-14 21:48:43 +000013|no-eval-feature|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000014
Bram Moolenaar1cae5a02021-12-27 21:28:34 +000015This file is mainly about the backwards compatible (legacy) Vim script. For
Bram Moolenaar2f0936c2022-01-08 21:51:59 +000016specifics of Vim9 script, which can execute much faster, supports type
17checking and much more, see |vim9.txt|. Where the syntax or semantics differ
18a remark is given.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010019
Bram Moolenaar13065c42005-01-08 16:08:21 +0000201. Variables |variables|
21 1.1 Variable types
Bram Moolenaar9588a0f2005-01-08 21:45:39 +000022 1.2 Function references |Funcref|
Bram Moolenaar7c626922005-02-07 22:01:03 +000023 1.3 Lists |Lists|
Bram Moolenaard8b02732005-01-14 21:48:43 +000024 1.4 Dictionaries |Dictionaries|
Bram Moolenaard8968242019-01-15 22:51:57 +010025 1.5 Blobs |Blobs|
26 1.6 More about variables |more-variables|
Bram Moolenaar13065c42005-01-08 16:08:21 +0000272. Expression syntax |expression-syntax|
283. Internal variable |internal-variables|
294. Builtin Functions |functions|
305. Defining functions |user-functions|
316. Curly braces names |curly-braces-names|
327. Commands |expression-commands|
338. Exception handling |exception-handling|
349. Examples |eval-examples|
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02003510. Vim script version |vimscript-version|
3611. No +eval feature |no-eval-feature|
3712. The sandbox |eval-sandbox|
3813. Textlock |textlock|
Bram Moolenaared997ad2019-07-21 16:42:00 +020039
40Testing support is documented in |testing.txt|.
41Profiling is documented at |profiling|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
Bram Moolenaar071d4272004-06-13 20:20:40 +000043==============================================================================
441. Variables *variables*
45
Bram Moolenaar13065c42005-01-08 16:08:21 +0000461.1 Variable types ~
Bram Moolenaarf10911e2022-01-29 22:20:48 +000047 *E712* *E896* *E897* *E899* *E1098*
48 *E1107* *E1135* *E1138*
Bram Moolenaar06fe74a2019-08-31 16:20:32 +020049There are ten types of variables:
Bram Moolenaar071d4272004-06-13 20:20:40 +000050
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010051 *Number* *Integer*
52Number A 32 or 64 bit signed number. |expr-number|
Bram Moolenaarf9706e92020-02-22 14:27:04 +010053 The number of bits is available in |v:numbersize|.
Bram Moolenaar6f02b002021-01-10 20:22:54 +010054 Examples: -123 0x10 0177 0o177 0b1011
Bram Moolenaard8b02732005-01-14 21:48:43 +000055
Bram Moolenaar446cb832008-06-24 21:56:24 +000056Float A floating point number. |floating-point-format| *Float*
Bram Moolenaar446cb832008-06-24 21:56:24 +000057 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 Moolenaar2f0936c2022-01-08 21:51:59 +0000165 *E611* *E745* *E728* *E703* *E729* *E730* *E731* *E908* *E910*
166 *E913* *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 Moolenaar2f0936c2022-01-08 21:51:59 +0000175 *E362* *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 Moolenaar8a3b8052022-06-26 12:21:15 +0100183 *Funcref* *E695* *E718* *E1192*
Bram Moolenaar58b85342016-08-14 19:54:54 +0200184A Funcref variable is obtained with the |function()| function, the |funcref()|
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100185function, (in |Vim9| script) the name of a function, or created with the
186lambda expression |expr-lambda|. It can be used in an expression in the place
187of a function name, before the parenthesis around the arguments, to invoke the
188function it refers to. Example in |Vim9| script: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000189
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100190 :var Fn = MyFunc
191 :echo Fn()
192
193Legacy script: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000194 :let Fn = function("MyFunc")
195 :echo Fn()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000196< *E704* *E705* *E707*
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000197A Funcref variable must start with a capital, "s:", "w:", "t:" or "b:". You
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200198can use "g:" but the following name must still start with a capital. You
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000199cannot have both a Funcref variable and a function with the same name.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000200
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000201A special case is defining a function and directly assigning its Funcref to a
202Dictionary entry. Example: >
203 :function dict.init() dict
204 : let self.val = 0
205 :endfunction
206
207The key of the Dictionary can start with a lower case letter. The actual
208function name is not used here. Also see |numbered-function|.
209
210A Funcref can also be used with the |:call| command: >
211 :call Fn()
212 :call dict.init()
Bram Moolenaar13065c42005-01-08 16:08:21 +0000213
214The name of the referenced function can be obtained with |string()|. >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000215 :let func = string(Fn)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000216
217You can use |call()| to invoke a Funcref and use a list variable for the
218arguments: >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000219 :let r = call(Fn, mylist)
Bram Moolenaar1d429612016-05-24 15:44:17 +0200220<
221 *Partial*
222A Funcref optionally binds a Dictionary and/or arguments. This is also called
223a Partial. This is created by passing the Dictionary and/or arguments to
Bram Moolenaar58b85342016-08-14 19:54:54 +0200224function() or funcref(). When calling the function the Dictionary and/or
225arguments will be passed to the function. Example: >
Bram Moolenaar1d429612016-05-24 15:44:17 +0200226
227 let Cb = function('Callback', ['foo'], myDict)
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100228 call Cb('bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200229
230This will invoke the function as if using: >
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100231 call myDict.Callback('foo', 'bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200232
233This is very useful when passing a function around, e.g. in the arguments of
234|ch_open()|.
235
236Note that binding a function to a Dictionary also happens when the function is
237a member of the Dictionary: >
238
239 let myDict.myFunction = MyFunction
240 call myDict.myFunction()
241
242Here MyFunction() will get myDict passed as "self". This happens when the
243"myFunction" member is accessed. When making assigning "myFunction" to
244otherDict and calling it, it will be bound to otherDict: >
245
246 let otherDict.myFunction = myDict.myFunction
247 call otherDict.myFunction()
248
249Now "self" will be "otherDict". But when the dictionary was bound explicitly
250this won't happen: >
251
252 let myDict.myFunction = function(MyFunction, myDict)
253 let otherDict.myFunction = myDict.myFunction
254 call otherDict.myFunction()
255
Bram Moolenaard823fa92016-08-12 16:29:27 +0200256Here "self" will be "myDict", because it was bound explicitly.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000257
258
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002591.3 Lists ~
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200260 *list* *List* *Lists* *E686*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000261A List is an ordered sequence of items. An item can be of any type. Items
Bram Moolenaar58b85342016-08-14 19:54:54 +0200262can be accessed by their index number. Items can be added and removed at any
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000263position in the sequence.
264
Bram Moolenaar13065c42005-01-08 16:08:21 +0000265
266List creation ~
267 *E696* *E697*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100268A List is created with a comma-separated list of items in square brackets.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000269Examples: >
270 :let mylist = [1, two, 3, "four"]
271 :let emptylist = []
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000272
Bram Moolenaar58b85342016-08-14 19:54:54 +0200273An item can be any expression. Using a List for an item creates a
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000274List of Lists: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000275 :let nestlist = [[11, 12], [21, 22], [31, 32]]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000276
277An extra comma after the last item is ignored.
278
Bram Moolenaar13065c42005-01-08 16:08:21 +0000279
280List index ~
281 *list-index* *E684*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000282An item in the List can be accessed by putting the index in square brackets
Bram Moolenaar13065c42005-01-08 16:08:21 +0000283after the List. Indexes are zero-based, thus the first item has index zero. >
284 :let item = mylist[0] " get the first item: 1
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000285 :let item = mylist[2] " get the third item: 3
Bram Moolenaar13065c42005-01-08 16:08:21 +0000286
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000287When the resulting item is a list this can be repeated: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000288 :let item = nestlist[0][1] " get the first list, second item: 12
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000289<
Bram Moolenaar13065c42005-01-08 16:08:21 +0000290A negative index is counted from the end. Index -1 refers to the last item in
291the List, -2 to the last but one item, etc. >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000292 :let last = mylist[-1] " get the last item: "four"
293
Bram Moolenaar13065c42005-01-08 16:08:21 +0000294To avoid an error for an invalid index use the |get()| function. When an item
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000295is not available it returns zero or the default value you specify: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000296 :echo get(mylist, idx)
297 :echo get(mylist, idx, "NONE")
298
299
300List concatenation ~
Bram Moolenaar34453202021-01-31 13:08:38 +0100301 *list-concatenation*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000302Two lists can be concatenated with the "+" operator: >
303 :let longlist = mylist + [5, 6]
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000304 :let mylist += [7, 8]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000305
Bram Moolenaar34453202021-01-31 13:08:38 +0100306To prepend or append an item, turn the item into a list by putting [] around
307it. To change a list in-place, refer to |list-modification| below.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000308
309
310Sublist ~
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200311 *sublist*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000312A part of the List can be obtained by specifying the first and last index,
313separated by a colon in square brackets: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000314 :let shortlist = mylist[2:-1] " get List [3, "four"]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000315
316Omitting the first index is similar to zero. Omitting the last index is
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000317similar to -1. >
Bram Moolenaar540d6e32005-01-09 21:20:18 +0000318 :let endlist = mylist[2:] " from item 2 to the end: [3, "four"]
319 :let shortlist = mylist[2:2] " List with one item: [3]
320 :let otherlist = mylist[:] " make a copy of the List
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000321
Bram Moolenaar6601b622021-01-13 21:47:15 +0100322Notice that the last index is inclusive. If you prefer using an exclusive
323index use the |slice()| method.
324
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000325If the first index is beyond the last item of the List or the second item is
326before the first item, the result is an empty list. There is no error
327message.
328
329If the second index is equal to or greater than the length of the list the
330length minus one is used: >
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000331 :let mylist = [0, 1, 2, 3]
332 :echo mylist[2:8] " result: [2, 3]
333
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000334NOTE: mylist[s:e] means using the variable "s:e" as index. Watch out for
Bram Moolenaar58b85342016-08-14 19:54:54 +0200335using a single letter variable before the ":". Insert a space when needed:
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000336mylist[s : e].
337
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000338
Bram Moolenaar13065c42005-01-08 16:08:21 +0000339List identity ~
Bram Moolenaard8b02732005-01-14 21:48:43 +0000340 *list-identity*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000341When variable "aa" is a list and you assign it to another variable "bb", both
342variables refer to the same list. Thus changing the list "aa" will also
343change "bb": >
344 :let aa = [1, 2, 3]
345 :let bb = aa
346 :call add(aa, 4)
347 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000348< [1, 2, 3, 4]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000349
350Making a copy of a list is done with the |copy()| function. Using [:] also
351works, as explained above. This creates a shallow copy of the list: Changing
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000352a list item in the list will also change the item in the copied list: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000353 :let aa = [[1, 'a'], 2, 3]
354 :let bb = copy(aa)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000355 :call add(aa, 4)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000356 :let aa[0][1] = 'aaa'
357 :echo aa
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000358< [[1, aaa], 2, 3, 4] >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000359 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000360< [[1, aaa], 2, 3]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000361
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000362To make a completely independent list use |deepcopy()|. This also makes a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000363copy of the values in the list, recursively. Up to a hundred levels deep.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000364
365The operator "is" can be used to check if two variables refer to the same
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000366List. "isnot" does the opposite. In contrast "==" compares if two lists have
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000367the same value. >
368 :let alist = [1, 2, 3]
369 :let blist = [1, 2, 3]
370 :echo alist is blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000371< 0 >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000372 :echo alist == blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000373< 1
Bram Moolenaar13065c42005-01-08 16:08:21 +0000374
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000375Note about comparing lists: Two lists are considered equal if they have the
376same length and all items compare equal, as with using "==". There is one
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000377exception: When comparing a number with a string they are considered
378different. There is no automatic type conversion, as with using "==" on
379variables. Example: >
380 echo 4 == "4"
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000381< 1 >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000382 echo [4] == ["4"]
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000383< 0
384
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000385Thus comparing Lists is more strict than comparing numbers and strings. You
Bram Moolenaar446cb832008-06-24 21:56:24 +0000386can compare simple values this way too by putting them in a list: >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000387
388 :let a = 5
389 :let b = "5"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000390 :echo a == b
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000391< 1 >
Bram Moolenaar446cb832008-06-24 21:56:24 +0000392 :echo [a] == [b]
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000393< 0
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000394
Bram Moolenaar13065c42005-01-08 16:08:21 +0000395
396List unpack ~
397
398To unpack the items in a list to individual variables, put the variables in
399square brackets, like list items: >
400 :let [var1, var2] = mylist
401
402When the number of variables does not match the number of items in the list
403this produces an error. To handle any extra items from the list append ";"
404and a variable name: >
405 :let [var1, var2; rest] = mylist
406
407This works like: >
408 :let var1 = mylist[0]
409 :let var2 = mylist[1]
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000410 :let rest = mylist[2:]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000411
412Except that there is no error if there are only two items. "rest" will be an
413empty list then.
414
415
416List modification ~
417 *list-modification*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000418To change a specific item of a list use |:let| this way: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000419 :let list[4] = "four"
420 :let listlist[0][3] = item
421
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000422To change part of a list you can specify the first and last item to be
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000423modified. The value must at least have the number of items in the range: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000424 :let list[3:5] = [3, 4, 5]
425
Bram Moolenaar13065c42005-01-08 16:08:21 +0000426Adding and removing items from a list is done with functions. Here are a few
427examples: >
428 :call insert(list, 'a') " prepend item 'a'
429 :call insert(list, 'a', 3) " insert item 'a' before list[3]
430 :call add(list, "new") " append String item
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000431 :call add(list, [1, 2]) " append a List as one new item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000432 :call extend(list, [1, 2]) " extend the list with two more items
433 :let i = remove(list, 3) " remove item 3
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000434 :unlet list[3] " idem
Bram Moolenaar13065c42005-01-08 16:08:21 +0000435 :let l = remove(list, 3, -1) " remove items 3 to last item
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000436 :unlet list[3 : ] " idem
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000437 :call filter(list, 'v:val !~ "x"') " remove items with an 'x'
Bram Moolenaar13065c42005-01-08 16:08:21 +0000438
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000439Changing the order of items in a list: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000440 :call sort(list) " sort a list alphabetically
441 :call reverse(list) " reverse the order of items
Bram Moolenaar327aa022014-03-25 18:24:23 +0100442 :call uniq(sort(list)) " sort and remove duplicates
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000443
Bram Moolenaar13065c42005-01-08 16:08:21 +0000444
445For loop ~
446
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100447The |:for| loop executes commands for each item in a List, String or Blob.
448A variable is set to each item in sequence. Example with a List: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000449 :for item in mylist
450 : call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000451 :endfor
452
453This works like: >
454 :let index = 0
455 :while index < len(mylist)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000456 : let item = mylist[index]
457 : :call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000458 : let index = index + 1
459 :endwhile
460
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000461If all you want to do is modify each item in the list then the |map()|
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000462function will be a simpler method than a for loop.
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000463
Bram Moolenaar58b85342016-08-14 19:54:54 +0200464Just like the |:let| command, |:for| also accepts a list of variables. This
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100465requires the argument to be a List of Lists. >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000466 :for [lnum, col] in [[1, 3], [2, 8], [3, 0]]
467 : call Doit(lnum, col)
468 :endfor
469
470This works like a |:let| command is done for each list item. Again, the types
471must remain the same to avoid an error.
472
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000473It is also possible to put remaining items in a List variable: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000474 :for [i, j; rest] in listlist
475 : call Doit(i, j)
476 : if !empty(rest)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000477 : echo "remainder: " .. string(rest)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000478 : endif
479 :endfor
480
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100481For a Blob one byte at a time is used.
482
483For a String one character, including any composing characters, is used as a
484String. Example: >
485 for c in text
486 echo 'This character is ' .. c
487 endfor
488
Bram Moolenaar13065c42005-01-08 16:08:21 +0000489
490List functions ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000491 *E714*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000492Functions that are useful with a List: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000493 :let r = call(funcname, list) " call a function with an argument list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000494 :if empty(list) " check if list is empty
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000495 :let l = len(list) " number of items in list
496 :let big = max(list) " maximum value in list
497 :let small = min(list) " minimum value in list
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000498 :let xs = count(list, 'x') " count nr of times 'x' appears in list
499 :let i = index(list, 'x') " index of first 'x' in list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000500 :let lines = getline(1, 10) " get ten text lines from buffer
501 :call append('$', lines) " append text lines in buffer
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000502 :let list = split("a b c") " create list from items in a string
503 :let string = join(list, ', ') " create string from list items
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000504 :let s = string(list) " String representation of list
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000505 :call map(list, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000506
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000507Don't forget that a combination of features can make things simple. For
508example, to add up all the numbers in a list: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000509 :exe 'let sum = ' .. join(nrlist, '+')
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000510
Bram Moolenaar13065c42005-01-08 16:08:21 +0000511
Bram Moolenaard8b02732005-01-14 21:48:43 +00005121.4 Dictionaries ~
Bram Moolenaard8968242019-01-15 22:51:57 +0100513 *dict* *Dict* *Dictionaries* *Dictionary*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000514A Dictionary is an associative array: Each entry has a key and a value. The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000515entry can be located with the key. The entries are stored without a specific
516ordering.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000517
518
519Dictionary creation ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000520 *E720* *E721* *E722* *E723*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100521A Dictionary is created with a comma-separated list of entries in curly
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000522braces. Each entry has a key and a value, separated by a colon. Each key can
523only appear once. Examples: >
Bram Moolenaard8b02732005-01-14 21:48:43 +0000524 :let mydict = {1: 'one', 2: 'two', 3: 'three'}
525 :let emptydict = {}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000526< *E713* *E716* *E717*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000527A key is always a String. You can use a Number, it will be converted to a
528String automatically. Thus the String '4' and the number 4 will find the same
Bram Moolenaar58b85342016-08-14 19:54:54 +0200529entry. Note that the String '04' and the Number 04 are different, since the
Bram Moolenaard899e512022-05-07 21:54:03 +0100530Number will be converted to the String '4', leading zeros are dropped. The
531empty string can also be used as a key.
Bram Moolenaar5da36052021-12-27 15:39:57 +0000532
Bram Moolenaard799daa2022-06-20 11:17:32 +0100533In |Vim9| script a literal key can be used if it consists only of alphanumeric
Bram Moolenaar5da36052021-12-27 15:39:57 +0000534characters, underscore and dash, see |vim9-literal-dict|.
Bram Moolenaar56c860c2019-08-17 20:09:31 +0200535 *literal-Dict* *#{}*
Bram Moolenaar5da36052021-12-27 15:39:57 +0000536To avoid having to put quotes around every key the #{} form can be used in
537legacy script. This does require the key to consist only of ASCII letters,
538digits, '-' and '_'. Example: >
Bram Moolenaar10455d42019-11-21 15:36:18 +0100539 :let mydict = #{zero: 0, one_key: 1, two-key: 2, 333: 3}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +0200540Note that 333 here is the string "333". Empty keys are not possible with #{}.
Bram Moolenaard899e512022-05-07 21:54:03 +0100541In |Vim9| script the #{} form cannot be used because it can be confused with
542the start of a comment.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000543
Bram Moolenaar58b85342016-08-14 19:54:54 +0200544A value can be any expression. Using a Dictionary for a value creates a
Bram Moolenaard8b02732005-01-14 21:48:43 +0000545nested Dictionary: >
546 :let nestdict = {1: {11: 'a', 12: 'b'}, 2: {21: 'c'}}
547
548An extra comma after the last entry is ignored.
549
550
551Accessing entries ~
552
553The normal way to access an entry is by putting the key in square brackets: >
554 :let val = mydict["one"]
555 :let mydict["four"] = 4
556
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000557You can add new entries to an existing Dictionary this way, unlike Lists.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000558
559For keys that consist entirely of letters, digits and underscore the following
560form can be used |expr-entry|: >
561 :let val = mydict.one
562 :let mydict.four = 4
563
564Since an entry can be any type, also a List and a Dictionary, the indexing and
565key lookup can be repeated: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000566 :echo dict.key[idx].key
Bram Moolenaard8b02732005-01-14 21:48:43 +0000567
568
569Dictionary to List conversion ~
570
Bram Moolenaar58b85342016-08-14 19:54:54 +0200571You may want to loop over the entries in a dictionary. For this you need to
Bram Moolenaard8b02732005-01-14 21:48:43 +0000572turn the Dictionary into a List and pass it to |:for|.
573
574Most often you want to loop over the keys, using the |keys()| function: >
575 :for key in keys(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000576 : echo key .. ': ' .. mydict[key]
Bram Moolenaard8b02732005-01-14 21:48:43 +0000577 :endfor
578
579The List of keys is unsorted. You may want to sort them first: >
580 :for key in sort(keys(mydict))
581
582To loop over the values use the |values()| function: >
583 :for v in values(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000584 : echo "value: " .. v
Bram Moolenaard8b02732005-01-14 21:48:43 +0000585 :endfor
586
587If you want both the key and the value use the |items()| function. It returns
Bram Moolenaard47d5222018-12-09 20:43:55 +0100588a List in which each item is a List with two items, the key and the value: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000589 :for [key, value] in items(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000590 : echo key .. ': ' .. value
Bram Moolenaard8b02732005-01-14 21:48:43 +0000591 :endfor
592
593
594Dictionary identity ~
Bram Moolenaar7c626922005-02-07 22:01:03 +0000595 *dict-identity*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000596Just like Lists you need to use |copy()| and |deepcopy()| to make a copy of a
597Dictionary. Otherwise, assignment results in referring to the same
598Dictionary: >
599 :let onedict = {'a': 1, 'b': 2}
600 :let adict = onedict
601 :let adict['a'] = 11
602 :echo onedict['a']
603 11
604
Bram Moolenaarf3bd51a2005-06-14 22:11:18 +0000605Two Dictionaries compare equal if all the key-value pairs compare equal. For
606more info see |list-identity|.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000607
608
609Dictionary modification ~
610 *dict-modification*
611To change an already existing entry of a Dictionary, or to add a new entry,
612use |:let| this way: >
613 :let dict[4] = "four"
614 :let dict['one'] = item
615
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000616Removing an entry from a Dictionary is done with |remove()| or |:unlet|.
617Three ways to remove the entry with key "aaa" from dict: >
618 :let i = remove(dict, 'aaa')
619 :unlet dict.aaa
620 :unlet dict['aaa']
Bram Moolenaard8b02732005-01-14 21:48:43 +0000621
622Merging a Dictionary with another is done with |extend()|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000623 :call extend(adict, bdict)
624This extends adict with all entries from bdict. Duplicate keys cause entries
625in adict to be overwritten. An optional third argument can change this.
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000626Note that the order of entries in a Dictionary is irrelevant, thus don't
627expect ":echo adict" to show the items from bdict after the older entries in
628adict.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000629
630Weeding out entries from a Dictionary can be done with |filter()|: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000631 :call filter(dict, 'v:val =~ "x"')
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000632This removes all entries from "dict" with a value not matching 'x'.
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200633This can also be used to remove all entries: >
634 call filter(dict, 0)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000635
636
637Dictionary function ~
Bram Moolenaar26402cb2013-02-20 21:26:00 +0100638 *Dictionary-function* *self* *E725* *E862*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000639When a function is defined with the "dict" attribute it can be used in a
Bram Moolenaar58b85342016-08-14 19:54:54 +0200640special way with a dictionary. Example: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000641 :function Mylen() dict
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000642 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000643 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000644 :let mydict = {'data': [0, 1, 2, 3], 'len': function("Mylen")}
645 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000646
647This is like a method in object oriented programming. The entry in the
648Dictionary is a |Funcref|. The local variable "self" refers to the dictionary
649the function was invoked from.
650
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000651It is also possible to add a function without the "dict" attribute as a
652Funcref to a Dictionary, but the "self" variable is not available then.
653
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000654 *numbered-function* *anonymous-function*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000655To avoid the extra name for the function it can be defined and directly
656assigned to a Dictionary in this way: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000657 :let mydict = {'data': [0, 1, 2, 3]}
Bram Moolenaar5a5f4592015-04-13 12:43:06 +0200658 :function mydict.len()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000659 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000660 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000661 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000662
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000663The function will then get a number and the value of dict.len is a |Funcref|
Bram Moolenaar58b85342016-08-14 19:54:54 +0200664that references this function. The function can only be used through a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000665|Funcref|. It will automatically be deleted when there is no |Funcref|
666remaining that refers to it.
667
668It is not necessary to use the "dict" attribute for a numbered function.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000669
Bram Moolenaar1affd722010-08-04 17:49:30 +0200670If you get an error for a numbered function, you can find out what it is with
671a trick. Assuming the function is 42, the command is: >
Bram Moolenaar34cc7d82021-09-21 20:09:51 +0200672 :function g:42
Bram Moolenaar1affd722010-08-04 17:49:30 +0200673
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000674
675Functions for Dictionaries ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000676 *E715*
677Functions that can be used with a Dictionary: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000678 :if has_key(dict, 'foo') " TRUE if dict has entry with key "foo"
679 :if empty(dict) " TRUE if dict is empty
680 :let l = len(dict) " number of items in dict
681 :let big = max(dict) " maximum value in dict
682 :let small = min(dict) " minimum value in dict
683 :let xs = count(dict, 'x') " count nr of times 'x' appears in dict
684 :let s = string(dict) " String representation of dict
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000685 :call map(dict, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaard8b02732005-01-14 21:48:43 +0000686
687
Bram Moolenaard8968242019-01-15 22:51:57 +01006881.5 Blobs ~
689 *blob* *Blob* *Blobs* *E978*
Bram Moolenaaraff74912019-03-30 18:11:49 +0100690A Blob is a binary object. It can be used to read an image from a file and
691send it over a channel, for example.
692
693A Blob mostly behaves like a |List| of numbers, where each number has the
694value of an 8-bit byte, from 0 to 255.
Bram Moolenaard8968242019-01-15 22:51:57 +0100695
696
697Blob creation ~
698
699A Blob can be created with a |blob-literal|: >
700 :let b = 0zFF00ED015DAF
Bram Moolenaar0d17f0d2019-01-22 22:20:38 +0100701Dots can be inserted between bytes (pair of hex characters) for readability,
702they don't change the value: >
703 :let b = 0zFF00.ED01.5DAF
Bram Moolenaard8968242019-01-15 22:51:57 +0100704
705A blob can be read from a file with |readfile()| passing the {type} argument
706set to "B", for example: >
707 :let b = readfile('image.png', 'B')
708
709A blob can be read from a channel with the |ch_readblob()| function.
710
711
712Blob index ~
713 *blob-index* *E979*
714A byte in the Blob can be accessed by putting the index in square brackets
715after the Blob. Indexes are zero-based, thus the first byte has index zero. >
716 :let myblob = 0z00112233
717 :let byte = myblob[0] " get the first byte: 0x00
718 :let byte = myblob[2] " get the third byte: 0x22
719
720A negative index is counted from the end. Index -1 refers to the last byte in
721the Blob, -2 to the last but one byte, etc. >
722 :let last = myblob[-1] " get the last byte: 0x33
723
724To avoid an error for an invalid index use the |get()| function. When an item
725is not available it returns -1 or the default value you specify: >
726 :echo get(myblob, idx)
727 :echo get(myblob, idx, 999)
728
729
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100730Blob iteration ~
731
732The |:for| loop executes commands for each byte of a Blob. The loop variable is
733set to each byte in the Blob. Example: >
734 :for byte in 0z112233
735 : call Doit(byte)
736 :endfor
737This calls Doit() with 0x11, 0x22 and 0x33.
738
739
Bram Moolenaard8968242019-01-15 22:51:57 +0100740Blob concatenation ~
741
742Two blobs can be concatenated with the "+" operator: >
743 :let longblob = myblob + 0z4455
744 :let myblob += 0z6677
745
746To change a blob in-place see |blob-modification| below.
747
748
749Part of a blob ~
750
751A part of the Blob can be obtained by specifying the first and last index,
752separated by a colon in square brackets: >
753 :let myblob = 0z00112233
Bram Moolenaard09091d2019-01-17 16:07:22 +0100754 :let shortblob = myblob[1:2] " get 0z1122
Bram Moolenaard8968242019-01-15 22:51:57 +0100755 :let shortblob = myblob[2:-1] " get 0z2233
756
757Omitting the first index is similar to zero. Omitting the last index is
758similar to -1. >
759 :let endblob = myblob[2:] " from item 2 to the end: 0z2233
760 :let shortblob = myblob[2:2] " Blob with one byte: 0z22
761 :let otherblob = myblob[:] " make a copy of the Blob
762
Bram Moolenaard09091d2019-01-17 16:07:22 +0100763If the first index is beyond the last byte of the Blob or the second index is
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100764before the first index, the result is an empty Blob. There is no error
Bram Moolenaard8968242019-01-15 22:51:57 +0100765message.
766
767If the second index is equal to or greater than the length of the list the
768length minus one is used: >
769 :echo myblob[2:8] " result: 0z2233
770
771
772Blob modification ~
Bram Moolenaara2baa732022-02-04 16:09:54 +0000773 *blob-modification* *E1182* *E1184*
Bram Moolenaard8968242019-01-15 22:51:57 +0100774To change a specific byte of a blob use |:let| this way: >
775 :let blob[4] = 0x44
776
777When the index is just one beyond the end of the Blob, it is appended. Any
778higher index is an error.
779
780To change a sequence of bytes the [:] notation can be used: >
781 let blob[1:3] = 0z445566
Bram Moolenaard09091d2019-01-17 16:07:22 +0100782The length of the replaced bytes must be exactly the same as the value
Bram Moolenaard8968242019-01-15 22:51:57 +0100783provided. *E972*
784
785To change part of a blob you can specify the first and last byte to be
Bram Moolenaard09091d2019-01-17 16:07:22 +0100786modified. The value must have the same number of bytes in the range: >
787 :let blob[3:5] = 0z334455
Bram Moolenaard8968242019-01-15 22:51:57 +0100788
789You can also use the functions |add()|, |remove()| and |insert()|.
790
791
792Blob identity ~
793
794Blobs can be compared for equality: >
795 if blob == 0z001122
796And for equal identity: >
797 if blob is otherblob
798< *blob-identity* *E977*
799When variable "aa" is a Blob and you assign it to another variable "bb", both
800variables refer to the same Blob. Then the "is" operator returns true.
801
802When making a copy using [:] or |copy()| the values are the same, but the
803identity is different: >
804 :let blob = 0z112233
805 :let blob2 = blob
806 :echo blob == blob2
807< 1 >
808 :echo blob is blob2
809< 1 >
810 :let blob3 = blob[:]
811 :echo blob == blob3
812< 1 >
813 :echo blob is blob3
814< 0
815
Bram Moolenaard09091d2019-01-17 16:07:22 +0100816Making a copy of a Blob is done with the |copy()| function. Using [:] also
Bram Moolenaard8968242019-01-15 22:51:57 +0100817works, as explained above.
818
819
8201.6 More about variables ~
Bram Moolenaar13065c42005-01-08 16:08:21 +0000821 *more-variables*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822If you need to know the type of a variable or expression, use the |type()|
823function.
824
825When the '!' flag is included in the 'viminfo' option, global variables that
826start with an uppercase letter, and don't contain a lowercase letter, are
827stored in the viminfo file |viminfo-file|.
828
829When the 'sessionoptions' option contains "global", global variables that
830start with an uppercase letter and contain at least one lowercase letter are
831stored in the session file |session-file|.
832
833variable name can be stored where ~
834my_var_6 not
835My_Var_6 session file
836MY_VAR_6 viminfo file
837
838
Bram Moolenaar5da36052021-12-27 15:39:57 +0000839In legacy script it is possible to form a variable name with curly braces, see
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840|curly-braces-names|.
841
842==============================================================================
8432. Expression syntax *expression-syntax*
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000844 *E1143*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845Expression syntax summary, from least to most significant:
846
Bram Moolenaar50ba5262016-09-22 22:33:02 +0200847|expr1| expr2
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200848 expr2 ? expr1 : expr1 if-then-else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200850|expr2| expr3
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200851 expr3 || expr3 ... logical OR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200853|expr3| expr4
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200854 expr4 && expr4 ... logical AND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200856|expr4| expr5
857 expr5 == expr5 equal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 expr5 != expr5 not equal
859 expr5 > expr5 greater than
860 expr5 >= expr5 greater than or equal
861 expr5 < expr5 smaller than
862 expr5 <= expr5 smaller than or equal
863 expr5 =~ expr5 regexp matches
864 expr5 !~ expr5 regexp doesn't match
865
866 expr5 ==? expr5 equal, ignoring case
867 expr5 ==# expr5 equal, match case
868 etc. As above, append ? for ignoring case, # for
869 matching case
870
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100871 expr5 is expr5 same |List|, |Dictionary| or |Blob| instance
872 expr5 isnot expr5 different |List|, |Dictionary| or |Blob|
873 instance
Bram Moolenaarde8866b2005-01-06 23:24:37 +0000874
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100875|expr5| expr6 << expr6 bitwise left shift
876 expr6 >> expr6 bitwise right shift
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200878|expr6| expr7
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100879 expr7 + expr7 ... number addition, list or blob concatenation
880 expr7 - expr7 ... number subtraction
881 expr7 . expr7 ... string concatenation
882 expr7 .. expr7 ... string concatenation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200884|expr7| expr8
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100885 expr8 * expr8 ... number multiplication
886 expr8 / expr8 ... number division
887 expr8 % expr8 ... number modulo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200889|expr8| expr9
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100890 <type>expr9 type check and conversion (|Vim9| only)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000891
Bram Moolenaar5da36052021-12-27 15:39:57 +0000892|expr9| expr10
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100893 ! expr9 logical NOT
894 - expr9 unary minus
895 + expr9 unary plus
Bram Moolenaar5da36052021-12-27 15:39:57 +0000896
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100897|expr10| expr11
898 expr10[expr1] byte of a String or item of a |List|
899 expr10[expr1 : expr1] substring of a String or sublist of a |List|
900 expr10.name entry in a |Dictionary|
901 expr10(expr1, ...) function call with |Funcref| variable
902 expr10->name(expr1, ...) |method| call
903
904|expr11| number number constant
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000905 "string" string constant, backslash is special
Bram Moolenaard8b02732005-01-14 21:48:43 +0000906 'string' string constant, ' is doubled
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000907 [expr1, ...] |List|
908 {expr1: expr1, ...} |Dictionary|
Bram Moolenaar5da36052021-12-27 15:39:57 +0000909 #{key: expr1, ...} legacy |Dictionary|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 &option option value
911 (expr1) nested expression
912 variable internal variable
913 va{ria}ble internal variable with curly braces
914 $VAR environment variable
915 @r contents of register 'r'
916 function(expr1, ...) function call
917 func{ti}on(expr1, ...) function call with curly braces
Bram Moolenaar5da36052021-12-27 15:39:57 +0000918 {args -> expr1} legacy lambda expression
919 (args) => expr1 Vim9 lambda expression
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920
921
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200922"..." indicates that the operations in this level can be concatenated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923Example: >
924 &nu || &list && &shell == "csh"
925
926All expressions within one level are parsed from left to right.
927
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000928Expression nesting is limited to 1000 levels deep (300 when build with MSVC)
929to avoid running out of stack and crashing. *E1169*
930
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000932expr1 *expr1* *ternary* *falsy-operator* *??* *E109*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933-----
934
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000935The ternary operator: expr2 ? expr1 : expr1
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200936The falsy operator: expr2 ?? expr1
937
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000938Ternary operator ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939
Bram Moolenaar5da36052021-12-27 15:39:57 +0000940In legacy script the expression before the '?' is evaluated to a number. If
941it evaluates to |TRUE|, the result is the value of the expression between the
942'?' and ':', otherwise the result is the value of the expression after the
943':'.
944
945In |Vim9| script the first expression must evaluate to a boolean, see
946|vim9-boolean|.
947
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948Example: >
949 :echo lnum == 1 ? "top" : lnum
950
951Since the first expression is an "expr2", it cannot contain another ?:. The
952other two expressions can, thus allow for recursive use of ?:.
953Example: >
954 :echo lnum == 1 ? "top" : lnum == 1000 ? "last" : lnum
955
956To keep this readable, using |line-continuation| is suggested: >
957 :echo lnum == 1
958 :\ ? "top"
959 :\ : lnum == 1000
960 :\ ? "last"
961 :\ : lnum
962
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000963You should always put a space before the ':', otherwise it can be mistaken for
964use in a variable such as "a:1".
965
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200966Falsy operator ~
967
968This is also known as the "null coalescing operator", but that's too
969complicated, thus we just call it the falsy operator.
970
971The expression before the '??' is evaluated. If it evaluates to
972|truthy|, this is used as the result. Otherwise the expression after the '??'
973is evaluated and used as the result. This is most useful to have a default
974value for an expression that may result in zero or empty: >
975 echo theList ?? 'list is empty'
976 echo GetName() ?? 'unknown'
977
978These are similar, but not equal: >
979 expr2 ?? expr1
980 expr2 ? expr2 : expr1
Bram Moolenaar5da36052021-12-27 15:39:57 +0000981In the second line "expr2" is evaluated twice. And in |Vim9| script the type
982of expr2 before "?" must be a boolean.
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200983
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984
985expr2 and expr3 *expr2* *expr3*
986---------------
987
Bram Moolenaar04186092016-08-29 21:55:35 +0200988expr3 || expr3 .. logical OR *expr-barbar*
989expr4 && expr4 .. logical AND *expr-&&*
990
Bram Moolenaar5da36052021-12-27 15:39:57 +0000991The "||" and "&&" operators take one argument on each side.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992
Bram Moolenaar5da36052021-12-27 15:39:57 +0000993In legacy script the arguments are (converted to) Numbers.
994
995In |Vim9| script the values must be boolean, see |vim9-boolean|. Use "!!" to
996convert any type to a boolean.
997
998The result is:
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200999 input output ~
1000n1 n2 n1 || n2 n1 && n2 ~
1001|FALSE| |FALSE| |FALSE| |FALSE|
1002|FALSE| |TRUE| |TRUE| |FALSE|
1003|TRUE| |FALSE| |TRUE| |FALSE|
1004|TRUE| |TRUE| |TRUE| |TRUE|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
1006The operators can be concatenated, for example: >
1007
1008 &nu || &list && &shell == "csh"
1009
1010Note that "&&" takes precedence over "||", so this has the meaning of: >
1011
1012 &nu || (&list && &shell == "csh")
1013
1014Once the result is known, the expression "short-circuits", that is, further
1015arguments are not evaluated. This is like what happens in C. For example: >
1016
1017 let a = 1
1018 echo a || b
1019
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001020This is valid even if there is no variable called "b" because "a" is |TRUE|,
1021so the result must be |TRUE|. Similarly below: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022
1023 echo exists("b") && b == "yes"
1024
1025This is valid whether "b" has been defined or not. The second clause will
1026only be evaluated if "b" has been defined.
1027
1028
Bram Moolenaara2baa732022-02-04 16:09:54 +00001029expr4 *expr4* *E1153*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030-----
1031
1032expr5 {cmp} expr5
1033
Bram Moolenaar5da36052021-12-27 15:39:57 +00001034Compare two expr5 expressions. In legacy script the result is a 0 if it
1035evaluates to false, or 1 if it evaluates to true. In |Vim9| script the result
1036is |true| or |false|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037
Bram Moolenaar446cb832008-06-24 21:56:24 +00001038 *expr-==* *expr-!=* *expr->* *expr->=*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 *expr-<* *expr-<=* *expr-=~* *expr-!~*
1040 *expr-==#* *expr-!=#* *expr->#* *expr->=#*
1041 *expr-<#* *expr-<=#* *expr-=~#* *expr-!~#*
1042 *expr-==?* *expr-!=?* *expr->?* *expr->=?*
1043 *expr-<?* *expr-<=?* *expr-=~?* *expr-!~?*
Bram Moolenaar251e1912011-06-19 05:09:16 +02001044 *expr-is* *expr-isnot* *expr-is#* *expr-isnot#*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001045 *expr-is?* *expr-isnot?* *E1072*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 use 'ignorecase' match case ignore case ~
1047equal == ==# ==?
1048not equal != !=# !=?
1049greater than > ># >?
1050greater than or equal >= >=# >=?
1051smaller than < <# <?
1052smaller than or equal <= <=# <=?
1053regexp matches =~ =~# =~?
1054regexp doesn't match !~ !~# !~?
Bram Moolenaar251e1912011-06-19 05:09:16 +02001055same instance is is# is?
1056different instance isnot isnot# isnot?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057
1058Examples:
1059"abc" ==# "Abc" evaluates to 0
1060"abc" ==? "Abc" evaluates to 1
1061"abc" == "Abc" evaluates to 1 if 'ignorecase' is set, 0 otherwise
Bram Moolenaar5da36052021-12-27 15:39:57 +00001062NOTE: In |Vim9| script 'ignorecase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063
Bram Moolenaar13065c42005-01-08 16:08:21 +00001064 *E691* *E692*
Bram Moolenaar01164a62017-11-02 22:58:42 +01001065A |List| can only be compared with a |List| and only "equal", "not equal",
1066"is" and "isnot" can be used. This compares the values of the list,
1067recursively. Ignoring case means case is ignored when comparing item values.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001068
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001069 *E735* *E736*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001070A |Dictionary| can only be compared with a |Dictionary| and only "equal", "not
Bram Moolenaar01164a62017-11-02 22:58:42 +01001071equal", "is" and "isnot" can be used. This compares the key/values of the
1072|Dictionary| recursively. Ignoring case means case is ignored when comparing
1073item values.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001074
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +02001075 *E694*
Bram Moolenaare18dbe82016-07-02 21:42:23 +02001076A |Funcref| can only be compared with a |Funcref| and only "equal", "not
1077equal", "is" and "isnot" can be used. Case is never ignored. Whether
1078arguments or a Dictionary are bound (with a partial) matters. The
1079Dictionaries must also be equal (or the same, in case of "is") and the
1080arguments must be equal (or the same).
1081
1082To compare Funcrefs to see if they refer to the same function, ignoring bound
1083Dictionary and arguments, use |get()| to get the function name: >
1084 if get(Part1, 'name') == get(Part2, 'name')
1085 " Part1 and Part2 refer to the same function
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001086< *E1037*
Bram Moolenaar5e66b422019-01-24 21:58:10 +01001087Using "is" or "isnot" with a |List|, |Dictionary| or |Blob| checks whether
1088the expressions are referring to the same |List|, |Dictionary| or |Blob|
1089instance. A copy of a |List| is different from the original |List|. When
1090using "is" without a |List|, |Dictionary| or |Blob|, it is equivalent to
1091using "equal", using "isnot" equivalent to using "not equal". Except that
1092a different type means the values are different: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001093 echo 4 == '4'
1094 1
1095 echo 4 is '4'
1096 0
1097 echo 0 is []
1098 0
1099"is#"/"isnot#" and "is?"/"isnot?" can be used to match and ignore case.
Bram Moolenaare1f3fd12022-08-15 18:51:32 +01001100In |Vim9| script this doesn't work, two strings are never identical.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001101
Bram Moolenaar5da36052021-12-27 15:39:57 +00001102In legacy script, when comparing a String with a Number, the String is
1103converted to a Number, and the comparison is done on Numbers. This means
1104that: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001105 echo 0 == 'x'
1106 1
1107because 'x' converted to a Number is zero. However: >
1108 echo [0] == ['x']
1109 0
1110Inside a List or Dictionary this conversion is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111
Bram Moolenaar5da36052021-12-27 15:39:57 +00001112In |Vim9| script the types must match.
1113
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114When comparing two Strings, this is done with strcmp() or stricmp(). This
1115results in the mathematical difference (comparing byte values), not
1116necessarily the alphabetical difference in the local language.
1117
Bram Moolenaar446cb832008-06-24 21:56:24 +00001118When using the operators with a trailing '#', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001119'ignorecase' is off, the comparing is done with strcmp(): case matters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120
1121When using the operators with a trailing '?', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001122'ignorecase' is set, the comparing is done with stricmp(): case is ignored.
1123
1124'smartcase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125
1126The "=~" and "!~" operators match the lefthand argument with the righthand
1127argument, which is used as a pattern. See |pattern| for what a pattern is.
1128This matching is always done like 'magic' was set and 'cpoptions' is empty, no
1129matter what the actual value of 'magic' or 'cpoptions' is. This makes scripts
1130portable. To avoid backslashes in the regexp pattern to be doubled, use a
1131single-quote string, see |literal-string|.
1132Since a string is considered to be a single line, a multi-line pattern
1133(containing \n, backslash-n) will not match. However, a literal NL character
1134can be matched like an ordinary character. Examples:
1135 "foo\nbar" =~ "\n" evaluates to 1
1136 "foo\nbar" =~ "\\n" evaluates to 0
1137
1138
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001139expr5 *expr5* *bitwise-shift*
1140-----
1141expr6 << expr6 bitwise left shift *expr-<<*
1142expr6 >> expr6 bitwise right shift *expr->>*
1143 *E1282* *E1283*
1144The "<<" and ">>" operators can be used to perform bitwise left or right shift
1145of the left operand by the number of bits specified by the right operand. The
Bram Moolenaar338bf582022-05-22 20:16:32 +01001146operands are used as positive numbers. When shifting right with ">>" the
Bram Moolenaard592deb2022-06-17 15:42:40 +01001147topmost bit (sometimes called the sign bit) is cleared. If the right operand
Bram Moolenaar338bf582022-05-22 20:16:32 +01001148(shift amount) is more than the maximum number of bits in a number
1149(|v:numbersize|) the result is zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001151
1152expr6 and expr7 *expr6* *expr7* *E1036* *E1051*
1153---------------
1154expr7 + expr7 Number addition, |List| or |Blob| concatenation *expr-+*
1155expr7 - expr7 Number subtraction *expr--*
1156expr7 . expr7 String concatenation *expr-.*
1157expr7 .. expr7 String concatenation *expr-..*
1158
1159For |Lists| only "+" is possible and then both expr7 must be a list. The
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001160result is a new list with the two lists Concatenated.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001161
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001162For String concatenation ".." is preferred, since "." is ambiguous, it is also
1163used for |Dict| member access and floating point numbers.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001164In |Vim9| script and when |vimscript-version| is 2 or higher, using "." is not
1165allowed.
1166
1167In |Vim9| script the arguments of ".." are converted to String for simple
1168types: Number, Float, Special and Bool. For other types |string()| should be
1169used.
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001170
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001171expr8 * expr8 Number multiplication *expr-star*
1172expr8 / expr8 Number division *expr-/*
1173expr8 % expr8 Number modulo *expr-%*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
Bram Moolenaar5da36052021-12-27 15:39:57 +00001175In legacy script, for all operators except "." and "..", Strings are converted
1176to Numbers.
1177
Bram Moolenaard6e256c2011-12-14 15:32:50 +01001178For bitwise operators see |and()|, |or()| and |xor()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179
Bram Moolenaar5da36052021-12-27 15:39:57 +00001180Note the difference between "+" and ".." in legacy script:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 "123" + "456" = 579
Bram Moolenaar5da36052021-12-27 15:39:57 +00001182 "123" .. "456" = "123456"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183
Bram Moolenaar5da36052021-12-27 15:39:57 +00001184Since '..' has the same precedence as '+' and '-', you need to read: >
1185 1 .. 90 + 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001186As: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001187 (1 .. 90) + 90.0
1188That works in legacy script, since the String "190" is automatically converted
1189to the Number 190, which can be added to the Float 90.0. However: >
1190 1 .. 90 * 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001191Should be read as: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001192 1 .. (90 * 90.0)
1193Since '..' has lower precedence than '*'. This does NOT work, since this
Bram Moolenaar446cb832008-06-24 21:56:24 +00001194attempts to concatenate a Float and a String.
1195
1196When dividing a Number by zero the result depends on the value:
1197 0 / 0 = -0x80000000 (like NaN for Float)
1198 >0 / 0 = 0x7fffffff (like positive infinity)
1199 <0 / 0 = -0x7fffffff (like negative infinity)
1200 (before Vim 7.2 it was always 0x7fffffff)
Bram Moolenaara2baa732022-02-04 16:09:54 +00001201In |Vim9| script dividing a number by zero is an error. *E1154*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001202
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001203When 64-bit Number support is enabled:
1204 0 / 0 = -0x8000000000000000 (like NaN for Float)
1205 >0 / 0 = 0x7fffffffffffffff (like positive infinity)
1206 <0 / 0 = -0x7fffffffffffffff (like negative infinity)
1207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208When the righthand side of '%' is zero, the result is 0.
1209
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001210None of these work for |Funcref|s.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001211
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001212".", ".." and "%" do not work for Float. *E804* *E1035*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001213
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001215expr8 *expr8*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216-----
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001217<type>expr9
Bram Moolenaar5da36052021-12-27 15:39:57 +00001218
1219This is only available in |Vim9| script, see |type-casting|.
1220
1221
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001222expr9 *expr9*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001223-----
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001224! expr9 logical NOT *expr-!*
1225- expr9 unary minus *expr-unary--*
1226+ expr9 unary plus *expr-unary-+*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001228For '!' |TRUE| becomes |FALSE|, |FALSE| becomes |TRUE| (one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229For '-' the sign of the number is changed.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001230For '+' the number is unchanged. Note: "++" has no effect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231
Bram Moolenaar5da36052021-12-27 15:39:57 +00001232In legacy script a String will be converted to a Number first. Note that if
1233the string does not start with a digit you likely don't get what you expect.
1234
1235In |Vim9| script an error is given when "-" or "+" is used and the type is not
1236a number.
1237
1238In |Vim9| script "!" can be used for any type and the result is always a
1239boolean. Use "!!" to convert any type to a boolean, according to whether the
1240value is |falsy|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
Bram Moolenaar58b85342016-08-14 19:54:54 +02001242These three can be repeated and mixed. Examples:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 !-1 == 0
1244 !!8 == 1
1245 --9 == 9
1246
1247
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001248expr10 *expr10*
1249------
1250This expression is either |expr11| or a sequence of the alternatives below,
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001251in any order. E.g., these are all possible:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001252 expr10[expr1].name
1253 expr10.name[expr1]
1254 expr10(expr1, ...)[expr1].name
1255 expr10->(expr1, ...)[expr1]
Bram Moolenaarac92e252019-08-03 21:58:38 +02001256Evaluation is always from left to right.
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001257
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001258expr10[expr1] item of String or |List| *expr-[]* *E111*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001259 *E909* *subscript* *E1062*
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001260In legacy Vim script:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001261If expr10 is a Number or String this results in a String that contains the
1262expr1'th single byte from expr10. expr10 is used as a String (a number is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001263automatically converted to a String), expr1 as a Number. This doesn't
Bram Moolenaar207f0092020-08-30 17:20:20 +02001264recognize multibyte encodings, see `byteidx()` for an alternative, or use
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001265`split()` to turn the string into a list of characters. Example, to get the
1266byte under the cursor: >
Bram Moolenaar61660ea2006-04-07 21:40:07 +00001267 :let c = getline(".")[col(".") - 1]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
Bram Moolenaara2baa732022-02-04 16:09:54 +00001269In |Vim9| script: *E1147* *E1148*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001270If expr10 is a String this results in a String that contains the expr1'th
1271single character (including any composing characters) from expr10. To use byte
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001272indexes use |strpart()|.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001273
1274Index zero gives the first byte or character. Careful: text column numbers
1275start with one!
1276
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277If the length of the String is less than the index, the result is an empty
Bram Moolenaar85084ef2016-01-17 22:26:33 +01001278String. A negative index always results in an empty string (reason: backward
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001279compatibility). Use [-1:] to get the last byte or character.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001280In Vim9 script a negative index is used like with a list: count from the end.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001281
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001282If expr10 is a |List| then it results the item at index expr1. See |list-index|
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001283for possible index values. If the index is out of range this results in an
Bram Moolenaar58b85342016-08-14 19:54:54 +02001284error. Example: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001285 :let item = mylist[-1] " get last item
1286
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001287Generally, if a |List| index is equal to or higher than the length of the
1288|List|, or more negative than the length of the |List|, this results in an
1289error.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001290
Bram Moolenaard8b02732005-01-14 21:48:43 +00001291
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01001292expr10[expr1a : expr1b] substring or |sublist| *expr-[:]* *substring*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001293
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001294If expr10 is a String this results in the substring with the bytes or
1295characters from expr1a to and including expr1b. expr10 is used as a String,
Bram Moolenaar207f0092020-08-30 17:20:20 +02001296expr1a and expr1b are used as a Number.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001297
1298In legacy Vim script the indexes are byte indexes. This doesn't recognize
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001299multibyte encodings, see |byteidx()| for computing the indexes. If expr10 is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001300a Number it is first converted to a String.
1301
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001302In Vim9 script the indexes are character indexes and include composing
1303characters. To use byte indexes use |strpart()|. To use character indexes
1304without including composing characters use |strcharpart()|.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001305
Bram Moolenaar6601b622021-01-13 21:47:15 +01001306The item at index expr1b is included, it is inclusive. For an exclusive index
1307use the |slice()| function.
1308
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001309If expr1a is omitted zero is used. If expr1b is omitted the length of the
1310string minus one is used.
1311
1312A negative number can be used to measure from the end of the string. -1 is
1313the last character, -2 the last but one, etc.
1314
1315If an index goes out of range for the string characters are omitted. If
1316expr1b is smaller than expr1a the result is an empty string.
1317
1318Examples: >
1319 :let c = name[-1:] " last byte of a string
Bram Moolenaar207f0092020-08-30 17:20:20 +02001320 :let c = name[0:-1] " the whole string
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001321 :let c = name[-2:-2] " last but one byte of a string
1322 :let s = line(".")[4:] " from the fifth byte to the end
1323 :let s = s[:-3] " remove last two bytes
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001324<
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001325 *slice*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001326If expr10 is a |List| this results in a new |List| with the items indicated by
Bram Moolenaar58b85342016-08-14 19:54:54 +02001327the indexes expr1a and expr1b. This works like with a String, as explained
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001328just above. Also see |sublist| below. Examples: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001329 :let l = mylist[:3] " first four items
1330 :let l = mylist[4:4] " List with one item
1331 :let l = mylist[:] " shallow copy of a List
1332
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001333If expr10 is a |Blob| this results in a new |Blob| with the bytes in the
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001334indexes expr1a and expr1b, inclusive. Examples: >
1335 :let b = 0zDEADBEEF
1336 :let bs = b[1:2] " 0zADBE
Bram Moolenaard09091d2019-01-17 16:07:22 +01001337 :let bs = b[:] " copy of 0zDEADBEEF
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001338
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001339Using expr10[expr1] or expr10[expr1a : expr1b] on a |Funcref| results in an
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001340error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341
Bram Moolenaarda440d22016-01-16 21:27:23 +01001342Watch out for confusion between a namespace and a variable followed by a colon
1343for a sublist: >
1344 mylist[n:] " uses variable n
1345 mylist[s:] " uses namespace s:, error!
1346
Bram Moolenaard8b02732005-01-14 21:48:43 +00001347
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001348expr10.name entry in a |Dictionary| *expr-entry*
Bram Moolenaara2baa732022-02-04 16:09:54 +00001349 *E1203* *E1229*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001350If expr10 is a |Dictionary| and it is followed by a dot, then the following
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001351name will be used as a key in the |Dictionary|. This is just like:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001352expr10[name].
Bram Moolenaard8b02732005-01-14 21:48:43 +00001353
1354The name must consist of alphanumeric characters, just like a variable name,
1355but it may start with a number. Curly braces cannot be used.
1356
1357There must not be white space before or after the dot.
1358
1359Examples: >
1360 :let dict = {"one": 1, 2: "two"}
Bram Moolenaar68e65602019-05-26 21:33:31 +02001361 :echo dict.one " shows "1"
1362 :echo dict.2 " shows "two"
1363 :echo dict .2 " error because of space before the dot
Bram Moolenaard8b02732005-01-14 21:48:43 +00001364
1365Note that the dot is also used for String concatenation. To avoid confusion
1366always put spaces around the dot for String concatenation.
1367
1368
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001369expr10(expr1, ...) |Funcref| function call *E1085*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001370
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001371When expr10 is a |Funcref| type variable, invoke the function it refers to.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001372
1373
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001374expr10->name([args]) method call *method* *->*
1375expr10->{lambda}([args])
Bram Moolenaara2baa732022-02-04 16:09:54 +00001376 *E260* *E276* *E1265*
Bram Moolenaar25e42232019-08-04 15:04:10 +02001377For methods that are also available as global functions this is the same as: >
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001378 name(expr10 [, args])
1379There can also be methods specifically for the type of "expr10".
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001380
Bram Moolenaar51841322019-08-08 21:10:01 +02001381This allows for chaining, passing the value that one method returns to the
1382next method: >
Bram Moolenaar25e42232019-08-04 15:04:10 +02001383 mylist->filter(filterexpr)->map(mapexpr)->sort()->join()
1384<
Bram Moolenaar22a0c0c2019-08-09 23:25:08 +02001385Example of using a lambda: >
Bram Moolenaar02b31112019-08-31 22:16:38 +02001386 GetPercentage()->{x -> x * 100}()->printf('%d%%')
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001387<
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001388When using -> the |expr9| operators will be applied first, thus: >
Bram Moolenaar93cf85f2019-08-17 21:36:28 +02001389 -1.234->string()
1390Is equivalent to: >
1391 (-1.234)->string()
1392And NOT: >
1393 -(1.234->string())
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001394
1395What comes after "->" can be a name, a simple expression (not containing any
Bram Moolenaar944697a2022-02-20 19:48:20 +00001396parenthesis), or any expression in parentheses: >
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001397 base->name(args)
1398 base->some.name(args)
1399 base->alist[idx](args)
1400 base->(getFuncRef())(args)
1401Note that in the last call the base is passed to the function resulting from
Bram Moolenaar2ecbe532022-07-29 21:36:21 +01001402"(getFuncRef())", inserted before "args". *E1275*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001403
Bram Moolenaar51841322019-08-08 21:10:01 +02001404 *E274*
1405"->name(" must not contain white space. There can be white space before the
1406"->" and after the "(", thus you can split the lines like this: >
1407 mylist
1408 \ ->filter(filterexpr)
1409 \ ->map(mapexpr)
1410 \ ->sort()
1411 \ ->join()
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001412
1413When using the lambda form there must be no white space between the } and the
1414(.
1415
Bram Moolenaar25e42232019-08-04 15:04:10 +02001416
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001417 *expr11*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418number
1419------
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01001420number number constant *expr-number*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001422 *0x* *hex-number* *0o* *octal-number* *binary-number*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001423Decimal, Hexadecimal (starting with 0x or 0X), Binary (starting with 0b or 0B)
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02001424and Octal (starting with 0, 0o or 0O).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425
Bram Moolenaar338bf582022-05-22 20:16:32 +01001426Assuming 64 bit numbers are used (see |v:numbersize|) an unsigned number is
1427truncated to 0x7fffffffffffffff or 9223372036854775807. You can use -1 to get
14280xffffffffffffffff.
1429
Bram Moolenaar446cb832008-06-24 21:56:24 +00001430 *floating-point-format*
1431Floating point numbers can be written in two forms:
1432
1433 [-+]{N}.{M}
Bram Moolenaar8a94d872015-01-25 13:02:57 +01001434 [-+]{N}.{M}[eE][-+]{exp}
Bram Moolenaar446cb832008-06-24 21:56:24 +00001435
1436{N} and {M} are numbers. Both {N} and {M} must be present and can only
Bram Moolenaar6aa57292021-08-14 21:25:52 +02001437contain digits, except that in |Vim9| script in {N} single quotes between
1438digits are ignored.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001439[-+] means there is an optional plus or minus sign.
1440{exp} is the exponent, power of 10.
Bram Moolenaar58b85342016-08-14 19:54:54 +02001441Only a decimal point is accepted, not a comma. No matter what the current
Bram Moolenaar446cb832008-06-24 21:56:24 +00001442locale is.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001443
1444Examples:
1445 123.456
1446 +0.0001
1447 55.0
1448 -0.123
1449 1.234e03
1450 1.0E-6
1451 -3.1416e+88
1452
1453These are INVALID:
1454 3. empty {M}
1455 1e40 missing .{M}
1456
1457Rationale:
1458Before floating point was introduced, the text "123.456" was interpreted as
1459the two numbers "123" and "456", both converted to a string and concatenated,
1460resulting in the string "123456". Since this was considered pointless, and we
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001461could not find it intentionally being used in Vim scripts, this backwards
Bram Moolenaar446cb832008-06-24 21:56:24 +00001462incompatibility was accepted in favor of being able to use the normal notation
1463for floating point numbers.
1464
Bram Moolenaard47d5222018-12-09 20:43:55 +01001465 *float-pi* *float-e*
1466A few useful values to copy&paste: >
1467 :let pi = 3.14159265359
1468 :let e = 2.71828182846
1469Or, if you don't want to write them in as floating-point literals, you can
1470also use functions, like the following: >
1471 :let pi = acos(-1.0)
1472 :let e = exp(1.0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001473<
Bram Moolenaar446cb832008-06-24 21:56:24 +00001474 *floating-point-precision*
1475The precision and range of floating points numbers depends on what "double"
1476means in the library Vim was compiled with. There is no way to change this at
1477runtime.
1478
1479The default for displaying a |Float| is to use 6 decimal places, like using
1480printf("%g", f). You can select something else when using the |printf()|
1481function. Example: >
1482 :echo printf('%.15e', atan(1))
1483< 7.853981633974483e-01
1484
1485
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486
Bram Moolenaar979243b2015-06-26 19:35:49 +02001487string *string* *String* *expr-string* *E114*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488------
1489"string" string constant *expr-quote*
1490
1491Note that double quotes are used.
1492
1493A string constant accepts these special characters:
1494\... three-digit octal number (e.g., "\316")
1495\.. two-digit octal number (must be followed by non-digit)
1496\. one-digit octal number (must be followed by non-digit)
1497\x.. byte specified with two hex numbers (e.g., "\x1f")
1498\x. byte specified with one hex number (must be followed by non-hex char)
1499\X.. same as \x..
1500\X. same as \x.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001501\u.... character specified with up to 4 hex numbers, stored according to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 current value of 'encoding' (e.g., "\u02a4")
Bram Moolenaar541f92d2015-06-19 13:27:23 +02001503\U.... same as \u but allows up to 8 hex numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504\b backspace <BS>
1505\e escape <Esc>
Bram Moolenaar6e649222021-10-04 21:32:54 +01001506\f formfeed 0x0C
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507\n newline <NL>
1508\r return <CR>
1509\t tab <Tab>
1510\\ backslash
1511\" double quote
Bram Moolenaar00a927d2010-05-14 23:24:24 +02001512\<xxx> Special key named "xxx". e.g. "\<C-W>" for CTRL-W. This is for use
Bram Moolenaar58b85342016-08-14 19:54:54 +02001513 in mappings, the 0x80 byte is escaped.
1514 To use the double quote character it must be escaped: "<M-\">".
Bram Moolenaar6e649222021-10-04 21:32:54 +01001515 Don't use <Char-xxxx> to get a UTF-8 character, use \uxxxx as
Bram Moolenaar58b85342016-08-14 19:54:54 +02001516 mentioned above.
Bram Moolenaarfccd93f2020-05-31 22:06:51 +02001517\<*xxx> Like \<xxx> but prepends a modifier instead of including it in the
1518 character. E.g. "\<C-w>" is one character 0x17 while "\<*C-w>" is four
Bram Moolenaarebe9d342020-05-30 21:52:54 +02001519 bytes: 3 for the CTRL modifier and then character "W".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001521Note that "\xff" is stored as the byte 255, which may be invalid in some
1522encodings. Use "\u00ff" to store character 255 according to the current value
1523of 'encoding'.
1524
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525Note that "\000" and "\x00" force the end of the string.
1526
1527
Bram Moolenaard8968242019-01-15 22:51:57 +01001528blob-literal *blob-literal* *E973*
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001529------------
1530
1531Hexadecimal starting with 0z or 0Z, with an arbitrary number of bytes.
1532The sequence must be an even number of hex characters. Example: >
1533 :let b = 0zFF00ED015DAF
1534
1535
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536literal-string *literal-string* *E115*
1537---------------
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001538'string' string constant *expr-'*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539
1540Note that single quotes are used.
1541
Bram Moolenaar58b85342016-08-14 19:54:54 +02001542This string is taken as it is. No backslashes are removed or have a special
Bram Moolenaard8b02732005-01-14 21:48:43 +00001543meaning. The only exception is that two quotes stand for one quote.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001544
1545Single quoted strings are useful for patterns, so that backslashes do not need
Bram Moolenaar58b85342016-08-14 19:54:54 +02001546to be doubled. These two commands are equivalent: >
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001547 if a =~ "\\s*"
1548 if a =~ '\s*'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549
1550
Bram Moolenaar05a80612022-08-01 15:09:53 +01001551interpolated-string *$quote* *interp-string*
LemonBoy2eaef102022-05-06 13:14:50 +01001552--------------------
1553$"string" interpolated string constant *expr-$quote*
1554$'string' interpolated literal string constant *expr-$'*
1555
1556Interpolated strings are an extension of the |string| and |literal-string|,
1557allowing the inclusion of Vim script expressions (see |expr1|). Any
1558expression returning a value can be enclosed between curly braces. The value
1559is converted to a string. All the text and results of the expressions
1560are concatenated to make a new string.
Bram Moolenaar2ecbe532022-07-29 21:36:21 +01001561 *E1278* *E1279*
LemonBoy2eaef102022-05-06 13:14:50 +01001562To include an opening brace '{' or closing brace '}' in the string content
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001563double it. For double quoted strings using a backslash also works. A single
1564closing brace '}' will result in an error.
LemonBoy2eaef102022-05-06 13:14:50 +01001565
1566Examples: >
1567 let your_name = input("What's your name? ")
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001568< What's your name? Peter ~
1569>
1570 echo
LemonBoy2eaef102022-05-06 13:14:50 +01001571 echo $"Hello, {your_name}!"
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001572< Hello, Peter! ~
1573>
1574 echo $"The square root of {{9}} is {sqrt(9)}"
1575< The square root of {9} is 3.0 ~
1576
LemonBoy2eaef102022-05-06 13:14:50 +01001577
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578option *expr-option* *E112* *E113*
1579------
1580&option option value, local value if possible
1581&g:option global option value
1582&l:option local option value
1583
1584Examples: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001585 echo "tabstop is " .. &tabstop
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 if &insertmode
1587
1588Any option name can be used here. See |options|. When using the local value
1589and there is no buffer-local or window-local value, the global value is used
1590anyway.
1591
1592
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001593register *expr-register* *@r*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594--------
1595@r contents of register 'r'
1596
1597The result is the contents of the named register, as a single string.
1598Newlines are inserted where required. To get the contents of the unnamed
Bram Moolenaar58b85342016-08-14 19:54:54 +02001599register use @" or @@. See |registers| for an explanation of the available
Bram Moolenaare7566042005-06-17 22:00:15 +00001600registers.
1601
1602When using the '=' register you get the expression itself, not what it
1603evaluates to. Use |eval()| to evaluate it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604
1605
Bram Moolenaara2baa732022-02-04 16:09:54 +00001606nesting *expr-nesting* *E110*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607-------
1608(expr1) nested expression
1609
1610
1611environment variable *expr-env*
1612--------------------
1613$VAR environment variable
1614
1615The String value of any environment variable. When it is not defined, the
1616result is an empty string.
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001617
1618The functions `getenv()` and `setenv()` can also be used and work for
1619environment variables with non-alphanumeric names.
1620The function `environ()` can be used to get a Dict with all environment
1621variables.
1622
1623
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 *expr-env-expand*
1625Note that there is a difference between using $VAR directly and using
1626expand("$VAR"). Using it directly will only expand environment variables that
1627are known inside the current Vim session. Using expand() will first try using
1628the environment variables known inside the current Vim session. If that
1629fails, a shell will be used to expand the variable. This can be slow, but it
1630does expand all variables that the shell knows about. Example: >
Bram Moolenaar34401cc2014-08-29 15:12:19 +02001631 :echo $shell
1632 :echo expand("$shell")
1633The first one probably doesn't echo anything, the second echoes the $shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634variable (if your shell supports it).
1635
1636
Bram Moolenaarf10911e2022-01-29 22:20:48 +00001637internal variable *expr-variable* *E1015* *E1089*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638-----------------
1639variable internal variable
1640See below |internal-variables|.
1641
1642
Bram Moolenaar05159a02005-02-26 23:04:13 +00001643function call *expr-function* *E116* *E118* *E119* *E120*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644-------------
1645function(expr1, ...) function call
1646See below |functions|.
1647
1648
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001649lambda expression *expr-lambda* *lambda*
1650-----------------
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001651{args -> expr1} legacy lambda expression *E451*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001652(args) => expr1 |Vim9| lambda expression
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001653
1654A lambda expression creates a new unnamed function which returns the result of
Bram Moolenaar42ebd062016-07-17 13:35:14 +02001655evaluating |expr1|. Lambda expressions differ from |user-functions| in
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001656the following ways:
1657
16581. The body of the lambda expression is an |expr1| and not a sequence of |Ex|
1659 commands.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +020016602. The prefix "a:" should not be used for arguments. E.g.: >
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001661 :let F = {arg1, arg2 -> arg1 - arg2}
1662 :echo F(5, 2)
1663< 3
1664
1665The arguments are optional. Example: >
1666 :let F = {-> 'error function'}
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001667 :echo F('ignored')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001668< error function
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001669
Bram Moolenaar5da36052021-12-27 15:39:57 +00001670The |Vim9| lambda does not only use a different syntax, it also adds type
1671checking and can be split over multiple lines, see |vim9-lambda|.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001672
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001673 *closure*
1674Lambda expressions can access outer scope variables and arguments. This is
Bram Moolenaar50ba5262016-09-22 22:33:02 +02001675often called a closure. Example where "i" and "a:arg" are used in a lambda
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001676while they already exist in the function scope. They remain valid even after
1677the function returns: >
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001678 :function Foo(arg)
1679 : let i = 3
1680 : return {x -> x + i - a:arg}
1681 :endfunction
1682 :let Bar = Foo(4)
1683 :echo Bar(6)
1684< 5
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001685
Bram Moolenaar388a5d42020-05-26 21:20:45 +02001686Note that the variables must exist in the outer scope before the lambda is
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001687defined for this to work. See also |:func-closure|.
1688
1689Lambda and closure support can be checked with: >
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001690 if has('lambda')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001691
1692Examples for using a lambda expression with |sort()|, |map()| and |filter()|: >
1693 :echo map([1, 2, 3], {idx, val -> val + 1})
1694< [2, 3, 4] >
1695 :echo sort([3,7,2,1,4], {a, b -> a - b})
1696< [1, 2, 3, 4, 7]
1697
1698The lambda expression is also useful for Channel, Job and timer: >
1699 :let timer = timer_start(500,
1700 \ {-> execute("echo 'Handler called'", "")},
1701 \ {'repeat': 3})
1702< Handler called
1703 Handler called
1704 Handler called
1705
Bram Moolenaar90df4b92021-07-07 20:26:08 +02001706Note that it is possible to cause memory to be used and not freed if the
1707closure is referenced by the context it depends on: >
1708 function Function()
1709 let x = 0
1710 let F = {-> x}
1711 endfunction
1712The closure uses "x" from the function scope, and "F" in that same scope
1713refers to the closure. This cycle results in the memory not being freed.
1714Recommendation: don't do this.
1715
1716Notice how execute() is used to execute an Ex command. That's ugly though.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001717In Vim9 script you can use a command block, see |inline-function|.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001718
Bram Moolenaar71b6d332022-09-10 13:13:14 +01001719Although you can use the loop variable of a `for` command, it must still exist
1720when the closure is called, otherwise you get an error. *E1302*
1721
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001722Lambda expressions have internal names like '<lambda>42'. If you get an error
1723for a lambda expression, you can find what it is with the following command: >
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001724 :function <lambda>42
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001725See also: |numbered-function|
1726
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727==============================================================================
Bram Moolenaar6f4754b2022-01-23 12:07:04 +000017283. Internal variable *internal-variables* *E461* *E1001*
Bram Moolenaar4a748032010-09-30 21:47:56 +02001729
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730An internal variable name can be made up of letters, digits and '_'. But it
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001731cannot start with a digit. In legacy script it is also possible to use curly
Bram Moolenaar5da36052021-12-27 15:39:57 +00001732braces, see |curly-braces-names|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001734In legacy script an internal variable is created with the ":let" command
Bram Moolenaar5da36052021-12-27 15:39:57 +00001735|:let|. An internal variable is explicitly destroyed with the ":unlet"
1736command |:unlet|.
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001737Using a name that is not an internal variable or refers to a variable that has
1738been destroyed results in an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739
Bram Moolenaar5da36052021-12-27 15:39:57 +00001740In |Vim9| script `:let` is not used and variables work differently, see |:var|.
1741
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001742 *variable-scope*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743There are several name spaces for variables. Which one is to be used is
1744specified by what is prepended:
1745
Bram Moolenaar5da36052021-12-27 15:39:57 +00001746 (nothing) In a function: local to the function;
1747 in a legacy script: global;
1748 in a |Vim9| script: local to the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749|buffer-variable| b: Local to the current buffer.
1750|window-variable| w: Local to the current window.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001751|tabpage-variable| t: Local to the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752|global-variable| g: Global.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001753|local-variable| l: Local to a function (only in a legacy function)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754|script-variable| s: Local to a |:source|'ed Vim script.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001755|function-argument| a: Function argument (only in a legacy function).
Bram Moolenaar75b81562014-04-06 14:09:13 +02001756|vim-variable| v: Global, predefined by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001758The scope name by itself can be used as a |Dictionary|. For example, to
1759delete all script-local variables: >
Bram Moolenaar8f999f12005-01-25 22:12:55 +00001760 :for k in keys(s:)
1761 : unlet s:[k]
1762 :endfor
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001763
Bram Moolenaar5da36052021-12-27 15:39:57 +00001764Note: in Vim9 script variables can also be local to a block of commands, see
1765|vim9-scopes|.
Bram Moolenaar531da592013-05-06 05:58:55 +02001766 *buffer-variable* *b:var* *b:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767A variable name that is preceded with "b:" is local to the current buffer.
1768Thus you can have several "b:foo" variables, one for each buffer.
1769This kind of variable is deleted when the buffer is wiped out or deleted with
1770|:bdelete|.
1771
1772One local buffer variable is predefined:
Bram Moolenaarbf884932013-04-05 22:26:15 +02001773 *b:changedtick* *changetick*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774b:changedtick The total number of changes to the current buffer. It is
1775 incremented for each change. An undo command is also a change
Bram Moolenaarc024b462019-06-08 18:07:21 +02001776 in this case. Resetting 'modified' when writing the buffer is
1777 also counted.
1778 This can be used to perform an action only when the buffer has
1779 changed. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 :if my_changedtick != b:changedtick
Bram Moolenaar446cb832008-06-24 21:56:24 +00001781 : let my_changedtick = b:changedtick
1782 : call My_Update()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 :endif
Bram Moolenaar3df01732017-02-17 22:47:16 +01001784< You cannot change or delete the b:changedtick variable.
1785
Bram Moolenaar531da592013-05-06 05:58:55 +02001786 *window-variable* *w:var* *w:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787A variable name that is preceded with "w:" is local to the current window. It
1788is deleted when the window is closed.
1789
Bram Moolenaarad3b3662013-05-17 18:14:19 +02001790 *tabpage-variable* *t:var* *t:*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001791A variable name that is preceded with "t:" is local to the current tab page,
1792It is deleted when the tab page is closed. {not available when compiled
Bram Moolenaardb84e452010-08-15 13:50:43 +02001793without the |+windows| feature}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001794
Bram Moolenaar531da592013-05-06 05:58:55 +02001795 *global-variable* *g:var* *g:*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001796Inside functions and in |Vim9| script global variables are accessed with "g:".
1797Omitting this will access a variable local to a function or script. "g:"
1798can also be used in any other place if you like.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799
Bram Moolenaar531da592013-05-06 05:58:55 +02001800 *local-variable* *l:var* *l:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801Inside functions local variables are accessed without prepending anything.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001802But you can also prepend "l:" if you like. However, without prepending "l:"
1803you may run into reserved variable names. For example "count". By itself it
1804refers to "v:count". Using "l:count" you can have a local variable with the
1805same name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806
1807 *script-variable* *s:var*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001808In a legacy Vim script variables starting with "s:" can be used. They cannot
1809be accessed from outside of the scripts, thus are local to the script.
1810In |Vim9| script the "s:" prefix can be omitted, variables are script-local by
1811default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812
1813They can be used in:
1814- commands executed while the script is sourced
1815- functions defined in the script
1816- autocommands defined in the script
1817- functions and autocommands defined in functions and autocommands which were
1818 defined in the script (recursively)
1819- user defined commands defined in the script
1820Thus not in:
1821- other scripts sourced from this one
1822- mappings
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001823- menus
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824- etc.
1825
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001826Script variables can be used to avoid conflicts with global variable names.
1827Take this example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828
1829 let s:counter = 0
1830 function MyCounter()
1831 let s:counter = s:counter + 1
1832 echo s:counter
1833 endfunction
1834 command Tick call MyCounter()
1835
1836You can now invoke "Tick" from any script, and the "s:counter" variable in
1837that script will not be changed, only the "s:counter" in the script where
1838"Tick" was defined is used.
1839
1840Another example that does the same: >
1841
1842 let s:counter = 0
1843 command Tick let s:counter = s:counter + 1 | echo s:counter
1844
1845When calling a function and invoking a user-defined command, the context for
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001846script variables is set to the script where the function or command was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847defined.
1848
1849The script variables are also available when a function is defined inside a
1850function that is defined in a script. Example: >
1851
1852 let s:counter = 0
1853 function StartCounting(incr)
1854 if a:incr
1855 function MyCounter()
1856 let s:counter = s:counter + 1
1857 endfunction
1858 else
1859 function MyCounter()
1860 let s:counter = s:counter - 1
1861 endfunction
1862 endif
1863 endfunction
1864
1865This defines the MyCounter() function either for counting up or counting down
1866when calling StartCounting(). It doesn't matter from where StartCounting() is
1867called, the s:counter variable will be accessible in MyCounter().
1868
1869When the same script is sourced again it will use the same script variables.
1870They will remain valid as long as Vim is running. This can be used to
1871maintain a counter: >
1872
1873 if !exists("s:counter")
1874 let s:counter = 1
1875 echo "script executed for the first time"
1876 else
1877 let s:counter = s:counter + 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001878 echo "script executed " .. s:counter .. " times now"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 endif
1880
1881Note that this means that filetype plugins don't get a different set of script
1882variables for each buffer. Use local buffer variables instead |b:var|.
1883
1884
Bram Moolenaard47d5222018-12-09 20:43:55 +01001885PREDEFINED VIM VARIABLES *vim-variable* *v:var* *v:*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001886 *E963* *E1063*
Bram Moolenaard47d5222018-12-09 20:43:55 +01001887Some variables can be set by the user, but the type cannot be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001889 *v:argv* *argv-variable*
1890v:argv The command line arguments Vim was invoked with. This is a
1891 list of strings. The first item is the Vim command.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00001892 See |v:progpath| for the command with full path.
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001893
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001894 *v:beval_col* *beval_col-variable*
1895v:beval_col The number of the column, over which the mouse pointer is.
1896 This is the byte index in the |v:beval_lnum| line.
1897 Only valid while evaluating the 'balloonexpr' option.
1898
1899 *v:beval_bufnr* *beval_bufnr-variable*
1900v:beval_bufnr The number of the buffer, over which the mouse pointer is. Only
1901 valid while evaluating the 'balloonexpr' option.
1902
1903 *v:beval_lnum* *beval_lnum-variable*
1904v:beval_lnum The number of the line, over which the mouse pointer is. Only
1905 valid while evaluating the 'balloonexpr' option.
1906
1907 *v:beval_text* *beval_text-variable*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001908v:beval_text The text under or after the mouse pointer. Usually a word as
1909 it is useful for debugging a C program. 'iskeyword' applies,
1910 but a dot and "->" before the position is included. When on a
1911 ']' the text before it is used, including the matching '[' and
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001912 word before it. When on a Visual area within one line the
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +02001913 highlighted text is used. Also see |<cexpr>|.
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001914 Only valid while evaluating the 'balloonexpr' option.
1915
1916 *v:beval_winnr* *beval_winnr-variable*
1917v:beval_winnr The number of the window, over which the mouse pointer is. Only
Bram Moolenaar00654022011-02-25 14:42:19 +01001918 valid while evaluating the 'balloonexpr' option. The first
1919 window has number zero (unlike most other places where a
1920 window gets a number).
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001921
Bram Moolenaar511972d2016-06-04 18:09:59 +02001922 *v:beval_winid* *beval_winid-variable*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001923v:beval_winid The |window-ID| of the window, over which the mouse pointer
1924 is. Otherwise like v:beval_winnr.
Bram Moolenaar511972d2016-06-04 18:09:59 +02001925
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001926 *v:char* *char-variable*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001927v:char Argument for evaluating 'formatexpr' and used for the typed
Bram Moolenaar945e2db2010-06-05 17:43:32 +02001928 character when using <expr> in an abbreviation |:map-<expr>|.
Bram Moolenaare6ae6222013-05-21 21:01:10 +02001929 It is also used by the |InsertCharPre| and |InsertEnter| events.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001930
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 *v:charconvert_from* *charconvert_from-variable*
1932v:charconvert_from
1933 The name of the character encoding of a file to be converted.
1934 Only valid while evaluating the 'charconvert' option.
1935
1936 *v:charconvert_to* *charconvert_to-variable*
1937v:charconvert_to
1938 The name of the character encoding of a file after conversion.
1939 Only valid while evaluating the 'charconvert' option.
1940
1941 *v:cmdarg* *cmdarg-variable*
1942v:cmdarg This variable is used for two purposes:
1943 1. The extra arguments given to a file read/write command.
1944 Currently these are "++enc=" and "++ff=". This variable is
1945 set before an autocommand event for a file read/write
1946 command is triggered. There is a leading space to make it
1947 possible to append this variable directly after the
Bram Moolenaar58b85342016-08-14 19:54:54 +02001948 read/write command. Note: The "+cmd" argument isn't
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 included here, because it will be executed anyway.
1950 2. When printing a PostScript file with ":hardcopy" this is
1951 the argument for the ":hardcopy" command. This can be used
1952 in 'printexpr'.
1953
1954 *v:cmdbang* *cmdbang-variable*
1955v:cmdbang Set like v:cmdarg for a file read/write command. When a "!"
1956 was used the value is 1, otherwise it is 0. Note that this
1957 can only be used in autocommands. For user commands |<bang>|
1958 can be used.
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +02001959 *v:collate* *collate-variable*
1960v:collate The current locale setting for collation order of the runtime
1961 environment. This allows Vim scripts to be aware of the
1962 current locale encoding. Technical: it's the value of
1963 LC_COLLATE. When not using a locale the value is "C".
1964 This variable can not be set directly, use the |:language|
1965 command.
1966 See |multi-lang|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967
Bram Moolenaar76db9e02022-11-09 21:21:04 +00001968 *v:colornames*
Drew Vogele30d1022021-10-24 20:35:07 +01001969v:colornames A dictionary that maps color names to hex color strings. These
1970 color names can be used with the |highlight-guifg|,
1971 |highlight-guibg|, and |highlight-guisp| parameters. Updating
1972 an entry in v:colornames has no immediate effect on the syntax
1973 highlighting. The highlight commands (probably in a
1974 colorscheme script) need to be re-evaluated in order to use
1975 the updated color values. For example: >
1976
1977 :let v:colornames['fuscia'] = '#cf3ab4'
1978 :let v:colornames['mauve'] = '#915f6d'
1979 :highlight Normal guifg=fuscia guibg=mauve
1980<
1981 This cannot be used to override the |cterm-colors| but it can
1982 be used to override other colors. For example, the X11 colors
1983 defined in the `colors/lists/default.vim` (previously defined
1984 in |rgb.txt|). When defining new color names in a plugin, the
1985 recommended practice is to set a color entry only when it does
1986 not already exist. For example: >
1987
1988 :call extend(v:colornames, {
1989 \ 'fuscia': '#cf3ab4',
1990 \ 'mauve': '#915f6d,
1991 \ }, 'keep')
1992<
Bram Moolenaar113cb512021-11-07 20:27:04 +00001993 Using |extend()| with the 'keep' option updates each color only
Drew Vogele30d1022021-10-24 20:35:07 +01001994 if it did not exist in |v:colornames|. Doing so allows the
1995 user to choose the precise color value for a common name
1996 by setting it in their |.vimrc|.
1997
1998 It is possible to remove entries from this dictionary but
Drew Vogela0fca172021-11-13 10:50:01 +00001999 doing so is NOT recommended, because it is disruptive to
Drew Vogele30d1022021-10-24 20:35:07 +01002000 other scripts. It is also unlikely to achieve the desired
Bram Moolenaar113cb512021-11-07 20:27:04 +00002001 result because the |:colorscheme| and |:highlight| commands will
Drew Vogele30d1022021-10-24 20:35:07 +01002002 both automatically load all `colors/lists/default.vim` color
2003 scripts.
2004
Bram Moolenaar42a45122015-07-10 17:56:23 +02002005 *v:completed_item* *completed_item-variable*
2006v:completed_item
2007 |Dictionary| containing the |complete-items| for the most
2008 recently completed word after |CompleteDone|. The
2009 |Dictionary| is empty if the completion failed.
Shougo Matsushita61021aa2022-07-27 14:40:00 +01002010 Note: Plugins can modify the value to emulate the builtin
2011 |CompleteDone| event behavior.
Bram Moolenaar42a45122015-07-10 17:56:23 +02002012
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 *v:count* *count-variable*
2014v:count The count given for the last Normal mode command. Can be used
Bram Moolenaar58b85342016-08-14 19:54:54 +02002015 to get the count before a mapping. Read-only. Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002016 :map _x :<C-U>echo "the count is " .. v:count<CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017< Note: The <C-U> is required to remove the line range that you
2018 get when typing ':' after a count.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01002019 When there are two counts, as in "3d2w", they are multiplied,
2020 just like what happens in the command, "d6w" for the example.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002021 Also used for evaluating the 'formatexpr' option.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002022 "count" also works, for backwards compatibility, unless
2023 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024
2025 *v:count1* *count1-variable*
2026v:count1 Just like "v:count", but defaults to one when no count is
2027 used.
2028
2029 *v:ctype* *ctype-variable*
2030v:ctype The current locale setting for characters of the runtime
2031 environment. This allows Vim scripts to be aware of the
2032 current locale encoding. Technical: it's the value of
2033 LC_CTYPE. When not using a locale the value is "C".
2034 This variable can not be set directly, use the |:language|
2035 command.
2036 See |multi-lang|.
2037
2038 *v:dying* *dying-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002039v:dying Normally zero. When a deadly signal is caught it's set to
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 one. When multiple signals are caught the number increases.
2041 Can be used in an autocommand to check if Vim didn't
2042 terminate normally. {only works on Unix}
2043 Example: >
2044 :au VimLeave * if v:dying | echo "\nAAAAaaaarrrggghhhh!!!\n" | endif
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02002045< Note: if another deadly signal is caught when v:dying is one,
2046 VimLeave autocommands will not be executed.
2047
Bram Moolenaarf0068c52020-11-30 17:42:10 +01002048 *v:exiting* *exiting-variable*
2049v:exiting Vim exit code. Normally zero, non-zero when something went
2050 wrong. The value is v:null before invoking the |VimLeavePre|
2051 and |VimLeave| autocmds. See |:q|, |:x| and |:cquit|.
2052 Example: >
2053 :au VimLeave * echo "Exit value is " .. v:exiting
2054<
Bram Moolenaar37f4cbd2019-08-23 20:58:45 +02002055 *v:echospace* *echospace-variable*
2056v:echospace Number of screen cells that can be used for an `:echo` message
2057 in the last screen line before causing the |hit-enter-prompt|.
2058 Depends on 'showcmd', 'ruler' and 'columns'. You need to
2059 check 'cmdheight' for whether there are full-width lines
2060 available above the last line.
2061
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 *v:errmsg* *errmsg-variable*
2063v:errmsg Last given error message. It's allowed to set this variable.
2064 Example: >
2065 :let v:errmsg = ""
2066 :silent! next
2067 :if v:errmsg != ""
2068 : ... handle error
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002069< "errmsg" also works, for backwards compatibility, unless
2070 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
Bram Moolenaar65a54642018-04-28 16:56:53 +02002072 *v:errors* *errors-variable* *assert-return*
Bram Moolenaar683fa182015-11-30 21:38:24 +01002073v:errors Errors found by assert functions, such as |assert_true()|.
Bram Moolenaar43345542015-11-29 17:35:35 +01002074 This is a list of strings.
2075 The assert functions append an item when an assert fails.
Bram Moolenaar65a54642018-04-28 16:56:53 +02002076 The return value indicates this: a one is returned if an item
2077 was added to v:errors, otherwise zero is returned.
Bram Moolenaar43345542015-11-29 17:35:35 +01002078 To remove old results make it empty: >
2079 :let v:errors = []
2080< If v:errors is set to anything but a list it is made an empty
2081 list by the assert function.
2082
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01002083 *v:event* *event-variable*
2084v:event Dictionary containing information about the current
Bram Moolenaar560979e2020-02-04 22:53:05 +01002085 |autocommand|. See the specific event for what it puts in
2086 this dictionary.
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +02002087 The dictionary is emptied when the |autocommand| finishes,
2088 please refer to |dict-identity| for how to get an independent
2089 copy of it. Use |deepcopy()| if you want to keep the
2090 information after the event triggers. Example: >
2091 au TextYankPost * let g:foo = deepcopy(v:event)
2092<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 *v:exception* *exception-variable*
2094v:exception The value of the exception most recently caught and not
2095 finished. See also |v:throwpoint| and |throw-variables|.
2096 Example: >
2097 :try
2098 : throw "oops"
2099 :catch /.*/
Bram Moolenaar54775062019-07-31 21:07:14 +02002100 : echo "caught " .. v:exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 :endtry
2102< Output: "caught oops".
2103
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002104 *v:false* *false-variable*
2105v:false A Number with value zero. Used to put "false" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002106 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002107 When used as a string this evaluates to "v:false". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002108 echo v:false
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002109< v:false ~
2110 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002111 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002112 In |Vim9| script "false" can be used which has a boolean type.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002113
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002114 *v:fcs_reason* *fcs_reason-variable*
2115v:fcs_reason The reason why the |FileChangedShell| event was triggered.
2116 Can be used in an autocommand to decide what to do and/or what
2117 to set v:fcs_choice to. Possible values:
2118 deleted file no longer exists
2119 conflict file contents, mode or timestamp was
2120 changed and buffer is modified
2121 changed file contents has changed
2122 mode mode of file changed
2123 time only file timestamp changed
2124
2125 *v:fcs_choice* *fcs_choice-variable*
2126v:fcs_choice What should happen after a |FileChangedShell| event was
2127 triggered. Can be used in an autocommand to tell Vim what to
2128 do with the affected buffer:
2129 reload Reload the buffer (does not work if
2130 the file was deleted).
Rob Pilling8196e942022-02-11 15:12:10 +00002131 edit Reload the buffer and detect the
2132 values for options such as
2133 'fileformat', 'fileencoding', 'binary'
2134 (does not work if the file was
2135 deleted).
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002136 ask Ask the user what to do, as if there
2137 was no autocommand. Except that when
2138 only the timestamp changed nothing
2139 will happen.
2140 <empty> Nothing, the autocommand should do
2141 everything that needs to be done.
2142 The default is empty. If another (invalid) value is used then
2143 Vim behaves like it is empty, there is no warning message.
2144
Bram Moolenaar4c295022021-05-02 17:19:11 +02002145 *v:fname* *fname-variable*
Bram Moolenaar90df4b92021-07-07 20:26:08 +02002146v:fname When evaluating 'includeexpr': the file name that was
2147 detected. Empty otherwise.
Bram Moolenaar4c295022021-05-02 17:19:11 +02002148
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 *v:fname_in* *fname_in-variable*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002150v:fname_in The name of the input file. Valid while evaluating:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 option used for ~
2152 'charconvert' file to be converted
2153 'diffexpr' original file
2154 'patchexpr' original file
2155 'printexpr' file to be printed
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002156 And set to the swap file name for |SwapExists|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157
2158 *v:fname_out* *fname_out-variable*
2159v:fname_out The name of the output file. Only valid while
2160 evaluating:
2161 option used for ~
2162 'charconvert' resulting converted file (*)
2163 'diffexpr' output of diff
2164 'patchexpr' resulting patched file
2165 (*) When doing conversion for a write command (e.g., ":w
Bram Moolenaar58b85342016-08-14 19:54:54 +02002166 file") it will be equal to v:fname_in. When doing conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 for a read command (e.g., ":e file") it will be a temporary
2168 file and different from v:fname_in.
2169
2170 *v:fname_new* *fname_new-variable*
2171v:fname_new The name of the new version of the file. Only valid while
2172 evaluating 'diffexpr'.
2173
2174 *v:fname_diff* *fname_diff-variable*
2175v:fname_diff The name of the diff (patch) file. Only valid while
2176 evaluating 'patchexpr'.
2177
2178 *v:folddashes* *folddashes-variable*
2179v:folddashes Used for 'foldtext': dashes representing foldlevel of a closed
2180 fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002181 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182
2183 *v:foldlevel* *foldlevel-variable*
2184v:foldlevel Used for 'foldtext': foldlevel of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002185 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186
2187 *v:foldend* *foldend-variable*
2188v:foldend Used for 'foldtext': last line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002189 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190
2191 *v:foldstart* *foldstart-variable*
2192v:foldstart Used for 'foldtext': first line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002193 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194
Bram Moolenaar817a8802013-11-09 01:44:43 +01002195 *v:hlsearch* *hlsearch-variable*
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002196v:hlsearch Variable that indicates whether search highlighting is on.
Bram Moolenaar76440e22014-11-27 19:14:49 +01002197 Setting it makes sense only if 'hlsearch' is enabled which
2198 requires |+extra_search|. Setting this variable to zero acts
Bram Moolenaar705ada12016-01-24 17:56:50 +01002199 like the |:nohlsearch| command, setting it to one acts like >
Bram Moolenaar817a8802013-11-09 01:44:43 +01002200 let &hlsearch = &hlsearch
Bram Moolenaar86ae7202015-07-10 19:31:35 +02002201< Note that the value is restored when returning from a
2202 function. |function-search-undo|.
2203
Bram Moolenaar843ee412004-06-30 16:16:41 +00002204 *v:insertmode* *insertmode-variable*
2205v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand
2206 events. Values:
2207 i Insert mode
2208 r Replace mode
2209 v Virtual Replace mode
2210
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002211 *v:key* *key-variable*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002212v:key Key of the current item of a |Dictionary|. Only valid while
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002213 evaluating the expression used with |map()| and |filter()|.
2214 Read-only.
2215
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 *v:lang* *lang-variable*
2217v:lang The current locale setting for messages of the runtime
2218 environment. This allows Vim scripts to be aware of the
2219 current language. Technical: it's the value of LC_MESSAGES.
2220 The value is system dependent.
2221 This variable can not be set directly, use the |:language|
2222 command.
2223 It can be different from |v:ctype| when messages are desired
2224 in a different language than what is used for character
2225 encoding. See |multi-lang|.
2226
2227 *v:lc_time* *lc_time-variable*
2228v:lc_time The current locale setting for time messages of the runtime
2229 environment. This allows Vim scripts to be aware of the
2230 current language. Technical: it's the value of LC_TIME.
2231 This variable can not be set directly, use the |:language|
2232 command. See |multi-lang|.
2233
2234 *v:lnum* *lnum-variable*
Bram Moolenaar368373e2010-07-19 20:46:22 +02002235v:lnum Line number for the 'foldexpr' |fold-expr|, 'formatexpr' and
2236 'indentexpr' expressions, tab page number for 'guitablabel'
2237 and 'guitabtooltip'. Only valid while one of these
2238 expressions is being evaluated. Read-only when in the
2239 |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240
naohiro ono56200ee2022-01-01 14:59:44 +00002241 *v:maxcol* *maxcol-variable*
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00002242v:maxcol Maximum line length. Depending on where it is used it can be
Bram Moolenaar944697a2022-02-20 19:48:20 +00002243 screen columns, characters or bytes. The value currently is
2244 2147483647 on all systems.
naohiro ono56200ee2022-01-01 14:59:44 +00002245
Bram Moolenaar219b8702006-11-01 14:32:36 +00002246 *v:mouse_win* *mouse_win-variable*
2247v:mouse_win Window number for a mouse click obtained with |getchar()|.
2248 First window has number 1, like with |winnr()|. The value is
2249 zero when there was no mouse button click.
2250
Bram Moolenaar511972d2016-06-04 18:09:59 +02002251 *v:mouse_winid* *mouse_winid-variable*
2252v:mouse_winid Window ID for a mouse click obtained with |getchar()|.
2253 The value is zero when there was no mouse button click.
2254
Bram Moolenaar219b8702006-11-01 14:32:36 +00002255 *v:mouse_lnum* *mouse_lnum-variable*
2256v:mouse_lnum Line number for a mouse click obtained with |getchar()|.
2257 This is the text line number, not the screen line number. The
2258 value is zero when there was no mouse button click.
2259
2260 *v:mouse_col* *mouse_col-variable*
2261v:mouse_col Column number for a mouse click obtained with |getchar()|.
2262 This is the screen column number, like with |virtcol()|. The
2263 value is zero when there was no mouse button click.
2264
Bram Moolenaard09091d2019-01-17 16:07:22 +01002265 *v:none* *none-variable* *None*
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002266v:none An empty String. Used to put an empty item in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002267 |json_encode()|.
Bram Moolenaar2547aa92020-07-26 17:00:44 +02002268 This can also be used as a function argument to use the
2269 default value, see |none-function_argument|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002270 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002271 When used as a string this evaluates to "v:none". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002272 echo v:none
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002273< v:none ~
2274 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002275 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002276 Note that using `== v:none` and `!= v:none` will often give
2277 an error. Instead, use `is v:none` and `isnot v:none` .
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002278
2279 *v:null* *null-variable*
2280v:null An empty String. Used to put "null" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002281 |json_encode()|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002282 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002283 When used as a string this evaluates to "v:null". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002284 echo v:null
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002285< v:null ~
2286 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002287 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002288 In |Vim9| script `null` can be used without "v:".
2289 In some places `v:null` and `null` can be used for a List,
2290 Dict, Job, etc. that is not set. That is slightly different
2291 than an empty List, Dict, etc.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002292
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002293 *v:numbermax* *numbermax-variable*
2294v:numbermax Maximum value of a number.
2295
Bram Moolenaare0e39172021-01-25 21:14:57 +01002296 *v:numbermin* *numbermin-variable*
Bram Moolenaar2346a632021-06-13 19:02:49 +02002297v:numbermin Minimum value of a number (negative).
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002298
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002299 *v:numbersize* *numbersize-variable*
2300v:numbersize Number of bits in a Number. This is normally 64, but on some
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01002301 systems it may be 32.
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002302
Bram Moolenaard812df62008-11-09 12:46:09 +00002303 *v:oldfiles* *oldfiles-variable*
2304v:oldfiles List of file names that is loaded from the |viminfo| file on
2305 startup. These are the files that Vim remembers marks for.
2306 The length of the List is limited by the ' argument of the
2307 'viminfo' option (default is 100).
Bram Moolenaar8d043172014-01-23 14:24:41 +01002308 When the |viminfo| file is not used the List is empty.
Bram Moolenaard812df62008-11-09 12:46:09 +00002309 Also see |:oldfiles| and |c_#<|.
2310 The List can be modified, but this has no effect on what is
2311 stored in the |viminfo| file later. If you use values other
2312 than String this will cause trouble.
Bram Moolenaardb84e452010-08-15 13:50:43 +02002313 {only when compiled with the |+viminfo| feature}
Bram Moolenaard812df62008-11-09 12:46:09 +00002314
Bram Moolenaar53744302015-07-17 17:38:22 +02002315 *v:option_new*
2316v:option_new New value of the option. Valid while executing an |OptionSet|
2317 autocommand.
2318 *v:option_old*
2319v:option_old Old value of the option. Valid while executing an |OptionSet|
Bram Moolenaard7c96872019-06-15 17:12:48 +02002320 autocommand. Depending on the command used for setting and the
2321 kind of option this is either the local old value or the
2322 global old value.
2323 *v:option_oldlocal*
2324v:option_oldlocal
2325 Old local value of the option. Valid while executing an
2326 |OptionSet| autocommand.
2327 *v:option_oldglobal*
2328v:option_oldglobal
2329 Old global value of the option. Valid while executing an
2330 |OptionSet| autocommand.
Bram Moolenaar53744302015-07-17 17:38:22 +02002331 *v:option_type*
2332v:option_type Scope of the set command. Valid while executing an
2333 |OptionSet| autocommand. Can be either "global" or "local"
Bram Moolenaard7c96872019-06-15 17:12:48 +02002334 *v:option_command*
2335v:option_command
2336 Command used to set the option. Valid while executing an
2337 |OptionSet| autocommand.
2338 value option was set via ~
2339 "setlocal" |:setlocal| or ":let l:xxx"
2340 "setglobal" |:setglobal| or ":let g:xxx"
2341 "set" |:set| or |:let|
2342 "modeline" |modeline|
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002343 *v:operator* *operator-variable*
2344v:operator The last operator given in Normal mode. This is a single
2345 character except for commands starting with <g> or <z>,
2346 in which case it is two characters. Best used alongside
2347 |v:prevcount| and |v:register|. Useful if you want to cancel
2348 Operator-pending mode and then use the operator, e.g.: >
2349 :omap O <Esc>:call MyMotion(v:operator)<CR>
2350< The value remains set until another operator is entered, thus
2351 don't expect it to be empty.
2352 v:operator is not set for |:delete|, |:yank| or other Ex
2353 commands.
2354 Read-only.
2355
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 *v:prevcount* *prevcount-variable*
2357v:prevcount The count given for the last but one Normal mode command.
2358 This is the v:count value of the previous command. Useful if
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002359 you want to cancel Visual or Operator-pending mode and then
2360 use the count, e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 :vmap % <Esc>:call MyFilter(v:prevcount)<CR>
2362< Read-only.
2363
Bram Moolenaar05159a02005-02-26 23:04:13 +00002364 *v:profiling* *profiling-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002365v:profiling Normally zero. Set to one after using ":profile start".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002366 See |profiling|.
2367
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 *v:progname* *progname-variable*
2369v:progname Contains the name (with path removed) with which Vim was
Bram Moolenaard38b0552012-04-25 19:07:41 +02002370 invoked. Allows you to do special initialisations for |view|,
2371 |evim| etc., or any other name you might symlink to Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 Read-only.
2373
Bram Moolenaara1706c92014-04-01 19:55:49 +02002374 *v:progpath* *progpath-variable*
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002375v:progpath Contains the command with which Vim was invoked, in a form
2376 that when passed to the shell will run the same Vim executable
2377 as the current one (if $PATH remains unchanged).
2378 Useful if you want to message a Vim server using a
Bram Moolenaara1706c92014-04-01 19:55:49 +02002379 |--remote-expr|.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002380 To get the full path use: >
2381 echo exepath(v:progpath)
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002382< If the command has a relative path it will be expanded to the
2383 full path, so that it still works after `:cd`. Thus starting
2384 "./vim" results in "/home/user/path/to/vim/src/vim".
2385 On Linux and other systems it will always be the full path.
2386 On Mac it may just be "vim" and using exepath() as mentioned
2387 above should be used to get the full path.
Bram Moolenaar08cab962017-03-04 14:37:18 +01002388 On MS-Windows the executable may be called "vim.exe", but the
2389 ".exe" is not added to v:progpath.
Bram Moolenaara1706c92014-04-01 19:55:49 +02002390 Read-only.
2391
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 *v:register* *register-variable*
Bram Moolenaard58e9292011-02-09 17:07:58 +01002393v:register The name of the register in effect for the current normal mode
Bram Moolenaard38b0552012-04-25 19:07:41 +02002394 command (regardless of whether that command actually used a
2395 register). Or for the currently executing normal mode mapping
2396 (use this in custom commands that take a register).
2397 If none is supplied it is the default register '"', unless
2398 'clipboard' contains "unnamed" or "unnamedplus", then it is
2399 '*' or '+'.
Bram Moolenaard58e9292011-02-09 17:07:58 +01002400 Also see |getreg()| and |setreg()|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002402 *v:scrollstart* *scrollstart-variable*
2403v:scrollstart String describing the script or function that caused the
2404 screen to scroll up. It's only set when it is empty, thus the
2405 first reason is remembered. It is set to "Unknown" for a
2406 typed command.
2407 This can be used to find out why your script causes the
2408 hit-enter prompt.
2409
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 *v:servername* *servername-variable*
Bram Moolenaarc2ce52c2017-08-01 18:35:38 +02002411v:servername The resulting registered |client-server-name| if any.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 Read-only.
2413
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002414
Bram Moolenaar446cb832008-06-24 21:56:24 +00002415v:searchforward *v:searchforward* *searchforward-variable*
2416 Search direction: 1 after a forward search, 0 after a
2417 backward search. It is reset to forward when directly setting
2418 the last search pattern, see |quote/|.
2419 Note that the value is restored when returning from a
2420 function. |function-search-undo|.
2421 Read-write.
2422
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 *v:shell_error* *shell_error-variable*
2424v:shell_error Result of the last shell command. When non-zero, the last
2425 shell command had an error. When zero, there was no problem.
2426 This only works when the shell returns the error code to Vim.
2427 The value -1 is often used when the command could not be
2428 executed. Read-only.
2429 Example: >
2430 :!mv foo bar
2431 :if v:shell_error
2432 : echo 'could not rename "foo" to "bar"!'
2433 :endif
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002434< "shell_error" also works, for backwards compatibility, unless
2435 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
Bram Moolenaar113cb512021-11-07 20:27:04 +00002437 *v:sizeofint* *sizeofint-variable*
2438v:sizeofint Number of bytes in an int. Depends on how Vim was compiled.
2439 This is only useful for deciding whether a test will give the
2440 expected result.
2441
2442 *v:sizeoflong* *sizeoflong-variable*
2443v:sizeoflong Number of bytes in a long. Depends on how Vim was compiled.
2444 This is only useful for deciding whether a test will give the
2445 expected result.
2446
2447 *v:sizeofpointer* *sizeofpointer-variable*
2448v:sizeofpointer Number of bytes in a pointer. Depends on how Vim was compiled.
2449 This is only useful for deciding whether a test will give the
2450 expected result.
2451
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 *v:statusmsg* *statusmsg-variable*
2453v:statusmsg Last given status message. It's allowed to set this variable.
2454
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002455 *v:swapname* *swapname-variable*
2456v:swapname Only valid when executing |SwapExists| autocommands: Name of
2457 the swap file found. Read-only.
2458
2459 *v:swapchoice* *swapchoice-variable*
2460v:swapchoice |SwapExists| autocommands can set this to the selected choice
2461 for handling an existing swap file:
2462 'o' Open read-only
2463 'e' Edit anyway
2464 'r' Recover
2465 'd' Delete swapfile
2466 'q' Quit
2467 'a' Abort
Bram Moolenaar58b85342016-08-14 19:54:54 +02002468 The value should be a single-character string. An empty value
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002469 results in the user being asked, as would happen when there is
2470 no SwapExists autocommand. The default is empty.
2471
Bram Moolenaarb3480382005-12-11 21:33:32 +00002472 *v:swapcommand* *swapcommand-variable*
Bram Moolenaar4770d092006-01-12 23:22:24 +00002473v:swapcommand Normal mode command to be executed after a file has been
Bram Moolenaarb3480382005-12-11 21:33:32 +00002474 opened. Can be used for a |SwapExists| autocommand to have
Bram Moolenaar58b85342016-08-14 19:54:54 +02002475 another Vim open the file and jump to the right place. For
Bram Moolenaarb3480382005-12-11 21:33:32 +00002476 example, when jumping to a tag the value is ":tag tagname\r".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002477 For ":edit +cmd file" the value is ":cmd\r".
Bram Moolenaarb3480382005-12-11 21:33:32 +00002478
Bram Moolenaard823fa92016-08-12 16:29:27 +02002479 *v:t_TYPE* *v:t_bool* *t_bool-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002480v:t_bool Value of |Boolean| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002481 *v:t_channel* *t_channel-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002482v:t_channel Value of |Channel| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002483 *v:t_dict* *t_dict-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002484v:t_dict Value of |Dictionary| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002485 *v:t_float* *t_float-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002486v:t_float Value of |Float| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002487 *v:t_func* *t_func-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002488v:t_func Value of |Funcref| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002489 *v:t_job* *t_job-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002490v:t_job Value of |Job| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002491 *v:t_list* *t_list-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002492v:t_list Value of |List| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002493 *v:t_none* *t_none-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002494v:t_none Value of |None| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002495 *v:t_number* *t_number-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002496v:t_number Value of |Number| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002497 *v:t_string* *t_string-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002498v:t_string Value of |String| type. Read-only. See: |type()|
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002499 *v:t_blob* *t_blob-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002500v:t_blob Value of |Blob| type. Read-only. See: |type()|
Bram Moolenaarf562e722016-07-19 17:25:25 +02002501
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 *v:termresponse* *termresponse-variable*
2503v:termresponse The escape sequence returned by the terminal for the |t_RV|
Bram Moolenaar58b85342016-08-14 19:54:54 +02002504 termcap entry. It is set when Vim receives an escape sequence
Bram Moolenaarb4230122019-05-30 18:40:53 +02002505 that starts with ESC [ or CSI, then '>' or '?' and ends in a
2506 'c', with only digits and ';' in between.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 When this option is set, the TermResponse autocommand event is
2508 fired, so that you can react to the response from the
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02002509 terminal. You can use |terminalprops()| to see what Vim
2510 figured out about the terminal.
Bram Moolenaarb4230122019-05-30 18:40:53 +02002511 The response from a new xterm is: "<Esc>[> Pp ; Pv ; Pc c". Pp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 is the terminal type: 0 for vt100 and 1 for vt220. Pv is the
2513 patch level (since this was introduced in patch 95, it's
Bram Moolenaarfa3b7232021-12-24 13:18:38 +00002514 always 95 or higher). Pc is always zero.
2515 If Pv is 141 or higher then Vim will try to request terminal
2516 codes. This only works with xterm |xterm-codes|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 {only when compiled with |+termresponse| feature}
2518
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002519 *v:termblinkresp*
2520v:termblinkresp The escape sequence returned by the terminal for the |t_RC|
2521 termcap entry. This is used to find out whether the terminal
2522 cursor is blinking. This is used by |term_getcursor()|.
2523
2524 *v:termstyleresp*
2525v:termstyleresp The escape sequence returned by the terminal for the |t_RS|
2526 termcap entry. This is used to find out what the shape of the
2527 cursor is. This is used by |term_getcursor()|.
2528
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002529 *v:termrbgresp*
2530v:termrbgresp The escape sequence returned by the terminal for the |t_RB|
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002531 termcap entry. This is used to find out what the terminal
2532 background color is, see 'background'.
2533
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002534 *v:termrfgresp*
2535v:termrfgresp The escape sequence returned by the terminal for the |t_RF|
2536 termcap entry. This is used to find out what the terminal
2537 foreground color is.
2538
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002539 *v:termu7resp*
2540v:termu7resp The escape sequence returned by the terminal for the |t_u7|
2541 termcap entry. This is used to find out what the terminal
2542 does with ambiguous width characters, see 'ambiwidth'.
2543
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002544 *v:testing* *testing-variable*
Bram Moolenaar8e8df252016-05-25 21:23:21 +02002545v:testing Must be set before using `test_garbagecollect_now()`.
Bram Moolenaar036986f2017-03-16 17:41:02 +01002546 Also, when set certain error messages won't be shown for 2
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002547 seconds. (e.g. "'dictionary' option is empty")
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002548
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 *v:this_session* *this_session-variable*
2550v:this_session Full filename of the last loaded or saved session file. See
2551 |:mksession|. It is allowed to set this variable. When no
2552 session file has been saved, this variable is empty.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002553 "this_session" also works, for backwards compatibility, unless
2554 |scriptversion| is 3 or higher
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555
2556 *v:throwpoint* *throwpoint-variable*
2557v:throwpoint The point where the exception most recently caught and not
Bram Moolenaar58b85342016-08-14 19:54:54 +02002558 finished was thrown. Not set when commands are typed. See
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 also |v:exception| and |throw-variables|.
2560 Example: >
2561 :try
2562 : throw "oops"
2563 :catch /.*/
2564 : echo "Exception from" v:throwpoint
2565 :endtry
2566< Output: "Exception from test.vim, line 2"
2567
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002568 *v:true* *true-variable*
2569v:true A Number with value one. Used to put "true" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002570 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002571 When used as a string this evaluates to "v:true". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002572 echo v:true
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002573< v:true ~
2574 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002575 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002576 In |Vim9| script "true" can be used which has a boolean type.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002577 *v:val* *val-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002578v:val Value of the current item of a |List| or |Dictionary|. Only
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002579 valid while evaluating the expression used with |map()| and
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002580 |filter()|. Read-only.
2581
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 *v:version* *version-variable*
2583v:version Version number of Vim: Major version number times 100 plus
Bram Moolenaar9b283522019-06-17 22:19:33 +02002584 minor version number. Version 5.0 is 500. Version 5.1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 is 501. Read-only. "version" also works, for backwards
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002586 compatibility, unless |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 Use |has()| to check if a certain patch was included, e.g.: >
Bram Moolenaar6716d9a2014-04-02 12:12:08 +02002588 if has("patch-7.4.123")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589< Note that patch numbers are specific to the version, thus both
2590 version 5.0 and 5.1 may have a patch 123, but these are
2591 completely different.
2592
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002593 *v:versionlong* *versionlong-variable*
Bram Moolenaar9b283522019-06-17 22:19:33 +02002594v:versionlong Like v:version, but also including the patchlevel in the last
2595 four digits. Version 8.1 with patch 123 has value 8010123.
2596 This can be used like this: >
2597 if v:versionlong >= 8010123
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002598< However, if there are gaps in the list of patches included
2599 this will not work well. This can happen if a recent patch
2600 was included into an older version, e.g. for a security fix.
2601 Use the has() function to make sure the patch is actually
2602 included.
2603
Bram Moolenaar14735512016-03-26 21:00:08 +01002604 *v:vim_did_enter* *vim_did_enter-variable*
2605v:vim_did_enter Zero until most of startup is done. It is set to one just
2606 before |VimEnter| autocommands are triggered.
2607
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 *v:warningmsg* *warningmsg-variable*
2609v:warningmsg Last given warning message. It's allowed to set this variable.
2610
Bram Moolenaar727c8762010-10-20 19:17:48 +02002611 *v:windowid* *windowid-variable*
2612v:windowid When any X11 based GUI is running or when running in a
2613 terminal and Vim connects to the X server (|-X|) this will be
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02002614 set to the window ID.
2615 When an MS-Windows GUI is running this will be set to the
2616 window handle.
2617 Otherwise the value is zero.
Bram Moolenaar7571d552016-08-18 22:54:46 +02002618 Note: for windows inside Vim use |winnr()| or |win_getid()|,
2619 see |window-ID|.
Bram Moolenaar727c8762010-10-20 19:17:48 +02002620
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621==============================================================================
26224. Builtin Functions *functions*
2623
2624See |function-list| for a list grouped by what the function is used for.
2625
Bram Moolenaar1cae5a02021-12-27 21:28:34 +00002626The alphabetic list of all builtin functions and details are in a separate
2627help file: |builtin-functions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628
2629==============================================================================
26305. Defining functions *user-functions*
2631
2632New functions can be defined. These can be called just like builtin
Bram Moolenaar0daafaa2022-09-04 17:45:43 +01002633functions. The function takes arguments, executes a sequence of Ex commands
2634and can return a value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635
Bram Moolenaar0daafaa2022-09-04 17:45:43 +01002636You can find most information about defining functions in |userfunc.txt|.
2637For Vim9 functions, which execute much faster, support type checking and more,
2638see |vim9.txt|.
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002639
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640==============================================================================
26416. Curly braces names *curly-braces-names*
2642
Bram Moolenaar84f72352012-03-11 15:57:40 +01002643In most places where you can use a variable, you can use a "curly braces name"
2644variable. This is a regular variable name with one or more expressions
2645wrapped in braces {} like this: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 my_{adjective}_variable
2647
Bram Moolenaar5da36052021-12-27 15:39:57 +00002648This only works in legacy Vim script, not in |Vim9| script.
2649
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650When Vim encounters this, it evaluates the expression inside the braces, puts
2651that in place of the expression, and re-interprets the whole as a variable
2652name. So in the above example, if the variable "adjective" was set to
2653"noisy", then the reference would be to "my_noisy_variable", whereas if
2654"adjective" was set to "quiet", then it would be to "my_quiet_variable".
2655
2656One application for this is to create a set of variables governed by an option
Bram Moolenaar58b85342016-08-14 19:54:54 +02002657value. For example, the statement >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 echo my_{&background}_message
2659
2660would output the contents of "my_dark_message" or "my_light_message" depending
2661on the current value of 'background'.
2662
2663You can use multiple brace pairs: >
2664 echo my_{adverb}_{adjective}_message
2665..or even nest them: >
2666 echo my_{ad{end_of_word}}_message
2667where "end_of_word" is either "verb" or "jective".
2668
2669However, the expression inside the braces must evaluate to a valid single
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002670variable name, e.g. this is invalid: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 :let foo='a + b'
2672 :echo c{foo}d
2673.. since the result of expansion is "ca + bd", which is not a variable name.
2674
2675 *curly-braces-function-names*
2676You can call and define functions by an evaluated name in a similar way.
2677Example: >
2678 :let func_end='whizz'
2679 :call my_func_{func_end}(parameter)
2680
2681This would call the function "my_func_whizz(parameter)".
2682
Bram Moolenaar84f72352012-03-11 15:57:40 +01002683This does NOT work: >
2684 :let i = 3
2685 :let @{i} = '' " error
2686 :echo @{i} " error
2687
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688==============================================================================
26897. Commands *expression-commands*
2690
Bram Moolenaar5da36052021-12-27 15:39:57 +00002691Note: in |Vim9| script `:let` is not used. `:var` is used for variable
2692declarations and assignments do not use a command. |vim9-declaration|
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002693
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694:let {var-name} = {expr1} *:let* *E18*
2695 Set internal variable {var-name} to the result of the
2696 expression {expr1}. The variable will get the type
2697 from the {expr}. If {var-name} didn't exist yet, it
2698 is created.
2699
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002700:let {var-name}[{idx}] = {expr1} *E689* *E1141*
Bram Moolenaar13065c42005-01-08 16:08:21 +00002701 Set a list item to the result of the expression
2702 {expr1}. {var-name} must refer to a list and {idx}
2703 must be a valid index in that list. For nested list
2704 the index can be repeated.
Bram Moolenaar446cb832008-06-24 21:56:24 +00002705 This cannot be used to add an item to a |List|.
Bram Moolenaar58b85342016-08-14 19:54:54 +02002706 This cannot be used to set a byte in a String. You
Bram Moolenaar446cb832008-06-24 21:56:24 +00002707 can do that like this: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002708 :let var = var[0:2] .. 'X' .. var[4:]
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002709< When {var-name} is a |Blob| then {idx} can be the
2710 length of the blob, in which case one byte is
2711 appended.
2712
Bram Moolenaara2baa732022-02-04 16:09:54 +00002713 *E711* *E719* *E1165* *E1166* *E1183*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002714:let {var-name}[{idx1}:{idx2}] = {expr1} *E708* *E709* *E710*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002715 Set a sequence of items in a |List| to the result of
2716 the expression {expr1}, which must be a list with the
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002717 correct number of items.
2718 {idx1} can be omitted, zero is used instead.
2719 {idx2} can be omitted, meaning the end of the list.
2720 When the selected range of items is partly past the
2721 end of the list, items will be added.
2722
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00002723 *:let+=* *:let-=* *:letstar=* *:let/=* *:let%=*
2724 *:let.=* *:let..=* *E734* *E985* *E1019*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002725:let {var} += {expr1} Like ":let {var} = {var} + {expr1}".
2726:let {var} -= {expr1} Like ":let {var} = {var} - {expr1}".
Bram Moolenaarff697e62019-02-12 22:28:33 +01002727:let {var} *= {expr1} Like ":let {var} = {var} * {expr1}".
2728:let {var} /= {expr1} Like ":let {var} = {var} / {expr1}".
2729:let {var} %= {expr1} Like ":let {var} = {var} % {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002730:let {var} .= {expr1} Like ":let {var} = {var} . {expr1}".
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02002731:let {var} ..= {expr1} Like ":let {var} = {var} .. {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002732 These fail if {var} was not set yet and when the type
2733 of {var} and {expr1} don't fit the operator.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02002734 `.=` is not supported with Vim script version 2 and
2735 later, see |vimscript-version|.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002736
2737
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738:let ${env-name} = {expr1} *:let-environment* *:let-$*
2739 Set environment variable {env-name} to the result of
2740 the expression {expr1}. The type is always String.
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002741
2742 On some systems making an environment variable empty
2743 causes it to be deleted. Many systems do not make a
2744 difference between an environment variable that is not
2745 set and an environment variable that is empty.
2746
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002747:let ${env-name} .= {expr1}
2748 Append {expr1} to the environment variable {env-name}.
2749 If the environment variable didn't exist yet this
2750 works like "=".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751
2752:let @{reg-name} = {expr1} *:let-register* *:let-@*
2753 Write the result of the expression {expr1} in register
2754 {reg-name}. {reg-name} must be a single letter, and
2755 must be the name of a writable register (see
2756 |registers|). "@@" can be used for the unnamed
2757 register, "@/" for the search pattern.
2758 If the result of {expr1} ends in a <CR> or <NL>, the
2759 register will be linewise, otherwise it will be set to
2760 characterwise.
2761 This can be used to clear the last search pattern: >
2762 :let @/ = ""
2763< This is different from searching for an empty string,
2764 that would match everywhere.
2765
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002766:let @{reg-name} .= {expr1}
Bram Moolenaar58b85342016-08-14 19:54:54 +02002767 Append {expr1} to register {reg-name}. If the
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002768 register was empty it's like setting it to {expr1}.
2769
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002770:let &{option-name} = {expr1} *:let-option* *:let-&*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 Set option {option-name} to the result of the
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002772 expression {expr1}. A String or Number value is
2773 always converted to the type of the option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 For an option local to a window or buffer the effect
2775 is just like using the |:set| command: both the local
Bram Moolenaara5fac542005-10-12 20:58:49 +00002776 value and the global value are changed.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002777 Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002778 :let &path = &path .. ',/usr/local/include'
Bram Moolenaar3df01732017-02-17 22:47:16 +01002779< This also works for terminal codes in the form t_xx.
2780 But only for alphanumerical names. Example: >
2781 :let &t_k1 = "\<Esc>[234;"
2782< When the code does not exist yet it will be created as
2783 a terminal key code, there is no error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002785:let &{option-name} .= {expr1}
2786 For a string option: Append {expr1} to the value.
2787 Does not insert a comma like |:set+=|.
2788
2789:let &{option-name} += {expr1}
2790:let &{option-name} -= {expr1}
2791 For a number or boolean option: Add or subtract
2792 {expr1}.
2793
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794:let &l:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002795:let &l:{option-name} .= {expr1}
2796:let &l:{option-name} += {expr1}
2797:let &l:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 Like above, but only set the local value of an option
2799 (if there is one). Works like |:setlocal|.
2800
2801:let &g:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002802:let &g:{option-name} .= {expr1}
2803:let &g:{option-name} += {expr1}
2804:let &g:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 Like above, but only set the global value of an option
2806 (if there is one). Works like |:setglobal|.
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002807 *E1093*
Bram Moolenaar13065c42005-01-08 16:08:21 +00002808:let [{name1}, {name2}, ...] = {expr1} *:let-unpack* *E687* *E688*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002809 {expr1} must evaluate to a |List|. The first item in
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002810 the list is assigned to {name1}, the second item to
2811 {name2}, etc.
2812 The number of names must match the number of items in
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002813 the |List|.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002814 Each name can be one of the items of the ":let"
2815 command as mentioned above.
2816 Example: >
2817 :let [s, item] = GetItem(s)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002818< Detail: {expr1} is evaluated first, then the
2819 assignments are done in sequence. This matters if
2820 {name2} depends on {name1}. Example: >
2821 :let x = [0, 1]
2822 :let i = 0
2823 :let [i, x[i]] = [1, 2]
2824 :echo x
2825< The result is [0, 2].
2826
2827:let [{name1}, {name2}, ...] .= {expr1}
2828:let [{name1}, {name2}, ...] += {expr1}
2829:let [{name1}, {name2}, ...] -= {expr1}
2830 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002831 |List| item.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002832
Bram Moolenaard1caa942020-04-10 22:10:56 +02002833:let [{name}, ..., ; {lastname}] = {expr1} *E452*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002834 Like |:let-unpack| above, but the |List| may have more
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002835 items than there are names. A list of the remaining
2836 items is assigned to {lastname}. If there are no
2837 remaining items {lastname} is set to an empty list.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002838 Example: >
2839 :let [a, b; rest] = ["aval", "bval", 3, 4]
2840<
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002841:let [{name}, ..., ; {lastname}] .= {expr1}
2842:let [{name}, ..., ; {lastname}] += {expr1}
2843:let [{name}, ..., ; {lastname}] -= {expr1}
2844 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002845 |List| item.
Bram Moolenaar4a748032010-09-30 21:47:56 +02002846
Bram Moolenaar24582002019-07-21 14:14:26 +02002847 *:let=<<* *:let-heredoc*
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002848 *E990* *E991* *E172* *E221* *E1145*
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002849:let {var-name} =<< [trim] [eval] {endmarker}
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002850text...
2851text...
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002852{endmarker}
Bram Moolenaare46a4402020-06-30 20:38:27 +02002853 Set internal variable {var-name} to a |List|
2854 containing the lines of text bounded by the string
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002855 {endmarker}.
2856
2857 If "eval" is not specified, then each line of text is
Bram Moolenaard899e512022-05-07 21:54:03 +01002858 used as a |literal-string|, except that single quotes
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01002859 does not need to be doubled.
Bram Moolenaard899e512022-05-07 21:54:03 +01002860 If "eval" is specified, then any Vim expression in the
2861 form {expr} is evaluated and the result replaces the
2862 expression, like with |interp-string|.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002863 Example where $HOME is expanded: >
2864 let lines =<< trim eval END
2865 some text
Bram Moolenaard899e512022-05-07 21:54:03 +01002866 See the file {$HOME}/.vimrc
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002867 more text
2868 END
2869< There can be multiple Vim expressions in a single line
2870 but an expression cannot span multiple lines. If any
2871 expression evaluation fails, then the assignment fails.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002872
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002873 {endmarker} must not contain white space.
2874 {endmarker} cannot start with a lower case character.
2875 The last line should end only with the {endmarker}
2876 string without any other character. Watch out for
2877 white space after {endmarker}!
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002878
Bram Moolenaare7eb9272019-06-24 00:58:07 +02002879 Without "trim" any white space characters in the lines
2880 of text are preserved. If "trim" is specified before
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002881 {endmarker}, then indentation is stripped so you can
2882 do: >
Bram Moolenaare7eb9272019-06-24 00:58:07 +02002883 let text =<< trim END
2884 if ok
2885 echo 'done'
2886 endif
2887 END
2888< Results in: ["if ok", " echo 'done'", "endif"]
2889 The marker must line up with "let" and the indentation
2890 of the first line is removed from all the text lines.
2891 Specifically: all the leading indentation exactly
2892 matching the leading indentation of the first
2893 non-empty text line is stripped from the input lines.
2894 All leading indentation exactly matching the leading
2895 indentation before `let` is stripped from the line
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002896 containing {endmarker}. Note that the difference
2897 between space and tab matters here.
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002898
2899 If {var-name} didn't exist yet, it is created.
2900 Cannot be followed by another command, but can be
2901 followed by a comment.
2902
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002903 To avoid line continuation to be applied, consider
2904 adding 'C' to 'cpoptions': >
2905 set cpo+=C
2906 let var =<< END
2907 \ leading backslash
2908 END
2909 set cpo-=C
2910<
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002911 Examples: >
2912 let var1 =<< END
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002913 Sample text 1
2914 Sample text 2
2915 Sample text 3
2916 END
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002917
2918 let data =<< trim DATA
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002919 1 2 3 4
2920 5 6 7 8
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002921 DATA
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002922
2923 let code =<< trim eval CODE
Bram Moolenaard899e512022-05-07 21:54:03 +01002924 let v = {10 + 20}
2925 let h = "{$HOME}"
2926 let s = "{Str1()} abc {Str2()}"
2927 let n = {MyFunc(3, 4)}
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002928 CODE
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002929<
Bram Moolenaar4a748032010-09-30 21:47:56 +02002930 *E121*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002931:let {var-name} .. List the value of variable {var-name}. Multiple
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00002932 variable names may be given. Special names recognized
2933 here: *E738*
Bram Moolenaarca003e12006-03-17 23:19:38 +00002934 g: global variables
2935 b: local buffer variables
2936 w: local window variables
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002937 t: local tab page variables
Bram Moolenaarca003e12006-03-17 23:19:38 +00002938 s: script-local variables
2939 l: local function variables
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00002940 v: Vim variables.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002941 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00002943:let List the values of all variables. The type of the
2944 variable is indicated before the value:
2945 <nothing> String
2946 # Number
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002947 * Funcref
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002948 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00002950:unl[et][!] {name} ... *:unlet* *:unl* *E108* *E795* *E1081*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00002951 Remove the internal variable {name}. Several variable
2952 names can be given, they are all removed. The name
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002953 may also be a |List| or |Dictionary| item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 With [!] no error message is given for non-existing
2955 variables.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002956 One or more items from a |List| can be removed: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00002957 :unlet list[3] " remove fourth item
2958 :unlet list[3:] " remove fourth item to last
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002959< One item from a |Dictionary| can be removed at a time: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00002960 :unlet dict['two']
2961 :unlet dict.two
Bram Moolenaarc236c162008-07-13 17:41:49 +00002962< This is especially useful to clean up used global
2963 variables and script-local variables (these are not
2964 deleted when the script ends). Function-local
2965 variables are automatically deleted when the function
2966 ends.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967
Bram Moolenaar137374f2018-05-13 15:59:50 +02002968:unl[et] ${env-name} ... *:unlet-environment* *:unlet-$*
2969 Remove environment variable {env-name}.
2970 Can mix {name} and ${env-name} in one :unlet command.
2971 No error message is given for a non-existing
2972 variable, also without !.
2973 If the system does not support deleting an environment
Bram Moolenaar9937a052019-06-15 15:45:06 +02002974 variable, it is made empty.
Bram Moolenaar137374f2018-05-13 15:59:50 +02002975
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00002976 *:cons* *:const* *E1018*
Bram Moolenaar9937a052019-06-15 15:45:06 +02002977:cons[t] {var-name} = {expr1}
2978:cons[t] [{name1}, {name2}, ...] = {expr1}
Bram Moolenaar9937a052019-06-15 15:45:06 +02002979:cons[t] [{name}, ..., ; {lastname}] = {expr1}
2980:cons[t] {var-name} =<< [trim] {marker}
2981text...
2982text...
2983{marker}
2984 Similar to |:let|, but additionally lock the variable
2985 after setting the value. This is the same as locking
2986 the variable with |:lockvar| just after |:let|, thus: >
2987 :const x = 1
2988< is equivalent to: >
2989 :let x = 1
Bram Moolenaar021bda52020-08-17 21:07:22 +02002990 :lockvar! x
Bram Moolenaara187c432020-09-16 21:08:28 +02002991< NOTE: in Vim9 script `:const` works differently, see
2992 |vim9-const|
2993 This is useful if you want to make sure the variable
Bram Moolenaar021bda52020-08-17 21:07:22 +02002994 is not modified. If the value is a List or Dictionary
2995 literal then the items also cannot be changed: >
2996 const ll = [1, 2, 3]
2997 let ll[1] = 5 " Error!
Bram Moolenaar6e649222021-10-04 21:32:54 +01002998< Nested references are not locked: >
Bram Moolenaar021bda52020-08-17 21:07:22 +02002999 let lvar = ['a']
3000 const lconst = [0, lvar]
3001 let lconst[0] = 2 " Error!
3002 let lconst[1][0] = 'b' " OK
3003< *E995*
Bram Moolenaar9b283522019-06-17 22:19:33 +02003004 |:const| does not allow to for changing a variable: >
Bram Moolenaar9937a052019-06-15 15:45:06 +02003005 :let x = 1
3006 :const x = 2 " Error!
Bram Moolenaar1c196e72019-06-16 15:41:58 +02003007< *E996*
3008 Note that environment variables, option values and
3009 register values cannot be used here, since they cannot
3010 be locked.
3011
Bram Moolenaar85850f32019-07-19 22:05:51 +02003012:cons[t]
3013:cons[t] {var-name}
3014 If no argument is given or only {var-name} is given,
3015 the behavior is the same as |:let|.
3016
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003017:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
3018 Lock the internal variable {name}. Locking means that
3019 it can no longer be changed (until it is unlocked).
3020 A locked variable can be deleted: >
3021 :lockvar v
Bram Moolenaardad44732021-03-31 20:07:33 +02003022 :let v = 'asdf' " fails!
3023 :unlet v " works
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003024< *E741* *E940* *E1118* *E1119* *E1120* *E1121* *E1122*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003025 If you try to change a locked variable you get an
Bram Moolenaare7877fe2017-02-20 22:35:33 +01003026 error message: "E741: Value is locked: {name}".
3027 If you try to lock or unlock a built-in variable you
3028 get an error message: "E940: Cannot lock or unlock
3029 variable {name}".
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003030
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003031 [depth] is relevant when locking a |List| or
3032 |Dictionary|. It specifies how deep the locking goes:
Bram Moolenaara187c432020-09-16 21:08:28 +02003033 0 Lock the variable {name} but not its
3034 value.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003035 1 Lock the |List| or |Dictionary| itself,
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003036 cannot add or remove items, but can
3037 still change their values.
3038 2 Also lock the values, cannot change
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003039 the items. If an item is a |List| or
3040 |Dictionary|, cannot add or remove
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003041 items, but can still change the
3042 values.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003043 3 Like 2 but for the |List| /
3044 |Dictionary| in the |List| /
3045 |Dictionary|, one level deeper.
3046 The default [depth] is 2, thus when {name} is a |List|
3047 or |Dictionary| the values cannot be changed.
Bram Moolenaara187c432020-09-16 21:08:28 +02003048
3049 Example with [depth] 0: >
3050 let mylist = [1, 2, 3]
3051 lockvar 0 mylist
Bram Moolenaar6e649222021-10-04 21:32:54 +01003052 let mylist[0] = 77 " OK
3053 call add(mylist, 4] " OK
Bram Moolenaara187c432020-09-16 21:08:28 +02003054 let mylist = [7, 8, 9] " Error!
3055< *E743*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003056 For unlimited depth use [!] and omit [depth].
3057 However, there is a maximum depth of 100 to catch
3058 loops.
3059
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003060 Note that when two variables refer to the same |List|
3061 and you lock one of them, the |List| will also be
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003062 locked when used through the other variable.
3063 Example: >
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003064 :let l = [0, 1, 2, 3]
3065 :let cl = l
3066 :lockvar l
3067 :let cl[1] = 99 " won't work!
3068< You may want to make a copy of a list to avoid this.
3069 See |deepcopy()|.
3070
3071
Bram Moolenaara2baa732022-02-04 16:09:54 +00003072:unlo[ckvar][!] [depth] {name} ... *:unlockvar* *:unlo* *E1246*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003073 Unlock the internal variable {name}. Does the
3074 opposite of |:lockvar|.
3075
Bram Moolenaar61da1bf2019-06-06 12:14:49 +02003076:if {expr1} *:if* *:end* *:endif* *:en* *E171* *E579* *E580*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003077:en[dif] Execute the commands until the next matching `:else`
3078 or `:endif` if {expr1} evaluates to non-zero.
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003079 Although the short forms work, it is recommended to
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003080 always use `:endif` to avoid confusion and to make
3081 auto-indenting work properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082
3083 From Vim version 4.5 until 5.0, every Ex command in
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003084 between the `:if` and `:endif` is ignored. These two
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 commands were just to allow for future expansions in a
Bram Moolenaar85084ef2016-01-17 22:26:33 +01003086 backward compatible way. Nesting was allowed. Note
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003087 that any `:else` or `:elseif` was ignored, the `else`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 part was not executed either.
3089
3090 You can use this to remain compatible with older
3091 versions: >
3092 :if version >= 500
3093 : version-5-specific-commands
3094 :endif
3095< The commands still need to be parsed to find the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003096 `endif`. Sometimes an older Vim has a problem with a
3097 new command. For example, `:silent` is recognized as
3098 a `:substitute` command. In that case `:execute` can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 avoid problems: >
3100 :if version >= 600
3101 : execute "silent 1,$delete"
3102 :endif
3103<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003104 In |Vim9| script `:endif` cannot be shortened, to
3105 improve script readability.
3106 NOTE: The `:append` and `:insert` commands don't work
3107 properly in between `:if` and `:endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108
3109 *:else* *:el* *E581* *E583*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003110:el[se] Execute the commands until the next matching `:else`
3111 or `:endif` if they previously were not being
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 executed.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003113 In |Vim9| script `:else` cannot be shortened, to
3114 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115
3116 *:elseif* *:elsei* *E582* *E584*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003117:elsei[f] {expr1} Short for `:else` `:if`, with the addition that there
3118 is no extra `:endif`.
3119 In |Vim9| script `:elseif` cannot be shortened, to
3120 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121
3122:wh[ile] {expr1} *:while* *:endwhile* *:wh* *:endw*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003123 *E170* *E585* *E588* *E733*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003124:endw[hile] Repeat the commands between `:while` and `:endwhile`,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 as long as {expr1} evaluates to non-zero.
3126 When an error is detected from a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003127 loop, execution continues after the `endwhile`.
Bram Moolenaar12805862005-01-05 22:16:17 +00003128 Example: >
3129 :let lnum = 1
3130 :while lnum <= line("$")
3131 :call FixLine(lnum)
3132 :let lnum = lnum + 1
3133 :endwhile
3134<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003135 In |Vim9| script `:while` and `:endwhile` cannot be
3136 shortened, to improve script readability.
3137 NOTE: The `:append` and `:insert` commands don't work
3138 properly inside a `:while` and `:for` loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003140:for {var} in {object} *:for* *E690* *E732*
Bram Moolenaar12805862005-01-05 22:16:17 +00003141:endfo[r] *:endfo* *:endfor*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003142 Repeat the commands between `:for` and `:endfor` for
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01003143 each item in {object}. {object} can be a |List|,
3144 a |Blob| or a |String|. *E1177*
Bram Moolenaar5da36052021-12-27 15:39:57 +00003145
3146 Variable {var} is set to the value of each item.
3147 In |Vim9| script the loop variable must not have been
3148 declared yet, unless when it is a
3149 global/window/tab/buffer variable.
3150
3151 When an error is detected for a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003152 loop, execution continues after the `endfor`.
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003153 Changing {object} inside the loop affects what items
3154 are used. Make a copy if this is unwanted: >
Bram Moolenaarde8866b2005-01-06 23:24:37 +00003155 :for item in copy(mylist)
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003156<
Bram Moolenaar5da36052021-12-27 15:39:57 +00003157 When {object} is a |List| and not making a copy, in
3158 legacy script Vim stores a reference to the next item
3159 in the |List| before executing the commands with the
3160 current item. Thus the current item can be removed
3161 without effect. Removing any later item means it will
3162 not be found. Thus the following example works (an
3163 inefficient way to make a |List| empty): >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003164 for item in mylist
3165 call remove(mylist, 0)
3166 endfor
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003167< Note that reordering the |List| (e.g., with sort() or
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003168 reverse()) may have unexpected effects.
Bram Moolenaar5da36052021-12-27 15:39:57 +00003169 In |Vim9| script the index is used. If an item before
3170 the current one is deleted the next item will be
3171 skipped.
Bram Moolenaar12805862005-01-05 22:16:17 +00003172
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003173 When {object} is a |Blob|, Vim always makes a copy to
3174 iterate over. Unlike with |List|, modifying the
3175 |Blob| does not affect the iteration.
3176
Bram Moolenaar9b03d3e2022-08-30 20:26:34 +01003177 When {object} is a |String| each item is a string with
3178 one character, plus any combining characters.
3179
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003180 In |Vim9| script `:endfor` cannot be shortened, to
3181 improve script readability.
3182
Bram Moolenaar12805862005-01-05 22:16:17 +00003183:for [{var1}, {var2}, ...] in {listlist}
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003184:endfo[r] *E1140*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003185 Like `:for` above, but each item in {listlist} must be
Bram Moolenaar12805862005-01-05 22:16:17 +00003186 a list, of which each item is assigned to {var1},
3187 {var2}, etc. Example: >
3188 :for [lnum, col] in [[1, 3], [2, 5], [3, 8]]
3189 :echo getline(lnum)[col]
3190 :endfor
3191<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 *:continue* *:con* *E586*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003193:con[tinue] When used inside a `:while` or `:for` loop, jumps back
Bram Moolenaar12805862005-01-05 22:16:17 +00003194 to the start of the loop.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003195 If it is used after a `:try` inside the loop but
3196 before the matching `:finally` (if present), the
3197 commands following the `:finally` up to the matching
3198 `:endtry` are executed first. This process applies to
3199 all nested `:try`s inside the loop. The outermost
3200 `:endtry` then jumps back to the start of the loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003202 In |Vim9| script `:cont` is the shortest form, to
3203 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 *:break* *:brea* *E587*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003205:brea[k] When used inside a `:while` or `:for` loop, skips to
3206 the command after the matching `:endwhile` or
3207 `:endfor`.
3208 If it is used after a `:try` inside the loop but
3209 before the matching `:finally` (if present), the
3210 commands following the `:finally` up to the matching
3211 `:endtry` are executed first. This process applies to
3212 all nested `:try`s inside the loop. The outermost
3213 `:endtry` then jumps to the command after the loop.
3214
3215 In |Vim9| script `:break` cannot be shortened, to
3216 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003218:try *:try* *:endt* *:endtry*
3219 *E600* *E601* *E602* *E1032*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220:endt[ry] Change the error handling for the commands between
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003221 `:try` and `:endtry` including everything being
3222 executed across `:source` commands, function calls,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 or autocommand invocations.
3224
3225 When an error or interrupt is detected and there is
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003226 a `:finally` command following, execution continues
3227 after the `:finally`. Otherwise, or when the
3228 `:endtry` is reached thereafter, the next
3229 (dynamically) surrounding `:try` is checked for
3230 a corresponding `:finally` etc. Then the script
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003231 processing is terminated. Whether a function
3232 definition has an "abort" argument does not matter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 Example: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003234 try | call Unknown() | finally | echomsg "cleanup" | endtry
3235 echomsg "not reached"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236<
3237 Moreover, an error or interrupt (dynamically) inside
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003238 `:try` and `:endtry` is converted to an exception. It
3239 can be caught as if it were thrown by a `:throw`
3240 command (see `:catch`). In this case, the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 processing is not terminated.
3242
3243 The value "Vim:Interrupt" is used for an interrupt
3244 exception. An error in a Vim command is converted
3245 to a value of the form "Vim({command}):{errmsg}",
3246 other errors are converted to a value of the form
3247 "Vim:{errmsg}". {command} is the full command name,
3248 and {errmsg} is the message that is displayed if the
3249 error exception is not caught, always beginning with
3250 the error number.
3251 Examples: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003252 try | sleep 100 | catch /^Vim:Interrupt$/ | endtry
3253 try | edit | catch /^Vim(edit):E\d\+/ | echo "error" | endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003255 In |Vim9| script `:endtry` cannot be shortened, to
3256 improve script readability.
3257
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003258 *:cat* *:catch*
3259 *E603* *E604* *E605* *E654* *E1033*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003260:cat[ch] /{pattern}/ The following commands until the next `:catch`,
3261 `:finally`, or `:endtry` that belongs to the same
3262 `:try` as the `:catch` are executed when an exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 matching {pattern} is being thrown and has not yet
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003264 been caught by a previous `:catch`. Otherwise, these
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 commands are skipped.
3266 When {pattern} is omitted all errors are caught.
3267 Examples: >
Bram Moolenaar647e24b2019-03-17 16:39:46 +01003268 :catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C)
3269 :catch /^Vim\%((\a\+)\)\=:E/ " catch all Vim errors
3270 :catch /^Vim\%((\a\+)\)\=:/ " catch errors and interrupts
3271 :catch /^Vim(write):/ " catch all errors in :write
3272 :catch /^Vim\%((\a\+)\)\=:E123:/ " catch error E123
3273 :catch /my-exception/ " catch user exception
3274 :catch /.*/ " catch everything
3275 :catch " same as /.*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276<
3277 Another character can be used instead of / around the
3278 {pattern}, so long as it does not have a special
3279 meaning (e.g., '|' or '"') and doesn't occur inside
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003280 {pattern}. *E1067*
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02003281 Information about the exception is available in
3282 |v:exception|. Also see |throw-variables|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 NOTE: It is not reliable to ":catch" the TEXT of
3284 an error message because it may vary in different
3285 locales.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003286 In |Vim9| script `:catch` cannot be shortened, to
3287 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288
3289 *:fina* *:finally* *E606* *E607*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003290:fina[lly] The following commands until the matching `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 are executed whenever the part between the matching
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003292 `:try` and the `:finally` is left: either by falling
3293 through to the `:finally` or by a `:continue`,
3294 `:break`, `:finish`, or `:return`, or by an error or
3295 interrupt or exception (see `:throw`).
3296
3297 In |Vim9| script `:finally` cannot be shortened, to
3298 improve script readability and avoid confusion with
3299 `:final`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003301 *:th* *:throw* *E608* *E1129*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302:th[row] {expr1} The {expr1} is evaluated and thrown as an exception.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003303 If the ":throw" is used after a `:try` but before the
3304 first corresponding `:catch`, commands are skipped
3305 until the first `:catch` matching {expr1} is reached.
3306 If there is no such `:catch` or if the ":throw" is
3307 used after a `:catch` but before the `:finally`, the
3308 commands following the `:finally` (if present) up to
3309 the matching `:endtry` are executed. If the `:throw`
3310 is after the `:finally`, commands up to the `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 are skipped. At the ":endtry", this process applies
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003312 again for the next dynamically surrounding `:try`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 (which may be found in a calling function or sourcing
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003314 script), until a matching `:catch` has been found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 If the exception is not caught, the command processing
3316 is terminated.
3317 Example: >
3318 :try | throw "oops" | catch /^oo/ | echo "caught" | endtry
Bram Moolenaar662db672011-03-22 14:05:35 +01003319< Note that "catch" may need to be on a separate line
3320 for when an error causes the parsing to skip the whole
3321 line and not see the "|" that separates the commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003323 In |Vim9| script `:throw` cannot be shortened, to
3324 improve script readability.
3325
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 *:ec* *:echo*
3327:ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The
3328 first {expr1} starts on a new line.
3329 Also see |:comment|.
3330 Use "\n" to start a new line. Use "\r" to move the
3331 cursor to the first column.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003332 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 Cannot be followed by a comment.
3334 Example: >
3335 :echo "the value of 'shell' is" &shell
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003336< *:echo-redraw*
3337 A later redraw may make the message disappear again.
3338 And since Vim mostly postpones redrawing until it's
3339 finished with a sequence of commands this happens
3340 quite often. To avoid that a command from before the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003341 `:echo` causes a redraw afterwards (redraws are often
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003342 postponed until you type something), force a redraw
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003343 with the `:redraw` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 :new | redraw | echo "there is a new window"
3345<
3346 *:echon*
3347:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
3348 |:comment|.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003349 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 Cannot be followed by a comment.
3351 Example: >
3352 :echon "the value of 'shell' is " &shell
3353<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003354 Note the difference between using `:echo`, which is a
3355 Vim command, and `:!echo`, which is an external shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 command: >
3357 :!echo % --> filename
3358< The arguments of ":!" are expanded, see |:_%|. >
3359 :!echo "%" --> filename or "filename"
3360< Like the previous example. Whether you see the double
3361 quotes or not depends on your 'shell'. >
3362 :echo % --> nothing
3363< The '%' is an illegal character in an expression. >
3364 :echo "%" --> %
3365< This just echoes the '%' character. >
3366 :echo expand("%") --> filename
3367< This calls the expand() function to expand the '%'.
3368
3369 *:echoh* *:echohl*
3370:echoh[l] {name} Use the highlight group {name} for the following
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003371 `:echo`, `:echon` and `:echomsg` commands. Also used
3372 for the `input()` prompt. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 :echohl WarningMsg | echo "Don't panic!" | echohl None
3374< Don't forget to set the group back to "None",
3375 otherwise all following echo's will be highlighted.
3376
3377 *:echom* *:echomsg*
3378:echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
3379 message in the |message-history|.
3380 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003381 `:echo` command. But unprintable characters are
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 displayed, not interpreted.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003383 The parsing works slightly different from `:echo`,
3384 more like `:execute`. All the expressions are first
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003385 evaluated and concatenated before echoing anything.
Bram Moolenaar461a7fc2018-12-22 13:28:07 +01003386 If expressions does not evaluate to a Number or
3387 String, string() is used to turn it into a string.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003388 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 Example: >
3390 :echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see."
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003391< See |:echo-redraw| to avoid the message disappearing
3392 when the screen is redrawn.
Bram Moolenaar37fef162022-08-29 18:16:32 +01003393
3394 *:echow* *:echowin* *:echowindow*
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003395:[N]echow[indow] {expr1} ..
Bram Moolenaar37fef162022-08-29 18:16:32 +01003396 Like |:echomsg| but when the messages popup window is
3397 available the message is displayed there. This means
3398 it will show for three seconds and avoid a
Bram Moolenaar9b03d3e2022-08-30 20:26:34 +01003399 |hit-enter| prompt. If you want to hide it before
3400 that, press Esc in Normal mode (when it would
Bram Moolenaar71b6d332022-09-10 13:13:14 +01003401 otherwise beep). If it disappears too soon you can
3402 use `:messages` to see the text.
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003403 When [N] is given then the window will show up for
3404 this number of seconds. The last `:echowindow` with a
3405 count matters, it is used once only.
Bram Moolenaar37fef162022-08-29 18:16:32 +01003406 The message window is available when Vim was compiled
3407 with the +timer and the +popupwin features.
3408
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 *:echoe* *:echoerr*
3410:echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
3411 message in the |message-history|. When used in a
3412 script or function the line number will be added.
3413 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003414 `:echomsg` command. When used inside a try conditional,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 the message is raised as an error exception instead
3416 (see |try-echoerr|).
3417 Example: >
3418 :echoerr "This script just failed!"
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003419< If you just want a highlighted message use `:echohl`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 And to get a beep: >
3421 :exe "normal \<Esc>"
Bram Moolenaar4c868302021-03-22 16:19:45 +01003422
3423:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3424 Intended for testing: works like `:echomsg` but when
3425 running in the GUI and started from a terminal write
3426 the text to stdout.
3427
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003428 *:eval*
3429:eval {expr} Evaluate {expr} and discard the result. Example: >
3430 :eval Getlist()->Filter()->append('$')
3431
3432< The expression is supposed to have a side effect,
3433 since the resulting value is not used. In the example
3434 the `append()` call appends the List with text to the
3435 buffer. This is similar to `:call` but works with any
3436 expression.
Bram Moolenaara2baa732022-02-04 16:09:54 +00003437 In |Vim9| script an expression without an effect will
3438 result in error *E1207* . This should help noticing
3439 mistakes.
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003440
3441 The command can be shortened to `:ev` or `:eva`, but
3442 these are hard to recognize and therefore not to be
3443 used.
3444
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003445 The command cannot be followed by "|" and another
3446 command, since "|" is seen as part of the expression.
3447
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003448
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 *:exe* *:execute*
3450:exe[cute] {expr1} .. Executes the string that results from the evaluation
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003451 of {expr1} as an Ex command.
3452 Multiple arguments are concatenated, with a space in
Bram Moolenaar7e6a5152021-01-02 16:39:53 +01003453 between. To avoid the extra space use the ".."
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003454 operator to concatenate strings into one argument.
3455 {expr1} is used as the processed command, command line
3456 editing keys are not recognized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 Cannot be followed by a comment.
3458 Examples: >
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003459 :execute "buffer" nextbuf
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003460 :execute "normal" count .. "w"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461<
3462 ":execute" can be used to append a command to commands
3463 that don't accept a '|'. Example: >
3464 :execute '!ls' | echo "theend"
3465
3466< ":execute" is also a nice way to avoid having to type
3467 control characters in a Vim script for a ":normal"
3468 command: >
3469 :execute "normal ixxx\<Esc>"
3470< This has an <Esc> character, see |expr-string|.
3471
Bram Moolenaar446cb832008-06-24 21:56:24 +00003472 Be careful to correctly escape special characters in
3473 file names. The |fnameescape()| function can be used
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003474 for Vim commands, |shellescape()| for |:!| commands.
3475 Examples: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003476 :execute "e " .. fnameescape(filename)
3477 :execute "!ls " .. shellescape(filename, 1)
Bram Moolenaar446cb832008-06-24 21:56:24 +00003478<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 Note: The executed string may be any command-line, but
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01003480 starting or ending "if", "while" and "for" does not
3481 always work, because when commands are skipped the
3482 ":execute" is not evaluated and Vim loses track of
3483 where blocks start and end. Also "break" and
3484 "continue" should not be inside ":execute".
3485 This example does not work, because the ":execute" is
3486 not evaluated and Vim does not see the "while", and
3487 gives an error for finding an ":endwhile": >
3488 :if 0
3489 : execute 'while i > 5'
3490 : echo "test"
3491 : endwhile
3492 :endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493<
3494 It is allowed to have a "while" or "if" command
3495 completely in the executed string: >
3496 :execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
3497<
3498
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003499 *:exe-comment*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 ":execute", ":echo" and ":echon" cannot be followed by
3501 a comment directly, because they see the '"' as the
3502 start of a string. But, you can use '|' followed by a
3503 comment. Example: >
3504 :echo "foo" | "this is a comment
3505
3506==============================================================================
35078. Exception handling *exception-handling*
3508
3509The Vim script language comprises an exception handling feature. This section
3510explains how it can be used in a Vim script.
3511
3512Exceptions may be raised by Vim on an error or on interrupt, see
3513|catch-errors| and |catch-interrupt|. You can also explicitly throw an
3514exception by using the ":throw" command, see |throw-catch|.
3515
3516
3517TRY CONDITIONALS *try-conditionals*
3518
3519Exceptions can be caught or can cause cleanup code to be executed. You can
3520use a try conditional to specify catch clauses (that catch exceptions) and/or
3521a finally clause (to be executed for cleanup).
3522 A try conditional begins with a |:try| command and ends at the matching
3523|:endtry| command. In between, you can use a |:catch| command to start
3524a catch clause, or a |:finally| command to start a finally clause. There may
3525be none or multiple catch clauses, but there is at most one finally clause,
3526which must not be followed by any catch clauses. The lines before the catch
3527clauses and the finally clause is called a try block. >
3528
3529 :try
Bram Moolenaar446cb832008-06-24 21:56:24 +00003530 : ...
3531 : ... TRY BLOCK
3532 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003534 : ...
3535 : ... CATCH CLAUSE
3536 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003538 : ...
3539 : ... CATCH CLAUSE
3540 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 :finally
Bram Moolenaar446cb832008-06-24 21:56:24 +00003542 : ...
3543 : ... FINALLY CLAUSE
3544 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 :endtry
3546
3547The try conditional allows to watch code for exceptions and to take the
3548appropriate actions. Exceptions from the try block may be caught. Exceptions
3549from the try block and also the catch clauses may cause cleanup actions.
3550 When no exception is thrown during execution of the try block, the control
3551is transferred to the finally clause, if present. After its execution, the
3552script continues with the line following the ":endtry".
3553 When an exception occurs during execution of the try block, the remaining
3554lines in the try block are skipped. The exception is matched against the
3555patterns specified as arguments to the ":catch" commands. The catch clause
3556after the first matching ":catch" is taken, other catch clauses are not
3557executed. The catch clause ends when the next ":catch", ":finally", or
3558":endtry" command is reached - whatever is first. Then, the finally clause
3559(if present) is executed. When the ":endtry" is reached, the script execution
3560continues in the following line as usual.
3561 When an exception that does not match any of the patterns specified by the
3562":catch" commands is thrown in the try block, the exception is not caught by
3563that try conditional and none of the catch clauses is executed. Only the
3564finally clause, if present, is taken. The exception pends during execution of
3565the finally clause. It is resumed at the ":endtry", so that commands after
3566the ":endtry" are not executed and the exception might be caught elsewhere,
3567see |try-nesting|.
3568 When during execution of a catch clause another exception is thrown, the
Bram Moolenaar58b85342016-08-14 19:54:54 +02003569remaining lines in that catch clause are not executed. The new exception is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570not matched against the patterns in any of the ":catch" commands of the same
3571try conditional and none of its catch clauses is taken. If there is, however,
3572a finally clause, it is executed, and the exception pends during its
3573execution. The commands following the ":endtry" are not executed. The new
3574exception might, however, be caught elsewhere, see |try-nesting|.
3575 When during execution of the finally clause (if present) an exception is
Bram Moolenaar58b85342016-08-14 19:54:54 +02003576thrown, the remaining lines in the finally clause are skipped. If the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577clause has been taken because of an exception from the try block or one of the
3578catch clauses, the original (pending) exception is discarded. The commands
3579following the ":endtry" are not executed, and the exception from the finally
3580clause is propagated and can be caught elsewhere, see |try-nesting|.
3581
3582The finally clause is also executed, when a ":break" or ":continue" for
3583a ":while" loop enclosing the complete try conditional is executed from the
3584try block or a catch clause. Or when a ":return" or ":finish" is executed
3585from the try block or a catch clause of a try conditional in a function or
3586sourced script, respectively. The ":break", ":continue", ":return", or
3587":finish" pends during execution of the finally clause and is resumed when the
3588":endtry" is reached. It is, however, discarded when an exception is thrown
3589from the finally clause.
3590 When a ":break" or ":continue" for a ":while" loop enclosing the complete
3591try conditional or when a ":return" or ":finish" is encountered in the finally
3592clause, the rest of the finally clause is skipped, and the ":break",
3593":continue", ":return" or ":finish" is executed as usual. If the finally
3594clause has been taken because of an exception or an earlier ":break",
3595":continue", ":return", or ":finish" from the try block or a catch clause,
3596this pending exception or command is discarded.
3597
3598For examples see |throw-catch| and |try-finally|.
3599
3600
Bram Moolenaar76db9e02022-11-09 21:21:04 +00003601NESTING OF TRY CONDITIONALS *try-nesting*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602
3603Try conditionals can be nested arbitrarily. That is, a complete try
3604conditional can be put into the try block, a catch clause, or the finally
3605clause of another try conditional. If the inner try conditional does not
3606catch an exception thrown in its try block or throws a new exception from one
3607of its catch clauses or its finally clause, the outer try conditional is
3608checked according to the rules above. If the inner try conditional is in the
3609try block of the outer try conditional, its catch clauses are checked, but
Bram Moolenaar58b85342016-08-14 19:54:54 +02003610otherwise only the finally clause is executed. It does not matter for
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611nesting, whether the inner try conditional is directly contained in the outer
3612one, or whether the outer one sources a script or calls a function containing
3613the inner try conditional.
3614
3615When none of the active try conditionals catches an exception, just their
3616finally clauses are executed. Thereafter, the script processing terminates.
3617An error message is displayed in case of an uncaught exception explicitly
3618thrown by a ":throw" command. For uncaught error and interrupt exceptions
3619implicitly raised by Vim, the error message(s) or interrupt message are shown
3620as usual.
3621
3622For examples see |throw-catch|.
3623
3624
3625EXAMINING EXCEPTION HANDLING CODE *except-examine*
3626
3627Exception handling code can get tricky. If you are in doubt what happens, set
3628'verbose' to 13 or use the ":13verbose" command modifier when sourcing your
3629script file. Then you see when an exception is thrown, discarded, caught, or
3630finished. When using a verbosity level of at least 14, things pending in
3631a finally clause are also shown. This information is also given in debug mode
3632(see |debug-scripts|).
3633
3634
3635THROWING AND CATCHING EXCEPTIONS *throw-catch*
3636
3637You can throw any number or string as an exception. Use the |:throw| command
3638and pass the value to be thrown as argument: >
3639 :throw 4711
3640 :throw "string"
3641< *throw-expression*
3642You can also specify an expression argument. The expression is then evaluated
3643first, and the result is thrown: >
3644 :throw 4705 + strlen("string")
3645 :throw strpart("strings", 0, 6)
3646
3647An exception might be thrown during evaluation of the argument of the ":throw"
3648command. Unless it is caught there, the expression evaluation is abandoned.
3649The ":throw" command then does not throw a new exception.
3650 Example: >
3651
3652 :function! Foo(arg)
3653 : try
3654 : throw a:arg
3655 : catch /foo/
3656 : endtry
3657 : return 1
3658 :endfunction
3659 :
3660 :function! Bar()
3661 : echo "in Bar"
3662 : return 4710
3663 :endfunction
3664 :
3665 :throw Foo("arrgh") + Bar()
3666
3667This throws "arrgh", and "in Bar" is not displayed since Bar() is not
3668executed. >
3669 :throw Foo("foo") + Bar()
3670however displays "in Bar" and throws 4711.
3671
3672Any other command that takes an expression as argument might also be
Bram Moolenaar58b85342016-08-14 19:54:54 +02003673abandoned by an (uncaught) exception during the expression evaluation. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674exception is then propagated to the caller of the command.
3675 Example: >
3676
3677 :if Foo("arrgh")
3678 : echo "then"
3679 :else
3680 : echo "else"
3681 :endif
3682
3683Here neither of "then" or "else" is displayed.
3684
3685 *catch-order*
3686Exceptions can be caught by a try conditional with one or more |:catch|
3687commands, see |try-conditionals|. The values to be caught by each ":catch"
3688command can be specified as a pattern argument. The subsequent catch clause
3689gets executed when a matching exception is caught.
3690 Example: >
3691
3692 :function! Foo(value)
3693 : try
3694 : throw a:value
3695 : catch /^\d\+$/
3696 : echo "Number thrown"
3697 : catch /.*/
3698 : echo "String thrown"
3699 : endtry
3700 :endfunction
3701 :
3702 :call Foo(0x1267)
3703 :call Foo('string')
3704
3705The first call to Foo() displays "Number thrown", the second "String thrown".
3706An exception is matched against the ":catch" commands in the order they are
3707specified. Only the first match counts. So you should place the more
3708specific ":catch" first. The following order does not make sense: >
3709
3710 : catch /.*/
3711 : echo "String thrown"
3712 : catch /^\d\+$/
3713 : echo "Number thrown"
3714
3715The first ":catch" here matches always, so that the second catch clause is
3716never taken.
3717
3718 *throw-variables*
3719If you catch an exception by a general pattern, you may access the exact value
3720in the variable |v:exception|: >
3721
3722 : catch /^\d\+$/
3723 : echo "Number thrown. Value is" v:exception
3724
3725You may also be interested where an exception was thrown. This is stored in
3726|v:throwpoint|. Note that "v:exception" and "v:throwpoint" are valid for the
3727exception most recently caught as long it is not finished.
3728 Example: >
3729
3730 :function! Caught()
3731 : if v:exception != ""
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003732 : echo 'Caught "' . v:exception .. '" in ' .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 : else
3734 : echo 'Nothing caught'
3735 : endif
3736 :endfunction
3737 :
3738 :function! Foo()
3739 : try
3740 : try
3741 : try
3742 : throw 4711
3743 : finally
3744 : call Caught()
3745 : endtry
3746 : catch /.*/
3747 : call Caught()
3748 : throw "oops"
3749 : endtry
3750 : catch /.*/
3751 : call Caught()
3752 : finally
3753 : call Caught()
3754 : endtry
3755 :endfunction
3756 :
3757 :call Foo()
3758
3759This displays >
3760
3761 Nothing caught
3762 Caught "4711" in function Foo, line 4
3763 Caught "oops" in function Foo, line 10
3764 Nothing caught
3765
3766A practical example: The following command ":LineNumber" displays the line
3767number in the script or function where it has been used: >
3768
3769 :function! LineNumber()
3770 : return substitute(v:throwpoint, '.*\D\(\d\+\).*', '\1', "")
3771 :endfunction
3772 :command! LineNumber try | throw "" | catch | echo LineNumber() | endtry
3773<
3774 *try-nested*
3775An exception that is not caught by a try conditional can be caught by
3776a surrounding try conditional: >
3777
3778 :try
3779 : try
3780 : throw "foo"
3781 : catch /foobar/
3782 : echo "foobar"
3783 : finally
3784 : echo "inner finally"
3785 : endtry
3786 :catch /foo/
3787 : echo "foo"
3788 :endtry
3789
3790The inner try conditional does not catch the exception, just its finally
3791clause is executed. The exception is then caught by the outer try
3792conditional. The example displays "inner finally" and then "foo".
3793
3794 *throw-from-catch*
3795You can catch an exception and throw a new one to be caught elsewhere from the
3796catch clause: >
3797
3798 :function! Foo()
3799 : throw "foo"
3800 :endfunction
3801 :
3802 :function! Bar()
3803 : try
3804 : call Foo()
3805 : catch /foo/
3806 : echo "Caught foo, throw bar"
3807 : throw "bar"
3808 : endtry
3809 :endfunction
3810 :
3811 :try
3812 : call Bar()
3813 :catch /.*/
3814 : echo "Caught" v:exception
3815 :endtry
3816
3817This displays "Caught foo, throw bar" and then "Caught bar".
3818
3819 *rethrow*
3820There is no real rethrow in the Vim script language, but you may throw
3821"v:exception" instead: >
3822
3823 :function! Bar()
3824 : try
3825 : call Foo()
3826 : catch /.*/
3827 : echo "Rethrow" v:exception
3828 : throw v:exception
3829 : endtry
3830 :endfunction
3831< *try-echoerr*
3832Note that this method cannot be used to "rethrow" Vim error or interrupt
3833exceptions, because it is not possible to fake Vim internal exceptions.
3834Trying so causes an error exception. You should throw your own exception
3835denoting the situation. If you want to cause a Vim error exception containing
3836the original error exception value, you can use the |:echoerr| command: >
3837
3838 :try
3839 : try
3840 : asdf
3841 : catch /.*/
3842 : echoerr v:exception
3843 : endtry
3844 :catch /.*/
3845 : echo v:exception
3846 :endtry
3847
3848This code displays
3849
Bram Moolenaar446cb832008-06-24 21:56:24 +00003850 Vim(echoerr):Vim:E492: Not an editor command: asdf ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851
3852
3853CLEANUP CODE *try-finally*
3854
3855Scripts often change global settings and restore them at their end. If the
3856user however interrupts the script by pressing CTRL-C, the settings remain in
Bram Moolenaar58b85342016-08-14 19:54:54 +02003857an inconsistent state. The same may happen to you in the development phase of
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858a script when an error occurs or you explicitly throw an exception without
3859catching it. You can solve these problems by using a try conditional with
3860a finally clause for restoring the settings. Its execution is guaranteed on
3861normal control flow, on error, on an explicit ":throw", and on interrupt.
3862(Note that errors and interrupts from inside the try conditional are converted
Bram Moolenaar58b85342016-08-14 19:54:54 +02003863to exceptions. When not caught, they terminate the script after the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864clause has been executed.)
3865Example: >
3866
3867 :try
3868 : let s:saved_ts = &ts
3869 : set ts=17
3870 :
3871 : " Do the hard work here.
3872 :
3873 :finally
3874 : let &ts = s:saved_ts
3875 : unlet s:saved_ts
3876 :endtry
3877
3878This method should be used locally whenever a function or part of a script
3879changes global settings which need to be restored on failure or normal exit of
3880that function or script part.
3881
3882 *break-finally*
3883Cleanup code works also when the try block or a catch clause is left by
3884a ":continue", ":break", ":return", or ":finish".
3885 Example: >
3886
3887 :let first = 1
3888 :while 1
3889 : try
3890 : if first
3891 : echo "first"
3892 : let first = 0
3893 : continue
3894 : else
3895 : throw "second"
3896 : endif
3897 : catch /.*/
3898 : echo v:exception
3899 : break
3900 : finally
3901 : echo "cleanup"
3902 : endtry
3903 : echo "still in while"
3904 :endwhile
3905 :echo "end"
3906
3907This displays "first", "cleanup", "second", "cleanup", and "end". >
3908
3909 :function! Foo()
3910 : try
3911 : return 4711
3912 : finally
3913 : echo "cleanup\n"
3914 : endtry
3915 : echo "Foo still active"
3916 :endfunction
3917 :
3918 :echo Foo() "returned by Foo"
3919
3920This displays "cleanup" and "4711 returned by Foo". You don't need to add an
Bram Moolenaar58b85342016-08-14 19:54:54 +02003921extra ":return" in the finally clause. (Above all, this would override the
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922return value.)
3923
3924 *except-from-finally*
3925Using either of ":continue", ":break", ":return", ":finish", or ":throw" in
3926a finally clause is possible, but not recommended since it abandons the
3927cleanup actions for the try conditional. But, of course, interrupt and error
3928exceptions might get raised from a finally clause.
3929 Example where an error in the finally clause stops an interrupt from
3930working correctly: >
3931
3932 :try
3933 : try
3934 : echo "Press CTRL-C for interrupt"
3935 : while 1
3936 : endwhile
3937 : finally
3938 : unlet novar
3939 : endtry
3940 :catch /novar/
3941 :endtry
3942 :echo "Script still running"
3943 :sleep 1
3944
3945If you need to put commands that could fail into a finally clause, you should
3946think about catching or ignoring the errors in these commands, see
3947|catch-errors| and |ignore-errors|.
3948
3949
3950CATCHING ERRORS *catch-errors*
3951
3952If you want to catch specific errors, you just have to put the code to be
3953watched in a try block and add a catch clause for the error message. The
3954presence of the try conditional causes all errors to be converted to an
3955exception. No message is displayed and |v:errmsg| is not set then. To find
3956the right pattern for the ":catch" command, you have to know how the format of
3957the error exception is.
3958 Error exceptions have the following format: >
3959
3960 Vim({cmdname}):{errmsg}
3961or >
3962 Vim:{errmsg}
3963
3964{cmdname} is the name of the command that failed; the second form is used when
Bram Moolenaar58b85342016-08-14 19:54:54 +02003965the command name is not known. {errmsg} is the error message usually produced
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966when the error occurs outside try conditionals. It always begins with
3967a capital "E", followed by a two or three-digit error number, a colon, and
3968a space.
3969
3970Examples:
3971
3972The command >
3973 :unlet novar
3974normally produces the error message >
3975 E108: No such variable: "novar"
3976which is converted inside try conditionals to an exception >
3977 Vim(unlet):E108: No such variable: "novar"
3978
3979The command >
3980 :dwim
3981normally produces the error message >
3982 E492: Not an editor command: dwim
3983which is converted inside try conditionals to an exception >
3984 Vim:E492: Not an editor command: dwim
3985
3986You can catch all ":unlet" errors by a >
3987 :catch /^Vim(unlet):/
3988or all errors for misspelled command names by a >
3989 :catch /^Vim:E492:/
3990
3991Some error messages may be produced by different commands: >
3992 :function nofunc
3993and >
3994 :delfunction nofunc
3995both produce the error message >
3996 E128: Function name must start with a capital: nofunc
3997which is converted inside try conditionals to an exception >
3998 Vim(function):E128: Function name must start with a capital: nofunc
3999or >
4000 Vim(delfunction):E128: Function name must start with a capital: nofunc
4001respectively. You can catch the error by its number independently on the
4002command that caused it if you use the following pattern: >
4003 :catch /^Vim(\a\+):E128:/
4004
4005Some commands like >
4006 :let x = novar
4007produce multiple error messages, here: >
4008 E121: Undefined variable: novar
4009 E15: Invalid expression: novar
4010Only the first is used for the exception value, since it is the most specific
4011one (see |except-several-errors|). So you can catch it by >
4012 :catch /^Vim(\a\+):E121:/
4013
4014You can catch all errors related to the name "nofunc" by >
4015 :catch /\<nofunc\>/
4016
4017You can catch all Vim errors in the ":write" and ":read" commands by >
4018 :catch /^Vim(\(write\|read\)):E\d\+:/
4019
4020You can catch all Vim errors by the pattern >
4021 :catch /^Vim\((\a\+)\)\=:E\d\+:/
4022<
4023 *catch-text*
4024NOTE: You should never catch the error message text itself: >
4025 :catch /No such variable/
Bram Moolenaar2b8388b2015-02-28 13:11:45 +01004026only works in the English locale, but not when the user has selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027a different language by the |:language| command. It is however helpful to
4028cite the message text in a comment: >
4029 :catch /^Vim(\a\+):E108:/ " No such variable
4030
4031
4032IGNORING ERRORS *ignore-errors*
4033
4034You can ignore errors in a specific Vim command by catching them locally: >
4035
4036 :try
4037 : write
4038 :catch
4039 :endtry
4040
4041But you are strongly recommended NOT to use this simple form, since it could
4042catch more than you want. With the ":write" command, some autocommands could
4043be executed and cause errors not related to writing, for instance: >
4044
4045 :au BufWritePre * unlet novar
4046
4047There could even be such errors you are not responsible for as a script
4048writer: a user of your script might have defined such autocommands. You would
4049then hide the error from the user.
4050 It is much better to use >
4051
4052 :try
4053 : write
4054 :catch /^Vim(write):/
4055 :endtry
4056
4057which only catches real write errors. So catch only what you'd like to ignore
4058intentionally.
4059
4060For a single command that does not cause execution of autocommands, you could
4061even suppress the conversion of errors to exceptions by the ":silent!"
4062command: >
4063 :silent! nunmap k
4064This works also when a try conditional is active.
4065
4066
4067CATCHING INTERRUPTS *catch-interrupt*
4068
4069When there are active try conditionals, an interrupt (CTRL-C) is converted to
Bram Moolenaar58b85342016-08-14 19:54:54 +02004070the exception "Vim:Interrupt". You can catch it like every exception. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071script is not terminated, then.
4072 Example: >
4073
4074 :function! TASK1()
4075 : sleep 10
4076 :endfunction
4077
4078 :function! TASK2()
4079 : sleep 20
4080 :endfunction
4081
4082 :while 1
4083 : let command = input("Type a command: ")
4084 : try
4085 : if command == ""
4086 : continue
4087 : elseif command == "END"
4088 : break
4089 : elseif command == "TASK1"
4090 : call TASK1()
4091 : elseif command == "TASK2"
4092 : call TASK2()
4093 : else
4094 : echo "\nIllegal command:" command
4095 : continue
4096 : endif
4097 : catch /^Vim:Interrupt$/
4098 : echo "\nCommand interrupted"
4099 : " Caught the interrupt. Continue with next prompt.
4100 : endtry
4101 :endwhile
4102
4103You can interrupt a task here by pressing CTRL-C; the script then asks for
Bram Moolenaar58b85342016-08-14 19:54:54 +02004104a new command. If you press CTRL-C at the prompt, the script is terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105
4106For testing what happens when CTRL-C would be pressed on a specific line in
4107your script, use the debug mode and execute the |>quit| or |>interrupt|
4108command on that line. See |debug-scripts|.
4109
4110
4111CATCHING ALL *catch-all*
4112
4113The commands >
4114
4115 :catch /.*/
4116 :catch //
4117 :catch
4118
4119catch everything, error exceptions, interrupt exceptions and exceptions
4120explicitly thrown by the |:throw| command. This is useful at the top level of
4121a script in order to catch unexpected things.
4122 Example: >
4123
4124 :try
4125 :
4126 : " do the hard work here
4127 :
4128 :catch /MyException/
4129 :
4130 : " handle known problem
4131 :
4132 :catch /^Vim:Interrupt$/
4133 : echo "Script interrupted"
4134 :catch /.*/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004135 : echo "Internal error (" .. v:exception .. ")"
4136 : echo " - occurred at " .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 :endtry
4138 :" end of script
4139
4140Note: Catching all might catch more things than you want. Thus, you are
4141strongly encouraged to catch only for problems that you can really handle by
4142specifying a pattern argument to the ":catch".
4143 Example: Catching all could make it nearly impossible to interrupt a script
4144by pressing CTRL-C: >
4145
4146 :while 1
4147 : try
4148 : sleep 1
4149 : catch
4150 : endtry
4151 :endwhile
4152
4153
4154EXCEPTIONS AND AUTOCOMMANDS *except-autocmd*
4155
4156Exceptions may be used during execution of autocommands. Example: >
4157
4158 :autocmd User x try
4159 :autocmd User x throw "Oops!"
4160 :autocmd User x catch
4161 :autocmd User x echo v:exception
4162 :autocmd User x endtry
4163 :autocmd User x throw "Arrgh!"
4164 :autocmd User x echo "Should not be displayed"
4165 :
4166 :try
4167 : doautocmd User x
4168 :catch
4169 : echo v:exception
4170 :endtry
4171
4172This displays "Oops!" and "Arrgh!".
4173
4174 *except-autocmd-Pre*
4175For some commands, autocommands get executed before the main action of the
4176command takes place. If an exception is thrown and not caught in the sequence
4177of autocommands, the sequence and the command that caused its execution are
4178abandoned and the exception is propagated to the caller of the command.
4179 Example: >
4180
4181 :autocmd BufWritePre * throw "FAIL"
4182 :autocmd BufWritePre * echo "Should not be displayed"
4183 :
4184 :try
4185 : write
4186 :catch
4187 : echo "Caught:" v:exception "from" v:throwpoint
4188 :endtry
4189
4190Here, the ":write" command does not write the file currently being edited (as
4191you can see by checking 'modified'), since the exception from the BufWritePre
4192autocommand abandons the ":write". The exception is then caught and the
4193script displays: >
4194
4195 Caught: FAIL from BufWrite Auto commands for "*"
4196<
4197 *except-autocmd-Post*
4198For some commands, autocommands get executed after the main action of the
4199command has taken place. If this main action fails and the command is inside
4200an active try conditional, the autocommands are skipped and an error exception
4201is thrown that can be caught by the caller of the command.
4202 Example: >
4203
4204 :autocmd BufWritePost * echo "File successfully written!"
4205 :
4206 :try
4207 : write /i/m/p/o/s/s/i/b/l/e
4208 :catch
4209 : echo v:exception
4210 :endtry
4211
4212This just displays: >
4213
4214 Vim(write):E212: Can't open file for writing (/i/m/p/o/s/s/i/b/l/e)
4215
4216If you really need to execute the autocommands even when the main action
4217fails, trigger the event from the catch clause.
4218 Example: >
4219
4220 :autocmd BufWritePre * set noreadonly
4221 :autocmd BufWritePost * set readonly
4222 :
4223 :try
4224 : write /i/m/p/o/s/s/i/b/l/e
4225 :catch
4226 : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e
4227 :endtry
4228<
4229You can also use ":silent!": >
4230
4231 :let x = "ok"
4232 :let v:errmsg = ""
4233 :autocmd BufWritePost * if v:errmsg != ""
4234 :autocmd BufWritePost * let x = "after fail"
4235 :autocmd BufWritePost * endif
4236 :try
4237 : silent! write /i/m/p/o/s/s/i/b/l/e
4238 :catch
4239 :endtry
4240 :echo x
4241
4242This displays "after fail".
4243
4244If the main action of the command does not fail, exceptions from the
4245autocommands will be catchable by the caller of the command: >
4246
4247 :autocmd BufWritePost * throw ":-("
4248 :autocmd BufWritePost * echo "Should not be displayed"
4249 :
4250 :try
4251 : write
4252 :catch
4253 : echo v:exception
4254 :endtry
4255<
4256 *except-autocmd-Cmd*
4257For some commands, the normal action can be replaced by a sequence of
4258autocommands. Exceptions from that sequence will be catchable by the caller
4259of the command.
4260 Example: For the ":write" command, the caller cannot know whether the file
Bram Moolenaar58b85342016-08-14 19:54:54 +02004261had actually been written when the exception occurred. You need to tell it in
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262some way. >
4263
4264 :if !exists("cnt")
4265 : let cnt = 0
4266 :
4267 : autocmd BufWriteCmd * if &modified
4268 : autocmd BufWriteCmd * let cnt = cnt + 1
4269 : autocmd BufWriteCmd * if cnt % 3 == 2
4270 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4271 : autocmd BufWriteCmd * endif
4272 : autocmd BufWriteCmd * write | set nomodified
4273 : autocmd BufWriteCmd * if cnt % 3 == 0
4274 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4275 : autocmd BufWriteCmd * endif
4276 : autocmd BufWriteCmd * echo "File successfully written!"
4277 : autocmd BufWriteCmd * endif
4278 :endif
4279 :
4280 :try
4281 : write
4282 :catch /^BufWriteCmdError$/
4283 : if &modified
4284 : echo "Error on writing (file contents not changed)"
4285 : else
4286 : echo "Error after writing"
4287 : endif
4288 :catch /^Vim(write):/
4289 : echo "Error on writing"
4290 :endtry
4291
4292When this script is sourced several times after making changes, it displays
4293first >
4294 File successfully written!
4295then >
4296 Error on writing (file contents not changed)
4297then >
4298 Error after writing
4299etc.
4300
4301 *except-autocmd-ill*
4302You cannot spread a try conditional over autocommands for different events.
4303The following code is ill-formed: >
4304
4305 :autocmd BufWritePre * try
4306 :
4307 :autocmd BufWritePost * catch
4308 :autocmd BufWritePost * echo v:exception
4309 :autocmd BufWritePost * endtry
4310 :
4311 :write
4312
4313
4314EXCEPTION HIERARCHIES AND PARAMETERIZED EXCEPTIONS *except-hier-param*
4315
4316Some programming languages allow to use hierarchies of exception classes or to
4317pass additional information with the object of an exception class. You can do
4318similar things in Vim.
4319 In order to throw an exception from a hierarchy, just throw the complete
4320class name with the components separated by a colon, for instance throw the
4321string "EXCEPT:MATHERR:OVERFLOW" for an overflow in a mathematical library.
4322 When you want to pass additional information with your exception class, add
4323it in parentheses, for instance throw the string "EXCEPT:IO:WRITEERR(myfile)"
4324for an error when writing "myfile".
4325 With the appropriate patterns in the ":catch" command, you can catch for
4326base classes or derived classes of your hierarchy. Additional information in
4327parentheses can be cut out from |v:exception| with the ":substitute" command.
4328 Example: >
4329
4330 :function! CheckRange(a, func)
4331 : if a:a < 0
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004332 : throw "EXCEPT:MATHERR:RANGE(" .. a:func .. ")"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 : endif
4334 :endfunction
4335 :
4336 :function! Add(a, b)
4337 : call CheckRange(a:a, "Add")
4338 : call CheckRange(a:b, "Add")
4339 : let c = a:a + a:b
4340 : if c < 0
4341 : throw "EXCEPT:MATHERR:OVERFLOW"
4342 : endif
4343 : return c
4344 :endfunction
4345 :
4346 :function! Div(a, b)
4347 : call CheckRange(a:a, "Div")
4348 : call CheckRange(a:b, "Div")
4349 : if (a:b == 0)
4350 : throw "EXCEPT:MATHERR:ZERODIV"
4351 : endif
4352 : return a:a / a:b
4353 :endfunction
4354 :
4355 :function! Write(file)
4356 : try
Bram Moolenaar446cb832008-06-24 21:56:24 +00004357 : execute "write" fnameescape(a:file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 : catch /^Vim(write):/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004359 : throw "EXCEPT:IO(" .. getcwd() .. ", " .. a:file .. "):WRITEERR"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 : endtry
4361 :endfunction
4362 :
4363 :try
4364 :
Bram Moolenaar75ab5902022-04-18 15:36:40 +01004365 : " something with arithmetic and I/O
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 :
4367 :catch /^EXCEPT:MATHERR:RANGE/
4368 : let function = substitute(v:exception, '.*(\(\a\+\)).*', '\1', "")
4369 : echo "Range error in" function
4370 :
4371 :catch /^EXCEPT:MATHERR/ " catches OVERFLOW and ZERODIV
4372 : echo "Math error"
4373 :
4374 :catch /^EXCEPT:IO/
4375 : let dir = substitute(v:exception, '.*(\(.\+\),\s*.\+).*', '\1', "")
4376 : let file = substitute(v:exception, '.*(.\+,\s*\(.\+\)).*', '\1', "")
4377 : if file !~ '^/'
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004378 : let file = dir .. "/" .. file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 : endif
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004380 : echo 'I/O error for "' .. file .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 :
4382 :catch /^EXCEPT/
4383 : echo "Unspecified error"
4384 :
4385 :endtry
4386
4387The exceptions raised by Vim itself (on error or when pressing CTRL-C) use
4388a flat hierarchy: they are all in the "Vim" class. You cannot throw yourself
4389exceptions with the "Vim" prefix; they are reserved for Vim.
4390 Vim error exceptions are parameterized with the name of the command that
4391failed, if known. See |catch-errors|.
4392
4393
4394PECULIARITIES
4395 *except-compat*
4396The exception handling concept requires that the command sequence causing the
4397exception is aborted immediately and control is transferred to finally clauses
4398and/or a catch clause.
4399
4400In the Vim script language there are cases where scripts and functions
4401continue after an error: in functions without the "abort" flag or in a command
4402after ":silent!", control flow goes to the following line, and outside
4403functions, control flow goes to the line following the outermost ":endwhile"
4404or ":endif". On the other hand, errors should be catchable as exceptions
4405(thus, requiring the immediate abortion).
4406
4407This problem has been solved by converting errors to exceptions and using
4408immediate abortion (if not suppressed by ":silent!") only when a try
Bram Moolenaar58b85342016-08-14 19:54:54 +02004409conditional is active. This is no restriction since an (error) exception can
4410be caught only from an active try conditional. If you want an immediate
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411termination without catching the error, just use a try conditional without
4412catch clause. (You can cause cleanup code being executed before termination
4413by specifying a finally clause.)
4414
4415When no try conditional is active, the usual abortion and continuation
4416behavior is used instead of immediate abortion. This ensures compatibility of
4417scripts written for Vim 6.1 and earlier.
4418
4419However, when sourcing an existing script that does not use exception handling
4420commands (or when calling one of its functions) from inside an active try
4421conditional of a new script, you might change the control flow of the existing
4422script on error. You get the immediate abortion on error and can catch the
4423error in the new script. If however the sourced script suppresses error
4424messages by using the ":silent!" command (checking for errors by testing
Bram Moolenaar58b85342016-08-14 19:54:54 +02004425|v:errmsg| if appropriate), its execution path is not changed. The error is
4426not converted to an exception. (See |:silent|.) So the only remaining cause
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427where this happens is for scripts that don't care about errors and produce
4428error messages. You probably won't want to use such code from your new
4429scripts.
4430
4431 *except-syntax-err*
4432Syntax errors in the exception handling commands are never caught by any of
4433the ":catch" commands of the try conditional they belong to. Its finally
4434clauses, however, is executed.
4435 Example: >
4436
4437 :try
4438 : try
4439 : throw 4711
4440 : catch /\(/
4441 : echo "in catch with syntax error"
4442 : catch
4443 : echo "inner catch-all"
4444 : finally
4445 : echo "inner finally"
4446 : endtry
4447 :catch
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004448 : echo 'outer catch-all caught "' .. v:exception .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 : finally
4450 : echo "outer finally"
4451 :endtry
4452
4453This displays: >
4454 inner finally
4455 outer catch-all caught "Vim(catch):E54: Unmatched \("
4456 outer finally
4457The original exception is discarded and an error exception is raised, instead.
4458
4459 *except-single-line*
4460The ":try", ":catch", ":finally", and ":endtry" commands can be put on
4461a single line, but then syntax errors may make it difficult to recognize the
4462"catch" line, thus you better avoid this.
4463 Example: >
4464 :try | unlet! foo # | catch | endtry
4465raises an error exception for the trailing characters after the ":unlet!"
4466argument, but does not see the ":catch" and ":endtry" commands, so that the
4467error exception is discarded and the "E488: Trailing characters" message gets
4468displayed.
4469
4470 *except-several-errors*
4471When several errors appear in a single command, the first error message is
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +02004472usually the most specific one and therefore converted to the error exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 Example: >
4474 echo novar
4475causes >
4476 E121: Undefined variable: novar
4477 E15: Invalid expression: novar
4478The value of the error exception inside try conditionals is: >
4479 Vim(echo):E121: Undefined variable: novar
4480< *except-syntax-error*
4481But when a syntax error is detected after a normal error in the same command,
4482the syntax error is used for the exception being thrown.
4483 Example: >
4484 unlet novar #
4485causes >
4486 E108: No such variable: "novar"
4487 E488: Trailing characters
4488The value of the error exception inside try conditionals is: >
4489 Vim(unlet):E488: Trailing characters
4490This is done because the syntax error might change the execution path in a way
4491not intended by the user. Example: >
4492 try
4493 try | unlet novar # | catch | echo v:exception | endtry
4494 catch /.*/
4495 echo "outer catch:" v:exception
4496 endtry
4497This displays "outer catch: Vim(unlet):E488: Trailing characters", and then
4498a "E600: Missing :endtry" error message is given, see |except-single-line|.
4499
4500==============================================================================
45019. Examples *eval-examples*
4502
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004503Printing in Binary ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504>
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01004505 :" The function Nr2Bin() returns the binary string representation of a number.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004506 :func Nr2Bin(nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 : let n = a:nr
4508 : let r = ""
4509 : while n
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004510 : let r = '01'[n % 2] .. r
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004511 : let n = n / 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 : endwhile
4513 : return r
4514 :endfunc
4515
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004516 :" The function String2Bin() converts each character in a string to a
4517 :" binary string, separated with dashes.
4518 :func String2Bin(str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 : let out = ''
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004520 : for ix in range(strlen(a:str))
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004521 : let out = out .. '-' .. Nr2Bin(char2nr(a:str[ix]))
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004522 : endfor
4523 : return out[1:]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 :endfunc
4525
4526Example of its use: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004527 :echo Nr2Bin(32)
4528result: "100000" >
4529 :echo String2Bin("32")
4530result: "110011-110010"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531
4532
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004533Sorting lines ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004535This example sorts lines with a specific compare function. >
4536
4537 :func SortBuffer()
4538 : let lines = getline(1, '$')
4539 : call sort(lines, function("Strcmp"))
4540 : call setline(1, lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 :endfunction
4542
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004543As a one-liner: >
4544 :call setline(1, sort(getline(1, '$'), function("Strcmp")))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004547scanf() replacement ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 *sscanf*
4549There is no sscanf() function in Vim. If you need to extract parts from a
4550line, you can use matchstr() and substitute() to do it. This example shows
4551how to get the file name, line number and column number out of a line like
4552"foobar.txt, 123, 45". >
4553 :" Set up the match bit
4554 :let mx='\(\f\+\),\s*\(\d\+\),\s*\(\d\+\)'
4555 :"get the part matching the whole expression
4556 :let l = matchstr(line, mx)
4557 :"get each item out of the match
4558 :let file = substitute(l, mx, '\1', '')
4559 :let lnum = substitute(l, mx, '\2', '')
4560 :let col = substitute(l, mx, '\3', '')
4561
4562The input is in the variable "line", the results in the variables "file",
4563"lnum" and "col". (idea from Michael Geddes)
4564
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004565
4566getting the scriptnames in a Dictionary ~
4567 *scriptnames-dictionary*
4568The |:scriptnames| command can be used to get a list of all script files that
4569have been sourced. There is no equivalent function or variable for this
4570(because it's rarely needed). In case you need to manipulate the list this
4571code can be used: >
4572 " Get the output of ":scriptnames" in the scriptnames_output variable.
4573 let scriptnames_output = ''
4574 redir => scriptnames_output
4575 silent scriptnames
4576 redir END
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01004577
Bram Moolenaar446cb832008-06-24 21:56:24 +00004578 " Split the output into lines and parse each line. Add an entry to the
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004579 " "scripts" dictionary.
4580 let scripts = {}
4581 for line in split(scriptnames_output, "\n")
4582 " Only do non-blank lines.
4583 if line =~ '\S'
4584 " Get the first number in the line.
Bram Moolenaar446cb832008-06-24 21:56:24 +00004585 let nr = matchstr(line, '\d\+')
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004586 " Get the file name, remove the script number " 123: ".
Bram Moolenaar446cb832008-06-24 21:56:24 +00004587 let name = substitute(line, '.\+:\s*', '', '')
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004588 " Add an item to the Dictionary
Bram Moolenaar446cb832008-06-24 21:56:24 +00004589 let scripts[nr] = name
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004590 endif
4591 endfor
4592 unlet scriptnames_output
4593
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200459510. Vim script versions *vimscript-version* *vimscript-versions*
Bram Moolenaar911ead12019-04-21 00:03:35 +02004596 *scriptversion*
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004597Over time many features have been added to Vim script. This includes Ex
4598commands, functions, variable types, etc. Each individual feature can be
4599checked with the |has()| and |exists()| functions.
4600
4601Sometimes old syntax of functionality gets in the way of making Vim better.
4602When support is taken away this will break older Vim scripts. To make this
4603explicit the |:scriptversion| command can be used. When a Vim script is not
4604compatible with older versions of Vim this will give an explicit error,
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004605instead of failing in mysterious ways.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004606
Bram Moolenaara2baa732022-02-04 16:09:54 +00004607When using a legacy function, defined with `:function`, in |Vim9| script then
4608scriptversion 4 is used.
4609
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004610 *scriptversion-1* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004611 :scriptversion 1
4612< This is the original Vim script, same as not using a |:scriptversion|
4613 command. Can be used to go back to old syntax for a range of lines.
4614 Test for support with: >
4615 has('vimscript-1')
4616
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004617< *scriptversion-2* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004618 :scriptversion 2
Bram Moolenaar68e65602019-05-26 21:33:31 +02004619< String concatenation with "." is not supported, use ".." instead.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004620 This avoids the ambiguity using "." for Dict member access and
4621 floating point numbers. Now ".5" means the number 0.5.
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004622
4623 *scriptversion-3* >
Bram Moolenaar911ead12019-04-21 00:03:35 +02004624 :scriptversion 3
4625< All |vim-variable|s must be prefixed by "v:". E.g. "version" doesn't
4626 work as |v:version| anymore, it can be used as a normal variable.
4627 Same for some obvious names as "count" and others.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004628
Bram Moolenaar911ead12019-04-21 00:03:35 +02004629 Test for support with: >
4630 has('vimscript-3')
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004631<
4632 *scriptversion-4* >
4633 :scriptversion 4
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004634< Numbers with a leading zero are not recognized as octal. "0o" or "0O"
4635 is still recognized as octal. With the
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004636 previous version you get: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004637 echo 017 " displays 15 (octal)
4638 echo 0o17 " displays 15 (octal)
4639 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004640< with script version 4: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004641 echo 017 " displays 17 (decimal)
4642 echo 0o17 " displays 15 (octal)
4643 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004644< Also, it is possible to use single quotes inside numbers to make them
4645 easier to read: >
4646 echo 1'000'000
4647< The quotes must be surrounded by digits.
4648
4649 Test for support with: >
4650 has('vimscript-4')
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004651
4652==============================================================================
465311. No +eval feature *no-eval-feature*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654
4655When the |+eval| feature was disabled at compile time, none of the expression
4656evaluation commands are available. To prevent this from causing Vim scripts
4657to generate all kinds of errors, the ":if" and ":endif" commands are still
4658recognized, though the argument of the ":if" and everything between the ":if"
4659and the matching ":endif" is ignored. Nesting of ":if" blocks is allowed, but
4660only if the commands are at the start of the line. The ":else" command is not
4661recognized.
4662
4663Example of how to avoid executing commands when the |+eval| feature is
4664missing: >
4665
4666 :if 1
4667 : echo "Expression evaluation is compiled in"
4668 :else
4669 : echo "You will _never_ see this message"
4670 :endif
4671
Bram Moolenaar773a97c2019-06-06 20:39:55 +02004672To execute a command only when the |+eval| feature is disabled can be done in
4673two ways. The simplest is to exit the script (or Vim) prematurely: >
4674 if 1
4675 echo "commands executed with +eval"
4676 finish
4677 endif
4678 args " command executed without +eval
4679
4680If you do not want to abort loading the script you can use a trick, as this
4681example shows: >
Bram Moolenaar45d2cca2017-04-30 16:36:05 +02004682
4683 silent! while 0
4684 set history=111
4685 silent! endwhile
4686
4687When the |+eval| feature is available the command is skipped because of the
4688"while 0". Without the |+eval| feature the "while 0" is an error, which is
4689silently ignored, and the command is executed.
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +02004690
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691==============================================================================
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000469212. The sandbox *eval-sandbox* *sandbox*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693
Bram Moolenaar368373e2010-07-19 20:46:22 +02004694The 'foldexpr', 'formatexpr', 'includeexpr', 'indentexpr', 'statusline' and
4695'foldtext' options may be evaluated in a sandbox. This means that you are
4696protected from these expressions having nasty side effects. This gives some
4697safety for when these options are set from a modeline. It is also used when
4698the command from a tags file is executed and for CTRL-R = in the command line.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004699The sandbox is also used for the |:sandbox| command.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00004700 *E48*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701These items are not allowed in the sandbox:
4702 - changing the buffer text
Bram Moolenaarb477af22018-07-15 20:20:18 +02004703 - defining or changing mapping, autocommands, user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 - setting certain options (see |option-summary|)
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004705 - setting certain v: variables (see |v:var|) *E794*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 - executing a shell command
4707 - reading or writing a file
4708 - jumping to another buffer or editing a file
Bram Moolenaar4770d092006-01-12 23:22:24 +00004709 - executing Python, Perl, etc. commands
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004710This is not guaranteed 100% secure, but it should block most attacks.
4711
4712 *:san* *:sandbox*
Bram Moolenaar045e82d2005-07-08 22:25:33 +00004713:san[dbox] {cmd} Execute {cmd} in the sandbox. Useful to evaluate an
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004714 option that may have been set from a modeline, e.g.
4715 'foldexpr'.
4716
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004717 *sandbox-option*
4718A few options contain an expression. When this expression is evaluated it may
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00004719have to be done in the sandbox to avoid a security risk. But the sandbox is
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004720restrictive, thus this only happens when the option was set from an insecure
4721location. Insecure in this context are:
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004722- sourcing a .vimrc or .exrc in the current directory
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004723- while executing in the sandbox
4724- value coming from a modeline
Bram Moolenaarb477af22018-07-15 20:20:18 +02004725- executing a function that was defined in the sandbox
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004726
4727Note that when in the sandbox and saving an option value and restoring it, the
4728option will still be marked as it was set in the sandbox.
4729
4730==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200473113. Textlock *textlock*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004732
4733In a few situations it is not allowed to change the text in the buffer, jump
4734to another window and some other things that might confuse or break what Vim
4735is currently doing. This mostly applies to things that happen when Vim is
Bram Moolenaar58b85342016-08-14 19:54:54 +02004736actually doing something else. For example, evaluating the 'balloonexpr' may
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004737happen any moment the mouse cursor is resting at some position.
4738
4739This is not allowed when the textlock is active:
4740 - changing the buffer text
4741 - jumping to another buffer or window
4742 - editing another file
4743 - closing a window or quitting Vim
4744 - etc.
4745
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746
Bram Moolenaar91f84f62018-07-29 15:07:52 +02004747 vim:tw=78:ts=8:noet:ft=help:norl: