blob: eddafd078e0debe239519562e094d1045b822bf3 [file] [log] [blame]
Christian Brabandte5bc2e42024-06-01 20:55:09 +02001*eval.txt* For Vim version 9.1. Last change: 2024 Jun 01
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|
Christian Brabandtda4e4332023-11-05 10:45:12 +01003914. Vim script library |vim-script-library|
Bram Moolenaared997ad2019-07-21 16:42:00 +020040
41Testing support is documented in |testing.txt|.
42Profiling is documented at |profiling|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
Bram Moolenaar071d4272004-06-13 20:20:40 +000044==============================================================================
451. Variables *variables*
46
Bram Moolenaar13065c42005-01-08 16:08:21 +0000471.1 Variable types ~
Bram Moolenaarf10911e2022-01-29 22:20:48 +000048 *E712* *E896* *E897* *E899* *E1098*
49 *E1107* *E1135* *E1138*
Bram Moolenaar06fe74a2019-08-31 16:20:32 +020050There are ten types of variables:
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010052 *Number* *Integer*
53Number A 32 or 64 bit signed number. |expr-number|
Bram Moolenaarf9706e92020-02-22 14:27:04 +010054 The number of bits is available in |v:numbersize|.
Bram Moolenaar6f02b002021-01-10 20:22:54 +010055 Examples: -123 0x10 0177 0o177 0b1011
Bram Moolenaard8b02732005-01-14 21:48:43 +000056
Bram Moolenaar446cb832008-06-24 21:56:24 +000057Float A floating point number. |floating-point-format| *Float*
Bram Moolenaar446cb832008-06-24 21:56:24 +000058 Examples: 123.456 1.15e-6 -1.1e3
59
Bram Moolenaard8b02732005-01-14 21:48:43 +000060String A NUL terminated string of 8-bit unsigned characters (bytes).
Bram Moolenaar446cb832008-06-24 21:56:24 +000061 |expr-string| Examples: "ab\txx\"--" 'x-z''a,c'
Bram Moolenaard8b02732005-01-14 21:48:43 +000062
Bram Moolenaard8968242019-01-15 22:51:57 +010063List An ordered sequence of items, see |List| for details.
Bram Moolenaard8b02732005-01-14 21:48:43 +000064 Example: [1, 2, ['a', 'b']]
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaar39a58ca2005-06-27 22:42:44 +000066Dictionary An associative, unordered array: Each entry has a key and a
67 value. |Dictionary|
Bram Moolenaard5abb4c2019-07-13 22:46:10 +020068 Examples:
69 {'blue': "#0000ff", 'red': "#ff0000"}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +020070 #{blue: "#0000ff", red: "#ff0000"}
Bram Moolenaar39a58ca2005-06-27 22:42:44 +000071
Bram Moolenaar835dc632016-02-07 14:27:38 +010072Funcref A reference to a function |Funcref|.
73 Example: function("strlen")
Bram Moolenaar1d429612016-05-24 15:44:17 +020074 It can be bound to a dictionary and arguments, it then works
75 like a Partial.
76 Example: function("Callback", [arg], myDict)
Bram Moolenaar835dc632016-02-07 14:27:38 +010077
Bram Moolenaar02e83b42016-02-21 20:10:26 +010078Special |v:false|, |v:true|, |v:none| and |v:null|. *Special*
Bram Moolenaar835dc632016-02-07 14:27:38 +010079
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +020080Job Used for a job, see |job_start()|. *Job* *Jobs*
Bram Moolenaar38a55632016-02-15 22:07:32 +010081
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +020082Channel Used for a channel, see |ch_open()|. *Channel* *Channels*
Bram Moolenaar835dc632016-02-07 14:27:38 +010083
Bram Moolenaard8968242019-01-15 22:51:57 +010084Blob Binary Large Object. Stores any sequence of bytes. See |Blob|
85 for details
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +010086 Example: 0zFF00ED015DAF
87 0z is an empty Blob.
88
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +000089The Number and String types are converted automatically, depending on how they
90are used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
92Conversion from a Number to a String is by making the ASCII representation of
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +020093the Number. Examples:
94 Number 123 --> String "123" ~
95 Number 0 --> String "0" ~
96 Number -1 --> String "-1" ~
Bram Moolenaar00a927d2010-05-14 23:24:24 +020097 *octal*
Bram Moolenaard43906d2020-07-20 21:31:32 +020098Conversion from a String to a Number only happens in legacy Vim script, not in
99Vim9 script. It is done by converting the first digits to a number.
100Hexadecimal "0xf9", Octal "017" or "0o17", and Binary "0b10"
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100101numbers are recognized
Bram Moolenaar5da36052021-12-27 15:39:57 +0000102NOTE: when using |Vim9| script or |scriptversion-4| octal with a leading "0"
103is not recognized. The 0o notation requires patch 8.2.0886.
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100104If the String doesn't start with digits, the result is zero.
Bram Moolenaarfa735342016-01-03 22:14:44 +0100105Examples:
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200106 String "456" --> Number 456 ~
107 String "6bar" --> Number 6 ~
108 String "foo" --> Number 0 ~
109 String "0xf1" --> Number 241 ~
110 String "0100" --> Number 64 ~
Bram Moolenaarc17e66c2020-06-02 21:38:22 +0200111 String "0o100" --> Number 64 ~
Bram Moolenaarfa735342016-01-03 22:14:44 +0100112 String "0b101" --> Number 5 ~
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200113 String "-8" --> Number -8 ~
114 String "+8" --> Number 0 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115
116To force conversion from String to Number, add zero to it: >
117 :echo "0100" + 0
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000118< 64 ~
119
120To avoid a leading zero to cause octal conversion, or for using a different
121base, use |str2nr()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
Bram Moolenaard09091d2019-01-17 16:07:22 +0100123 *TRUE* *FALSE* *Boolean*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124For boolean operators Numbers are used. Zero is FALSE, non-zero is TRUE.
Bram Moolenaar6aa57292021-08-14 21:25:52 +0200125You can also use |v:false| and |v:true|, in Vim9 script |false| and |true|.
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200126When TRUE is returned from a function it is the Number one, FALSE is the
127number zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200129Note that in the command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 :if "foo"
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200131 :" NOT executed
132"foo" is converted to 0, which means FALSE. If the string starts with a
133non-zero number it means TRUE: >
134 :if "8foo"
135 :" executed
136To test for a non-empty string, use empty(): >
Bram Moolenaar3a0d8092012-10-21 03:02:54 +0200137 :if !empty("foo")
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200138
139< *falsy* *truthy*
140An expression can be used as a condition, ignoring the type and only using
141whether the value is "sort of true" or "sort of false". Falsy is:
142 the number zero
143 empty string, blob, list or dictionary
144Other values are truthy. Examples:
145 0 falsy
146 1 truthy
147 -1 truthy
148 0.0 falsy
149 0.1 truthy
150 '' falsy
151 'x' truthy
152 [] falsy
153 [0] truthy
154 {} falsy
155 #{x: 1} truthy
156 0z falsy
157 0z00 truthy
158
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200159 *non-zero-arg*
160Function arguments often behave slightly different from |TRUE|: If the
161argument is present and it evaluates to a non-zero Number, |v:true| or a
Bram Moolenaar64d8e252016-09-06 22:12:34 +0200162non-empty String, then the value is considered to be TRUE.
Bram Moolenaar01164a62017-11-02 22:58:42 +0100163Note that " " and "0" are also non-empty strings, thus considered to be TRUE.
164A List, Dictionary or Float is not a Number or String, thus evaluate to FALSE.
Bram Moolenaare381d3d2016-07-07 14:50:41 +0200165
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000166 *E611* *E745* *E728* *E703* *E729* *E730* *E731* *E908* *E910*
Bram Moolenaar7db29e42022-12-11 15:53:04 +0000167 *E913* *E974* *E975* *E976* *E1319* *E1320* *E1321* *E1322*
168 *E1323* *E1324*
169|List|, |Dictionary|, |Funcref|, |Job|, |Channel|, |Blob|, |Class| and
170|object| types are not automatically converted.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000171
Bram Moolenaar446cb832008-06-24 21:56:24 +0000172 *E805* *E806* *E808*
Bram Moolenaar58b85342016-08-14 19:54:54 +0200173When mixing Number and Float the Number is converted to Float. Otherwise
Bram Moolenaar446cb832008-06-24 21:56:24 +0000174there is no automatic conversion of Float. You can use str2float() for String
175to Float, printf() for Float to String and float2nr() for Float to Number.
176
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000177 *E362* *E891* *E892* *E893* *E894* *E907* *E911* *E914*
Bram Moolenaar13d5aee2016-01-21 23:36:05 +0100178When expecting a Float a Number can also be used, but nothing else.
179
Bram Moolenaarf6f32c32016-03-12 19:03:59 +0100180 *no-type-checking*
181You will not get an error if you try to change the type of a variable.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000182
Bram Moolenaar13065c42005-01-08 16:08:21 +0000183
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001841.2 Function references ~
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100185 *Funcref* *E695* *E718* *E1192*
Bram Moolenaar58b85342016-08-14 19:54:54 +0200186A Funcref variable is obtained with the |function()| function, the |funcref()|
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100187function, (in |Vim9| script) the name of a function, or created with the
188lambda expression |expr-lambda|. It can be used in an expression in the place
189of a function name, before the parenthesis around the arguments, to invoke the
190function it refers to. Example in |Vim9| script: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000191
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100192 :var Fn = MyFunc
193 :echo Fn()
194
195Legacy script: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000196 :let Fn = function("MyFunc")
197 :echo Fn()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000198< *E704* *E705* *E707*
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000199A Funcref variable must start with a capital, "s:", "w:", "t:" or "b:". You
Bram Moolenaar7cba6c02013-09-05 22:13:31 +0200200can use "g:" but the following name must still start with a capital. You
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000201cannot have both a Funcref variable and a function with the same name.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000202
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000203A special case is defining a function and directly assigning its Funcref to a
204Dictionary entry. Example: >
205 :function dict.init() dict
206 : let self.val = 0
207 :endfunction
208
209The key of the Dictionary can start with a lower case letter. The actual
210function name is not used here. Also see |numbered-function|.
211
212A Funcref can also be used with the |:call| command: >
213 :call Fn()
214 :call dict.init()
Bram Moolenaar13065c42005-01-08 16:08:21 +0000215
216The name of the referenced function can be obtained with |string()|. >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000217 :let func = string(Fn)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000218
219You can use |call()| to invoke a Funcref and use a list variable for the
220arguments: >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000221 :let r = call(Fn, mylist)
Bram Moolenaar1d429612016-05-24 15:44:17 +0200222<
223 *Partial*
224A Funcref optionally binds a Dictionary and/or arguments. This is also called
225a Partial. This is created by passing the Dictionary and/or arguments to
Bram Moolenaar58b85342016-08-14 19:54:54 +0200226function() or funcref(). When calling the function the Dictionary and/or
227arguments will be passed to the function. Example: >
Bram Moolenaar1d429612016-05-24 15:44:17 +0200228
229 let Cb = function('Callback', ['foo'], myDict)
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100230 call Cb('bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200231
232This will invoke the function as if using: >
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100233 call myDict.Callback('foo', 'bar')
Bram Moolenaar1d429612016-05-24 15:44:17 +0200234
235This is very useful when passing a function around, e.g. in the arguments of
236|ch_open()|.
237
238Note that binding a function to a Dictionary also happens when the function is
239a member of the Dictionary: >
240
241 let myDict.myFunction = MyFunction
242 call myDict.myFunction()
243
244Here MyFunction() will get myDict passed as "self". This happens when the
245"myFunction" member is accessed. When making assigning "myFunction" to
246otherDict and calling it, it will be bound to otherDict: >
247
248 let otherDict.myFunction = myDict.myFunction
249 call otherDict.myFunction()
250
251Now "self" will be "otherDict". But when the dictionary was bound explicitly
252this won't happen: >
253
254 let myDict.myFunction = function(MyFunction, myDict)
255 let otherDict.myFunction = myDict.myFunction
256 call otherDict.myFunction()
257
Bram Moolenaard823fa92016-08-12 16:29:27 +0200258Here "self" will be "myDict", because it was bound explicitly.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000259
260
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002611.3 Lists ~
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200262 *list* *List* *Lists* *E686*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000263A List is an ordered sequence of items. An item can be of any type. Items
Bram Moolenaar58b85342016-08-14 19:54:54 +0200264can be accessed by their index number. Items can be added and removed at any
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000265position in the sequence.
266
Bram Moolenaar13065c42005-01-08 16:08:21 +0000267
268List creation ~
269 *E696* *E697*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100270A List is created with a comma-separated list of items in square brackets.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000271Examples: >
272 :let mylist = [1, two, 3, "four"]
273 :let emptylist = []
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000274
Bram Moolenaar58b85342016-08-14 19:54:54 +0200275An item can be any expression. Using a List for an item creates a
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000276List of Lists: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000277 :let nestlist = [[11, 12], [21, 22], [31, 32]]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000278
279An extra comma after the last item is ignored.
280
Bram Moolenaar13065c42005-01-08 16:08:21 +0000281
282List index ~
283 *list-index* *E684*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000284An item in the List can be accessed by putting the index in square brackets
Bram Moolenaar13065c42005-01-08 16:08:21 +0000285after the List. Indexes are zero-based, thus the first item has index zero. >
286 :let item = mylist[0] " get the first item: 1
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000287 :let item = mylist[2] " get the third item: 3
Bram Moolenaar13065c42005-01-08 16:08:21 +0000288
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000289When the resulting item is a list this can be repeated: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000290 :let item = nestlist[0][1] " get the first list, second item: 12
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000291<
Bram Moolenaar13065c42005-01-08 16:08:21 +0000292A negative index is counted from the end. Index -1 refers to the last item in
293the List, -2 to the last but one item, etc. >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000294 :let last = mylist[-1] " get the last item: "four"
295
Bram Moolenaar13065c42005-01-08 16:08:21 +0000296To avoid an error for an invalid index use the |get()| function. When an item
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000297is not available it returns zero or the default value you specify: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000298 :echo get(mylist, idx)
299 :echo get(mylist, idx, "NONE")
300
301
302List concatenation ~
Bram Moolenaar34453202021-01-31 13:08:38 +0100303 *list-concatenation*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000304Two lists can be concatenated with the "+" operator: >
305 :let longlist = mylist + [5, 6]
zeertzjqb8170142024-02-08 11:21:44 +0100306 :let longlist = [5, 6] + mylist
307To prepend or append an item, turn it into a list by putting [] around it.
308
309A list can be concatenated with another one in-place using |:let+=| or
310|extend()|: >
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000311 :let mylist += [7, 8]
qeatzyc9c2e2d2024-02-07 17:52:25 +0100312 :call extend(mylist, [7, 8])
zeertzjqb8170142024-02-08 11:21:44 +0100313<
314See |list-modification| below for more about changing a list in-place.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000315
316
317Sublist ~
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200318 *sublist*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000319A part of the List can be obtained by specifying the first and last index,
320separated by a colon in square brackets: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000321 :let shortlist = mylist[2:-1] " get List [3, "four"]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000322
323Omitting the first index is similar to zero. Omitting the last index is
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000324similar to -1. >
Bram Moolenaar540d6e32005-01-09 21:20:18 +0000325 :let endlist = mylist[2:] " from item 2 to the end: [3, "four"]
326 :let shortlist = mylist[2:2] " List with one item: [3]
327 :let otherlist = mylist[:] " make a copy of the List
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000328
Bram Moolenaar6601b622021-01-13 21:47:15 +0100329Notice that the last index is inclusive. If you prefer using an exclusive
330index use the |slice()| method.
331
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000332If the first index is beyond the last item of the List or the second item is
333before the first item, the result is an empty list. There is no error
334message.
335
336If the second index is equal to or greater than the length of the list the
337length minus one is used: >
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000338 :let mylist = [0, 1, 2, 3]
339 :echo mylist[2:8] " result: [2, 3]
340
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000341NOTE: mylist[s:e] means using the variable "s:e" as index. Watch out for
Bram Moolenaar58b85342016-08-14 19:54:54 +0200342using a single letter variable before the ":". Insert a space when needed:
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000343mylist[s : e].
344
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000345
Bram Moolenaar13065c42005-01-08 16:08:21 +0000346List identity ~
Bram Moolenaard8b02732005-01-14 21:48:43 +0000347 *list-identity*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000348When variable "aa" is a list and you assign it to another variable "bb", both
349variables refer to the same list. Thus changing the list "aa" will also
350change "bb": >
351 :let aa = [1, 2, 3]
352 :let bb = aa
353 :call add(aa, 4)
354 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000355< [1, 2, 3, 4]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000356
357Making a copy of a list is done with the |copy()| function. Using [:] also
358works, as explained above. This creates a shallow copy of the list: Changing
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000359a list item in the list will also change the item in the copied list: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000360 :let aa = [[1, 'a'], 2, 3]
361 :let bb = copy(aa)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000362 :call add(aa, 4)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000363 :let aa[0][1] = 'aaa'
364 :echo aa
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000365< [[1, aaa], 2, 3, 4] >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000366 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000367< [[1, aaa], 2, 3]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000368
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000369To make a completely independent list use |deepcopy()|. This also makes a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000370copy of the values in the list, recursively. Up to a hundred levels deep.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000371
372The operator "is" can be used to check if two variables refer to the same
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000373List. "isnot" does the opposite. In contrast "==" compares if two lists have
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000374the same value. >
375 :let alist = [1, 2, 3]
376 :let blist = [1, 2, 3]
377 :echo alist is blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000378< 0 >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000379 :echo alist == blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000380< 1
Bram Moolenaar13065c42005-01-08 16:08:21 +0000381
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000382Note about comparing lists: Two lists are considered equal if they have the
383same length and all items compare equal, as with using "==". There is one
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000384exception: When comparing a number with a string they are considered
385different. There is no automatic type conversion, as with using "==" on
386variables. Example: >
387 echo 4 == "4"
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000388< 1 >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000389 echo [4] == ["4"]
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000390< 0
391
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000392Thus comparing Lists is more strict than comparing numbers and strings. You
Bram Moolenaar446cb832008-06-24 21:56:24 +0000393can compare simple values this way too by putting them in a list: >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000394
395 :let a = 5
396 :let b = "5"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000397 :echo a == b
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000398< 1 >
Bram Moolenaar446cb832008-06-24 21:56:24 +0000399 :echo [a] == [b]
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000400< 0
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000401
Bram Moolenaar13065c42005-01-08 16:08:21 +0000402
403List unpack ~
404
405To unpack the items in a list to individual variables, put the variables in
406square brackets, like list items: >
407 :let [var1, var2] = mylist
408
409When the number of variables does not match the number of items in the list
410this produces an error. To handle any extra items from the list append ";"
411and a variable name: >
412 :let [var1, var2; rest] = mylist
413
414This works like: >
415 :let var1 = mylist[0]
416 :let var2 = mylist[1]
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000417 :let rest = mylist[2:]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000418
419Except that there is no error if there are only two items. "rest" will be an
420empty list then.
421
422
423List modification ~
424 *list-modification*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000425To change a specific item of a list use |:let| this way: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000426 :let list[4] = "four"
427 :let listlist[0][3] = item
428
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000429To change part of a list you can specify the first and last item to be
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000430modified. The value must at least have the number of items in the range: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000431 :let list[3:5] = [3, 4, 5]
432
zeertzjqb8170142024-02-08 11:21:44 +0100433To add items to a List in-place, you can use |:let+=| (|list-concatenation|): >
Yegappan Lakshmanan1af35632024-02-06 11:03:36 +0100434 :let listA = [1, 2]
435 :let listA += [3, 4]
436<
437When two variables refer to the same List, changing one List in-place will
438cause the referenced List to be changed in-place: >
439 :let listA = [1, 2]
440 :let listB = listA
441 :let listB += [3, 4]
442 :echo listA
443 [1, 2, 3, 4]
444<
Bram Moolenaar13065c42005-01-08 16:08:21 +0000445Adding and removing items from a list is done with functions. Here are a few
446examples: >
447 :call insert(list, 'a') " prepend item 'a'
448 :call insert(list, 'a', 3) " insert item 'a' before list[3]
449 :call add(list, "new") " append String item
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000450 :call add(list, [1, 2]) " append a List as one new item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000451 :call extend(list, [1, 2]) " extend the list with two more items
452 :let i = remove(list, 3) " remove item 3
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000453 :unlet list[3] " idem
Bram Moolenaar13065c42005-01-08 16:08:21 +0000454 :let l = remove(list, 3, -1) " remove items 3 to last item
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000455 :unlet list[3 : ] " idem
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000456 :call filter(list, 'v:val !~ "x"') " remove items with an 'x'
Bram Moolenaar13065c42005-01-08 16:08:21 +0000457
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000458Changing the order of items in a list: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000459 :call sort(list) " sort a list alphabetically
460 :call reverse(list) " reverse the order of items
Bram Moolenaar327aa022014-03-25 18:24:23 +0100461 :call uniq(sort(list)) " sort and remove duplicates
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000462
Bram Moolenaar13065c42005-01-08 16:08:21 +0000463
464For loop ~
465
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100466The |:for| loop executes commands for each item in a List, String or Blob.
467A variable is set to each item in sequence. Example with a List: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000468 :for item in mylist
469 : call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000470 :endfor
471
472This works like: >
473 :let index = 0
474 :while index < len(mylist)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000475 : let item = mylist[index]
476 : :call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000477 : let index = index + 1
478 :endwhile
479
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000480If all you want to do is modify each item in the list then the |map()|
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000481function will be a simpler method than a for loop.
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000482
Bram Moolenaar58b85342016-08-14 19:54:54 +0200483Just like the |:let| command, |:for| also accepts a list of variables. This
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100484requires the argument to be a List of Lists. >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000485 :for [lnum, col] in [[1, 3], [2, 8], [3, 0]]
486 : call Doit(lnum, col)
487 :endfor
488
489This works like a |:let| command is done for each list item. Again, the types
490must remain the same to avoid an error.
491
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000492It is also possible to put remaining items in a List variable: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000493 :for [i, j; rest] in listlist
494 : call Doit(i, j)
495 : if !empty(rest)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000496 : echo "remainder: " .. string(rest)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000497 : endif
498 :endfor
499
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100500For a Blob one byte at a time is used.
501
502For a String one character, including any composing characters, is used as a
503String. Example: >
504 for c in text
505 echo 'This character is ' .. c
506 endfor
507
Bram Moolenaar13065c42005-01-08 16:08:21 +0000508
509List functions ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000510 *E714*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000511Functions that are useful with a List: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000512 :let r = call(funcname, list) " call a function with an argument list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000513 :if empty(list) " check if list is empty
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000514 :let l = len(list) " number of items in list
515 :let big = max(list) " maximum value in list
516 :let small = min(list) " minimum value in list
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000517 :let xs = count(list, 'x') " count nr of times 'x' appears in list
518 :let i = index(list, 'x') " index of first 'x' in list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000519 :let lines = getline(1, 10) " get ten text lines from buffer
520 :call append('$', lines) " append text lines in buffer
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000521 :let list = split("a b c") " create list from items in a string
522 :let string = join(list, ', ') " create string from list items
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000523 :let s = string(list) " String representation of list
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000524 :call map(list, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000525
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000526Don't forget that a combination of features can make things simple. For
527example, to add up all the numbers in a list: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000528 :exe 'let sum = ' .. join(nrlist, '+')
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000529
Bram Moolenaar13065c42005-01-08 16:08:21 +0000530
Bram Moolenaard8b02732005-01-14 21:48:43 +00005311.4 Dictionaries ~
Bram Moolenaard8968242019-01-15 22:51:57 +0100532 *dict* *Dict* *Dictionaries* *Dictionary*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000533A Dictionary is an associative array: Each entry has a key and a value. The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000534entry can be located with the key. The entries are stored without a specific
535ordering.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000536
537
538Dictionary creation ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000539 *E720* *E721* *E722* *E723*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100540A Dictionary is created with a comma-separated list of entries in curly
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000541braces. Each entry has a key and a value, separated by a colon. Each key can
542only appear once. Examples: >
Bram Moolenaard8b02732005-01-14 21:48:43 +0000543 :let mydict = {1: 'one', 2: 'two', 3: 'three'}
544 :let emptydict = {}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000545< *E713* *E716* *E717*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000546A key is always a String. You can use a Number, it will be converted to a
547String automatically. Thus the String '4' and the number 4 will find the same
Bram Moolenaar58b85342016-08-14 19:54:54 +0200548entry. Note that the String '04' and the Number 04 are different, since the
Bram Moolenaard899e512022-05-07 21:54:03 +0100549Number will be converted to the String '4', leading zeros are dropped. The
550empty string can also be used as a key.
Bram Moolenaar5da36052021-12-27 15:39:57 +0000551
Bram Moolenaard799daa2022-06-20 11:17:32 +0100552In |Vim9| script a literal key can be used if it consists only of alphanumeric
Bram Moolenaar5da36052021-12-27 15:39:57 +0000553characters, underscore and dash, see |vim9-literal-dict|.
Bram Moolenaar56c860c2019-08-17 20:09:31 +0200554 *literal-Dict* *#{}*
Bram Moolenaar5da36052021-12-27 15:39:57 +0000555To avoid having to put quotes around every key the #{} form can be used in
556legacy script. This does require the key to consist only of ASCII letters,
557digits, '-' and '_'. Example: >
Bram Moolenaar10455d42019-11-21 15:36:18 +0100558 :let mydict = #{zero: 0, one_key: 1, two-key: 2, 333: 3}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +0200559Note that 333 here is the string "333". Empty keys are not possible with #{}.
Bram Moolenaard899e512022-05-07 21:54:03 +0100560In |Vim9| script the #{} form cannot be used because it can be confused with
561the start of a comment.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000562
Bram Moolenaar58b85342016-08-14 19:54:54 +0200563A value can be any expression. Using a Dictionary for a value creates a
Bram Moolenaard8b02732005-01-14 21:48:43 +0000564nested Dictionary: >
565 :let nestdict = {1: {11: 'a', 12: 'b'}, 2: {21: 'c'}}
566
567An extra comma after the last entry is ignored.
568
569
570Accessing entries ~
571
572The normal way to access an entry is by putting the key in square brackets: >
573 :let val = mydict["one"]
574 :let mydict["four"] = 4
575
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000576You can add new entries to an existing Dictionary this way, unlike Lists.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000577
578For keys that consist entirely of letters, digits and underscore the following
579form can be used |expr-entry|: >
580 :let val = mydict.one
581 :let mydict.four = 4
582
583Since an entry can be any type, also a List and a Dictionary, the indexing and
584key lookup can be repeated: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000585 :echo dict.key[idx].key
Bram Moolenaard8b02732005-01-14 21:48:43 +0000586
587
588Dictionary to List conversion ~
589
Bram Moolenaar58b85342016-08-14 19:54:54 +0200590You may want to loop over the entries in a dictionary. For this you need to
Bram Moolenaard8b02732005-01-14 21:48:43 +0000591turn the Dictionary into a List and pass it to |:for|.
592
593Most often you want to loop over the keys, using the |keys()| function: >
594 :for key in keys(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000595 : echo key .. ': ' .. mydict[key]
Bram Moolenaard8b02732005-01-14 21:48:43 +0000596 :endfor
597
598The List of keys is unsorted. You may want to sort them first: >
599 :for key in sort(keys(mydict))
600
601To loop over the values use the |values()| function: >
602 :for v in values(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000603 : echo "value: " .. v
Bram Moolenaard8b02732005-01-14 21:48:43 +0000604 :endfor
605
606If you want both the key and the value use the |items()| function. It returns
Bram Moolenaard47d5222018-12-09 20:43:55 +0100607a List in which each item is a List with two items, the key and the value: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000608 :for [key, value] in items(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000609 : echo key .. ': ' .. value
Bram Moolenaard8b02732005-01-14 21:48:43 +0000610 :endfor
611
612
613Dictionary identity ~
Bram Moolenaar7c626922005-02-07 22:01:03 +0000614 *dict-identity*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000615Just like Lists you need to use |copy()| and |deepcopy()| to make a copy of a
616Dictionary. Otherwise, assignment results in referring to the same
617Dictionary: >
618 :let onedict = {'a': 1, 'b': 2}
619 :let adict = onedict
620 :let adict['a'] = 11
621 :echo onedict['a']
622 11
623
Bram Moolenaarf3bd51a2005-06-14 22:11:18 +0000624Two Dictionaries compare equal if all the key-value pairs compare equal. For
625more info see |list-identity|.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000626
627
628Dictionary modification ~
629 *dict-modification*
630To change an already existing entry of a Dictionary, or to add a new entry,
631use |:let| this way: >
632 :let dict[4] = "four"
633 :let dict['one'] = item
634
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000635Removing an entry from a Dictionary is done with |remove()| or |:unlet|.
636Three ways to remove the entry with key "aaa" from dict: >
637 :let i = remove(dict, 'aaa')
638 :unlet dict.aaa
639 :unlet dict['aaa']
Bram Moolenaard8b02732005-01-14 21:48:43 +0000640
641Merging a Dictionary with another is done with |extend()|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000642 :call extend(adict, bdict)
643This extends adict with all entries from bdict. Duplicate keys cause entries
644in adict to be overwritten. An optional third argument can change this.
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000645Note that the order of entries in a Dictionary is irrelevant, thus don't
646expect ":echo adict" to show the items from bdict after the older entries in
647adict.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000648
649Weeding out entries from a Dictionary can be done with |filter()|: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000650 :call filter(dict, 'v:val =~ "x"')
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000651This removes all entries from "dict" with a value not matching 'x'.
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200652This can also be used to remove all entries: >
653 call filter(dict, 0)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000654
Bram Moolenaar86b48162022-12-06 18:20:10 +0000655In some situations it is not allowed to remove or add entries to a Dictionary.
656Especially when iterating over all the entries. You will get *E1313* or
657another error in that case.
658
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000659
660Dictionary function ~
Bram Moolenaar26402cb2013-02-20 21:26:00 +0100661 *Dictionary-function* *self* *E725* *E862*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000662When a function is defined with the "dict" attribute it can be used in a
Bram Moolenaar58b85342016-08-14 19:54:54 +0200663special way with a dictionary. Example: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000664 :function Mylen() dict
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000665 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000666 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000667 :let mydict = {'data': [0, 1, 2, 3], 'len': function("Mylen")}
668 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000669
670This is like a method in object oriented programming. The entry in the
671Dictionary is a |Funcref|. The local variable "self" refers to the dictionary
Bram Moolenaar86b48162022-12-06 18:20:10 +0000672the function was invoked from. When using |Vim9| script you can use classes
673and objects, see `:class`.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000674
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000675It is also possible to add a function without the "dict" attribute as a
676Funcref to a Dictionary, but the "self" variable is not available then.
677
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000678 *numbered-function* *anonymous-function*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000679To avoid the extra name for the function it can be defined and directly
680assigned to a Dictionary in this way: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000681 :let mydict = {'data': [0, 1, 2, 3]}
Bram Moolenaar5a5f4592015-04-13 12:43:06 +0200682 :function mydict.len()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000683 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000684 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000685 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000686
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000687The function will then get a number and the value of dict.len is a |Funcref|
Bram Moolenaar58b85342016-08-14 19:54:54 +0200688that references this function. The function can only be used through a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000689|Funcref|. It will automatically be deleted when there is no |Funcref|
690remaining that refers to it.
691
692It is not necessary to use the "dict" attribute for a numbered function.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000693
Bram Moolenaar1affd722010-08-04 17:49:30 +0200694If you get an error for a numbered function, you can find out what it is with
695a trick. Assuming the function is 42, the command is: >
Bram Moolenaar34cc7d82021-09-21 20:09:51 +0200696 :function g:42
Bram Moolenaar1affd722010-08-04 17:49:30 +0200697
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000698
699Functions for Dictionaries ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000700 *E715*
701Functions that can be used with a Dictionary: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000702 :if has_key(dict, 'foo') " TRUE if dict has entry with key "foo"
703 :if empty(dict) " TRUE if dict is empty
704 :let l = len(dict) " number of items in dict
705 :let big = max(dict) " maximum value in dict
706 :let small = min(dict) " minimum value in dict
707 :let xs = count(dict, 'x') " count nr of times 'x' appears in dict
708 :let s = string(dict) " String representation of dict
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000709 :call map(dict, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaard8b02732005-01-14 21:48:43 +0000710
711
Bram Moolenaard8968242019-01-15 22:51:57 +01007121.5 Blobs ~
713 *blob* *Blob* *Blobs* *E978*
Bram Moolenaaraff74912019-03-30 18:11:49 +0100714A Blob is a binary object. It can be used to read an image from a file and
715send it over a channel, for example.
716
717A Blob mostly behaves like a |List| of numbers, where each number has the
718value of an 8-bit byte, from 0 to 255.
Bram Moolenaard8968242019-01-15 22:51:57 +0100719
720
721Blob creation ~
722
723A Blob can be created with a |blob-literal|: >
724 :let b = 0zFF00ED015DAF
Bram Moolenaar0d17f0d2019-01-22 22:20:38 +0100725Dots can be inserted between bytes (pair of hex characters) for readability,
726they don't change the value: >
727 :let b = 0zFF00.ED01.5DAF
Bram Moolenaard8968242019-01-15 22:51:57 +0100728
729A blob can be read from a file with |readfile()| passing the {type} argument
730set to "B", for example: >
731 :let b = readfile('image.png', 'B')
732
733A blob can be read from a channel with the |ch_readblob()| function.
734
735
736Blob index ~
737 *blob-index* *E979*
738A byte in the Blob can be accessed by putting the index in square brackets
739after the Blob. Indexes are zero-based, thus the first byte has index zero. >
740 :let myblob = 0z00112233
741 :let byte = myblob[0] " get the first byte: 0x00
742 :let byte = myblob[2] " get the third byte: 0x22
743
744A negative index is counted from the end. Index -1 refers to the last byte in
745the Blob, -2 to the last but one byte, etc. >
746 :let last = myblob[-1] " get the last byte: 0x33
747
748To avoid an error for an invalid index use the |get()| function. When an item
749is not available it returns -1 or the default value you specify: >
750 :echo get(myblob, idx)
751 :echo get(myblob, idx, 999)
752
753
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100754Blob iteration ~
755
756The |:for| loop executes commands for each byte of a Blob. The loop variable is
757set to each byte in the Blob. Example: >
758 :for byte in 0z112233
759 : call Doit(byte)
760 :endfor
761This calls Doit() with 0x11, 0x22 and 0x33.
762
763
Bram Moolenaard8968242019-01-15 22:51:57 +0100764Blob concatenation ~
zeertzjqb8170142024-02-08 11:21:44 +0100765 *blob-concatenation*
Bram Moolenaard8968242019-01-15 22:51:57 +0100766Two blobs can be concatenated with the "+" operator: >
767 :let longblob = myblob + 0z4455
zeertzjqb8170142024-02-08 11:21:44 +0100768 :let longblob = 0z4455 + myblob
769<
770A blob can be concatenated with another one in-place using |:let+=|: >
Bram Moolenaard8968242019-01-15 22:51:57 +0100771 :let myblob += 0z6677
zeertzjqb8170142024-02-08 11:21:44 +0100772<
773See |blob-modification| below for more about changing a blob in-place.
Bram Moolenaard8968242019-01-15 22:51:57 +0100774
775
776Part of a blob ~
777
778A part of the Blob can be obtained by specifying the first and last index,
779separated by a colon in square brackets: >
780 :let myblob = 0z00112233
Bram Moolenaard09091d2019-01-17 16:07:22 +0100781 :let shortblob = myblob[1:2] " get 0z1122
Bram Moolenaard8968242019-01-15 22:51:57 +0100782 :let shortblob = myblob[2:-1] " get 0z2233
783
784Omitting the first index is similar to zero. Omitting the last index is
785similar to -1. >
786 :let endblob = myblob[2:] " from item 2 to the end: 0z2233
787 :let shortblob = myblob[2:2] " Blob with one byte: 0z22
788 :let otherblob = myblob[:] " make a copy of the Blob
789
Bram Moolenaard09091d2019-01-17 16:07:22 +0100790If the first index is beyond the last byte of the Blob or the second index is
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100791before the first index, the result is an empty Blob. There is no error
Bram Moolenaard8968242019-01-15 22:51:57 +0100792message.
793
794If the second index is equal to or greater than the length of the list the
795length minus one is used: >
796 :echo myblob[2:8] " result: 0z2233
797
798
799Blob modification ~
Bram Moolenaara2baa732022-02-04 16:09:54 +0000800 *blob-modification* *E1182* *E1184*
Bram Moolenaard8968242019-01-15 22:51:57 +0100801To change a specific byte of a blob use |:let| this way: >
802 :let blob[4] = 0x44
803
804When the index is just one beyond the end of the Blob, it is appended. Any
805higher index is an error.
806
807To change a sequence of bytes the [:] notation can be used: >
808 let blob[1:3] = 0z445566
Bram Moolenaard09091d2019-01-17 16:07:22 +0100809The length of the replaced bytes must be exactly the same as the value
Bram Moolenaard8968242019-01-15 22:51:57 +0100810provided. *E972*
811
812To change part of a blob you can specify the first and last byte to be
Bram Moolenaard09091d2019-01-17 16:07:22 +0100813modified. The value must have the same number of bytes in the range: >
814 :let blob[3:5] = 0z334455
Bram Moolenaard8968242019-01-15 22:51:57 +0100815
zeertzjqb8170142024-02-08 11:21:44 +0100816To add items to a Blob in-place, you can use |:let+=| (|blob-concatenation|): >
817 :let blobA = 0z1122
818 :let blobA += 0z3344
819<
820When two variables refer to the same Blob, changing one Blob in-place will
821cause the referenced Blob to be changed in-place: >
822 :let blobA = 0z1122
823 :let blobB = blobA
824 :let blobB += 0z3344
825 :echo blobA
826 0z11223344
827<
Bram Moolenaard8968242019-01-15 22:51:57 +0100828You can also use the functions |add()|, |remove()| and |insert()|.
829
830
831Blob identity ~
832
833Blobs can be compared for equality: >
834 if blob == 0z001122
835And for equal identity: >
836 if blob is otherblob
837< *blob-identity* *E977*
838When variable "aa" is a Blob and you assign it to another variable "bb", both
839variables refer to the same Blob. Then the "is" operator returns true.
840
841When making a copy using [:] or |copy()| the values are the same, but the
842identity is different: >
843 :let blob = 0z112233
844 :let blob2 = blob
845 :echo blob == blob2
846< 1 >
847 :echo blob is blob2
848< 1 >
849 :let blob3 = blob[:]
850 :echo blob == blob3
851< 1 >
852 :echo blob is blob3
853< 0
854
Bram Moolenaard09091d2019-01-17 16:07:22 +0100855Making a copy of a Blob is done with the |copy()| function. Using [:] also
Bram Moolenaard8968242019-01-15 22:51:57 +0100856works, as explained above.
857
858
8591.6 More about variables ~
Bram Moolenaar13065c42005-01-08 16:08:21 +0000860 *more-variables*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861If you need to know the type of a variable or expression, use the |type()|
862function.
863
864When the '!' flag is included in the 'viminfo' option, global variables that
865start with an uppercase letter, and don't contain a lowercase letter, are
866stored in the viminfo file |viminfo-file|.
867
868When the 'sessionoptions' option contains "global", global variables that
869start with an uppercase letter and contain at least one lowercase letter are
870stored in the session file |session-file|.
871
872variable name can be stored where ~
873my_var_6 not
874My_Var_6 session file
875MY_VAR_6 viminfo file
876
877
Bram Moolenaar5da36052021-12-27 15:39:57 +0000878In legacy script it is possible to form a variable name with curly braces, see
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879|curly-braces-names|.
880
881==============================================================================
8822. Expression syntax *expression-syntax*
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000883 *E1143*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884Expression syntax summary, from least to most significant:
885
Bram Moolenaar50ba5262016-09-22 22:33:02 +0200886|expr1| expr2
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200887 expr2 ? expr1 : expr1 if-then-else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200889|expr2| expr3
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200890 expr3 || expr3 ... logical OR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200892|expr3| expr4
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200893 expr4 && expr4 ... logical AND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200895|expr4| expr5
896 expr5 == expr5 equal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 expr5 != expr5 not equal
898 expr5 > expr5 greater than
899 expr5 >= expr5 greater than or equal
900 expr5 < expr5 smaller than
901 expr5 <= expr5 smaller than or equal
902 expr5 =~ expr5 regexp matches
903 expr5 !~ expr5 regexp doesn't match
904
905 expr5 ==? expr5 equal, ignoring case
906 expr5 ==# expr5 equal, match case
907 etc. As above, append ? for ignoring case, # for
908 matching case
909
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100910 expr5 is expr5 same |List|, |Dictionary| or |Blob| instance
911 expr5 isnot expr5 different |List|, |Dictionary| or |Blob|
912 instance
Bram Moolenaarde8866b2005-01-06 23:24:37 +0000913
K.Takatac23fc362023-12-09 05:51:04 +0900914|expr5| expr6
915 expr6 << expr6 bitwise left shift
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100916 expr6 >> expr6 bitwise right shift
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200918|expr6| expr7
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100919 expr7 + expr7 ... number addition, list or blob concatenation
920 expr7 - expr7 ... number subtraction
921 expr7 . expr7 ... string concatenation
922 expr7 .. expr7 ... string concatenation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200924|expr7| expr8
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100925 expr8 * expr8 ... number multiplication
926 expr8 / expr8 ... number division
927 expr8 % expr8 ... number modulo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200929|expr8| expr9
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100930 <type>expr9 type check and conversion (|Vim9| only)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000931
Bram Moolenaar5da36052021-12-27 15:39:57 +0000932|expr9| expr10
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100933 ! expr9 logical NOT
934 - expr9 unary minus
935 + expr9 unary plus
Bram Moolenaar5da36052021-12-27 15:39:57 +0000936
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100937|expr10| expr11
938 expr10[expr1] byte of a String or item of a |List|
939 expr10[expr1 : expr1] substring of a String or sublist of a |List|
940 expr10.name entry in a |Dictionary|
941 expr10(expr1, ...) function call with |Funcref| variable
942 expr10->name(expr1, ...) |method| call
943
944|expr11| number number constant
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000945 "string" string constant, backslash is special
Bram Moolenaard8b02732005-01-14 21:48:43 +0000946 'string' string constant, ' is doubled
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000947 [expr1, ...] |List|
948 {expr1: expr1, ...} |Dictionary|
Bram Moolenaar5da36052021-12-27 15:39:57 +0000949 #{key: expr1, ...} legacy |Dictionary|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 &option option value
951 (expr1) nested expression
952 variable internal variable
953 va{ria}ble internal variable with curly braces
954 $VAR environment variable
955 @r contents of register 'r'
956 function(expr1, ...) function call
957 func{ti}on(expr1, ...) function call with curly braces
Bram Moolenaar5da36052021-12-27 15:39:57 +0000958 {args -> expr1} legacy lambda expression
959 (args) => expr1 Vim9 lambda expression
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
961
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200962"..." indicates that the operations in this level can be concatenated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963Example: >
964 &nu || &list && &shell == "csh"
965
966All expressions within one level are parsed from left to right.
967
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000968Expression nesting is limited to 1000 levels deep (300 when build with MSVC)
969to avoid running out of stack and crashing. *E1169*
970
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000972expr1 *expr1* *ternary* *falsy-operator* *??* *E109*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973-----
974
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000975The ternary operator: expr2 ? expr1 : expr1
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200976The falsy operator: expr2 ?? expr1
977
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000978Ternary operator ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979
Bram Moolenaar5da36052021-12-27 15:39:57 +0000980In legacy script the expression before the '?' is evaluated to a number. If
981it evaluates to |TRUE|, the result is the value of the expression between the
982'?' and ':', otherwise the result is the value of the expression after the
983':'.
984
985In |Vim9| script the first expression must evaluate to a boolean, see
986|vim9-boolean|.
987
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988Example: >
989 :echo lnum == 1 ? "top" : lnum
990
991Since the first expression is an "expr2", it cannot contain another ?:. The
992other two expressions can, thus allow for recursive use of ?:.
993Example: >
994 :echo lnum == 1 ? "top" : lnum == 1000 ? "last" : lnum
995
996To keep this readable, using |line-continuation| is suggested: >
997 :echo lnum == 1
998 :\ ? "top"
999 :\ : lnum == 1000
1000 :\ ? "last"
1001 :\ : lnum
1002
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001003You should always put a space before the ':', otherwise it can be mistaken for
1004use in a variable such as "a:1".
1005
Bram Moolenaar92f26c22020-10-03 20:17:30 +02001006Falsy operator ~
1007
1008This is also known as the "null coalescing operator", but that's too
1009complicated, thus we just call it the falsy operator.
1010
1011The expression before the '??' is evaluated. If it evaluates to
1012|truthy|, this is used as the result. Otherwise the expression after the '??'
1013is evaluated and used as the result. This is most useful to have a default
1014value for an expression that may result in zero or empty: >
1015 echo theList ?? 'list is empty'
1016 echo GetName() ?? 'unknown'
1017
1018These are similar, but not equal: >
1019 expr2 ?? expr1
1020 expr2 ? expr2 : expr1
Bram Moolenaar5da36052021-12-27 15:39:57 +00001021In the second line "expr2" is evaluated twice. And in |Vim9| script the type
1022of expr2 before "?" must be a boolean.
Bram Moolenaar92f26c22020-10-03 20:17:30 +02001023
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024
1025expr2 and expr3 *expr2* *expr3*
1026---------------
1027
Bram Moolenaar04186092016-08-29 21:55:35 +02001028expr3 || expr3 .. logical OR *expr-barbar*
1029expr4 && expr4 .. logical AND *expr-&&*
1030
Bram Moolenaar5da36052021-12-27 15:39:57 +00001031The "||" and "&&" operators take one argument on each side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032
Bram Moolenaar5da36052021-12-27 15:39:57 +00001033In legacy script the arguments are (converted to) Numbers.
1034
1035In |Vim9| script the values must be boolean, see |vim9-boolean|. Use "!!" to
1036convert any type to a boolean.
1037
1038The result is:
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001039 input output ~
1040n1 n2 n1 || n2 n1 && n2 ~
1041|FALSE| |FALSE| |FALSE| |FALSE|
1042|FALSE| |TRUE| |TRUE| |FALSE|
1043|TRUE| |FALSE| |TRUE| |FALSE|
1044|TRUE| |TRUE| |TRUE| |TRUE|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045
1046The operators can be concatenated, for example: >
1047
1048 &nu || &list && &shell == "csh"
1049
1050Note that "&&" takes precedence over "||", so this has the meaning of: >
1051
1052 &nu || (&list && &shell == "csh")
1053
1054Once the result is known, the expression "short-circuits", that is, further
1055arguments are not evaluated. This is like what happens in C. For example: >
1056
1057 let a = 1
1058 echo a || b
1059
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001060This is valid even if there is no variable called "b" because "a" is |TRUE|,
1061so the result must be |TRUE|. Similarly below: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062
1063 echo exists("b") && b == "yes"
1064
1065This is valid whether "b" has been defined or not. The second clause will
1066only be evaluated if "b" has been defined.
1067
1068
Bram Moolenaara2baa732022-02-04 16:09:54 +00001069expr4 *expr4* *E1153*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070-----
1071
1072expr5 {cmp} expr5
1073
Bram Moolenaar5da36052021-12-27 15:39:57 +00001074Compare two expr5 expressions. In legacy script the result is a 0 if it
1075evaluates to false, or 1 if it evaluates to true. In |Vim9| script the result
1076is |true| or |false|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077
Bram Moolenaar446cb832008-06-24 21:56:24 +00001078 *expr-==* *expr-!=* *expr->* *expr->=*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 *expr-<* *expr-<=* *expr-=~* *expr-!~*
1080 *expr-==#* *expr-!=#* *expr->#* *expr->=#*
1081 *expr-<#* *expr-<=#* *expr-=~#* *expr-!~#*
1082 *expr-==?* *expr-!=?* *expr->?* *expr->=?*
1083 *expr-<?* *expr-<=?* *expr-=~?* *expr-!~?*
Bram Moolenaar251e1912011-06-19 05:09:16 +02001084 *expr-is* *expr-isnot* *expr-is#* *expr-isnot#*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001085 *expr-is?* *expr-isnot?* *E1072*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 use 'ignorecase' match case ignore case ~
1087equal == ==# ==?
1088not equal != !=# !=?
1089greater than > ># >?
1090greater than or equal >= >=# >=?
1091smaller than < <# <?
1092smaller than or equal <= <=# <=?
1093regexp matches =~ =~# =~?
1094regexp doesn't match !~ !~# !~?
Bram Moolenaar251e1912011-06-19 05:09:16 +02001095same instance is is# is?
1096different instance isnot isnot# isnot?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097
1098Examples:
1099"abc" ==# "Abc" evaluates to 0
1100"abc" ==? "Abc" evaluates to 1
1101"abc" == "Abc" evaluates to 1 if 'ignorecase' is set, 0 otherwise
Bram Moolenaar5da36052021-12-27 15:39:57 +00001102NOTE: In |Vim9| script 'ignorecase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103
Bram Moolenaar13065c42005-01-08 16:08:21 +00001104 *E691* *E692*
Bram Moolenaar01164a62017-11-02 22:58:42 +01001105A |List| can only be compared with a |List| and only "equal", "not equal",
1106"is" and "isnot" can be used. This compares the values of the list,
1107recursively. Ignoring case means case is ignored when comparing item values.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001108
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001109 *E735* *E736*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001110A |Dictionary| can only be compared with a |Dictionary| and only "equal", "not
Bram Moolenaar01164a62017-11-02 22:58:42 +01001111equal", "is" and "isnot" can be used. This compares the key/values of the
1112|Dictionary| recursively. Ignoring case means case is ignored when comparing
1113item values.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001114
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +02001115 *E694*
Bram Moolenaare18dbe82016-07-02 21:42:23 +02001116A |Funcref| can only be compared with a |Funcref| and only "equal", "not
1117equal", "is" and "isnot" can be used. Case is never ignored. Whether
1118arguments or a Dictionary are bound (with a partial) matters. The
1119Dictionaries must also be equal (or the same, in case of "is") and the
1120arguments must be equal (or the same).
1121
1122To compare Funcrefs to see if they refer to the same function, ignoring bound
1123Dictionary and arguments, use |get()| to get the function name: >
1124 if get(Part1, 'name') == get(Part2, 'name')
1125 " Part1 and Part2 refer to the same function
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001126< *E1037*
Bram Moolenaar5e66b422019-01-24 21:58:10 +01001127Using "is" or "isnot" with a |List|, |Dictionary| or |Blob| checks whether
1128the expressions are referring to the same |List|, |Dictionary| or |Blob|
1129instance. A copy of a |List| is different from the original |List|. When
1130using "is" without a |List|, |Dictionary| or |Blob|, it is equivalent to
1131using "equal", using "isnot" equivalent to using "not equal". Except that
1132a different type means the values are different: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001133 echo 4 == '4'
1134 1
1135 echo 4 is '4'
1136 0
1137 echo 0 is []
1138 0
1139"is#"/"isnot#" and "is?"/"isnot?" can be used to match and ignore case.
Bram Moolenaare1f3fd12022-08-15 18:51:32 +01001140In |Vim9| script this doesn't work, two strings are never identical.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001141
Bram Moolenaar5da36052021-12-27 15:39:57 +00001142In legacy script, when comparing a String with a Number, the String is
1143converted to a Number, and the comparison is done on Numbers. This means
1144that: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001145 echo 0 == 'x'
1146 1
1147because 'x' converted to a Number is zero. However: >
1148 echo [0] == ['x']
1149 0
1150Inside a List or Dictionary this conversion is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151
Bram Moolenaar5da36052021-12-27 15:39:57 +00001152In |Vim9| script the types must match.
1153
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154When comparing two Strings, this is done with strcmp() or stricmp(). This
1155results in the mathematical difference (comparing byte values), not
1156necessarily the alphabetical difference in the local language.
1157
Bram Moolenaar446cb832008-06-24 21:56:24 +00001158When using the operators with a trailing '#', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001159'ignorecase' is off, the comparing is done with strcmp(): case matters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160
1161When using the operators with a trailing '?', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001162'ignorecase' is set, the comparing is done with stricmp(): case is ignored.
1163
1164'smartcase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165
1166The "=~" and "!~" operators match the lefthand argument with the righthand
1167argument, which is used as a pattern. See |pattern| for what a pattern is.
1168This matching is always done like 'magic' was set and 'cpoptions' is empty, no
1169matter what the actual value of 'magic' or 'cpoptions' is. This makes scripts
1170portable. To avoid backslashes in the regexp pattern to be doubled, use a
1171single-quote string, see |literal-string|.
1172Since a string is considered to be a single line, a multi-line pattern
1173(containing \n, backslash-n) will not match. However, a literal NL character
1174can be matched like an ordinary character. Examples:
1175 "foo\nbar" =~ "\n" evaluates to 1
1176 "foo\nbar" =~ "\\n" evaluates to 0
1177
1178
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001179expr5 *expr5* *bitwise-shift*
1180-----
1181expr6 << expr6 bitwise left shift *expr-<<*
1182expr6 >> expr6 bitwise right shift *expr->>*
1183 *E1282* *E1283*
1184The "<<" and ">>" operators can be used to perform bitwise left or right shift
1185of the left operand by the number of bits specified by the right operand. The
Bram Moolenaar338bf582022-05-22 20:16:32 +01001186operands are used as positive numbers. When shifting right with ">>" the
Bram Moolenaard592deb2022-06-17 15:42:40 +01001187topmost bit (sometimes called the sign bit) is cleared. If the right operand
Bram Moolenaar338bf582022-05-22 20:16:32 +01001188(shift amount) is more than the maximum number of bits in a number
1189(|v:numbersize|) the result is zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001191
1192expr6 and expr7 *expr6* *expr7* *E1036* *E1051*
1193---------------
1194expr7 + expr7 Number addition, |List| or |Blob| concatenation *expr-+*
1195expr7 - expr7 Number subtraction *expr--*
1196expr7 . expr7 String concatenation *expr-.*
1197expr7 .. expr7 String concatenation *expr-..*
1198
1199For |Lists| only "+" is possible and then both expr7 must be a list. The
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001200result is a new list with the two lists Concatenated.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001201
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001202For String concatenation ".." is preferred, since "." is ambiguous, it is also
1203used for |Dict| member access and floating point numbers.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001204In |Vim9| script and when |vimscript-version| is 2 or higher, using "." is not
1205allowed.
1206
1207In |Vim9| script the arguments of ".." are converted to String for simple
1208types: Number, Float, Special and Bool. For other types |string()| should be
1209used.
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001210
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001211expr8 * expr8 Number multiplication *expr-star*
1212expr8 / expr8 Number division *expr-/*
1213expr8 % expr8 Number modulo *expr-%*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214
Bram Moolenaar5da36052021-12-27 15:39:57 +00001215In legacy script, for all operators except "." and "..", Strings are converted
1216to Numbers.
1217
Bram Moolenaard6e256c2011-12-14 15:32:50 +01001218For bitwise operators see |and()|, |or()| and |xor()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219
Bram Moolenaar5da36052021-12-27 15:39:57 +00001220Note the difference between "+" and ".." in legacy script:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 "123" + "456" = 579
Bram Moolenaar5da36052021-12-27 15:39:57 +00001222 "123" .. "456" = "123456"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
Bram Moolenaar5da36052021-12-27 15:39:57 +00001224Since '..' has the same precedence as '+' and '-', you need to read: >
1225 1 .. 90 + 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001226As: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001227 (1 .. 90) + 90.0
1228That works in legacy script, since the String "190" is automatically converted
1229to the Number 190, which can be added to the Float 90.0. However: >
1230 1 .. 90 * 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001231Should be read as: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001232 1 .. (90 * 90.0)
1233Since '..' has lower precedence than '*'. This does NOT work, since this
Bram Moolenaar446cb832008-06-24 21:56:24 +00001234attempts to concatenate a Float and a String.
1235
1236When dividing a Number by zero the result depends on the value:
1237 0 / 0 = -0x80000000 (like NaN for Float)
1238 >0 / 0 = 0x7fffffff (like positive infinity)
1239 <0 / 0 = -0x7fffffff (like negative infinity)
1240 (before Vim 7.2 it was always 0x7fffffff)
Bram Moolenaara2baa732022-02-04 16:09:54 +00001241In |Vim9| script dividing a number by zero is an error. *E1154*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001242
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001243When 64-bit Number support is enabled:
1244 0 / 0 = -0x8000000000000000 (like NaN for Float)
1245 >0 / 0 = 0x7fffffffffffffff (like positive infinity)
1246 <0 / 0 = -0x7fffffffffffffff (like negative infinity)
1247
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248When the righthand side of '%' is zero, the result is 0.
1249
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001250None of these work for |Funcref|s.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001251
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001252".", ".." and "%" do not work for Float. *E804* *E1035*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001253
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001255expr8 *expr8*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256-----
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001257<type>expr9
Bram Moolenaar5da36052021-12-27 15:39:57 +00001258
1259This is only available in |Vim9| script, see |type-casting|.
1260
1261
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001262expr9 *expr9*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001263-----
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001264! expr9 logical NOT *expr-!*
1265- expr9 unary minus *expr-unary--*
1266+ expr9 unary plus *expr-unary-+*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001268For '!' |TRUE| becomes |FALSE|, |FALSE| becomes |TRUE| (one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269For '-' the sign of the number is changed.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001270For '+' the number is unchanged. Note: "++" has no effect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
Bram Moolenaar5da36052021-12-27 15:39:57 +00001272In legacy script a String will be converted to a Number first. Note that if
1273the string does not start with a digit you likely don't get what you expect.
1274
1275In |Vim9| script an error is given when "-" or "+" is used and the type is not
1276a number.
1277
1278In |Vim9| script "!" can be used for any type and the result is always a
1279boolean. Use "!!" to convert any type to a boolean, according to whether the
1280value is |falsy|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281
Bram Moolenaar58b85342016-08-14 19:54:54 +02001282These three can be repeated and mixed. Examples:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 !-1 == 0
1284 !!8 == 1
1285 --9 == 9
1286
1287
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001288expr10 *expr10*
1289------
1290This expression is either |expr11| or a sequence of the alternatives below,
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001291in any order. E.g., these are all possible:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001292 expr10[expr1].name
1293 expr10.name[expr1]
1294 expr10(expr1, ...)[expr1].name
1295 expr10->(expr1, ...)[expr1]
Bram Moolenaarac92e252019-08-03 21:58:38 +02001296Evaluation is always from left to right.
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001297
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001298expr10[expr1] item of String or |List| *expr-[]* *E111*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001299 *E909* *subscript* *E1062*
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001300In legacy Vim script:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001301If expr10 is a Number or String this results in a String that contains the
1302expr1'th single byte from expr10. expr10 is used as a String (a number is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001303automatically converted to a String), expr1 as a Number. This doesn't
Bram Moolenaar207f0092020-08-30 17:20:20 +02001304recognize multibyte encodings, see `byteidx()` for an alternative, or use
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001305`split()` to turn the string into a list of characters. Example, to get the
1306byte under the cursor: >
Bram Moolenaar61660ea2006-04-07 21:40:07 +00001307 :let c = getline(".")[col(".") - 1]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308
Bram Moolenaara2baa732022-02-04 16:09:54 +00001309In |Vim9| script: *E1147* *E1148*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001310If expr10 is a String this results in a String that contains the expr1'th
1311single character (including any composing characters) from expr10. To use byte
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001312indexes use |strpart()|.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001313
1314Index zero gives the first byte or character. Careful: text column numbers
1315start with one!
1316
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317If the length of the String is less than the index, the result is an empty
Bram Moolenaar85084ef2016-01-17 22:26:33 +01001318String. A negative index always results in an empty string (reason: backward
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001319compatibility). Use [-1:] to get the last byte or character.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001320In Vim9 script a negative index is used like with a list: count from the end.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001321
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001322If expr10 is a |List| then it results the item at index expr1. See |list-index|
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001323for possible index values. If the index is out of range this results in an
Bram Moolenaar58b85342016-08-14 19:54:54 +02001324error. Example: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001325 :let item = mylist[-1] " get last item
1326
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001327Generally, if a |List| index is equal to or higher than the length of the
1328|List|, or more negative than the length of the |List|, this results in an
1329error.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001330
Bram Moolenaard8b02732005-01-14 21:48:43 +00001331
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01001332expr10[expr1a : expr1b] substring or |sublist| *expr-[:]* *substring*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001333
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001334If expr10 is a String this results in the substring with the bytes or
1335characters from expr1a to and including expr1b. expr10 is used as a String,
Bram Moolenaar207f0092020-08-30 17:20:20 +02001336expr1a and expr1b are used as a Number.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001337
1338In legacy Vim script the indexes are byte indexes. This doesn't recognize
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001339multibyte encodings, see |byteidx()| for computing the indexes. If expr10 is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001340a Number it is first converted to a String.
1341
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001342In Vim9 script the indexes are character indexes and include composing
1343characters. To use byte indexes use |strpart()|. To use character indexes
1344without including composing characters use |strcharpart()|.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001345
Bram Moolenaar6601b622021-01-13 21:47:15 +01001346The item at index expr1b is included, it is inclusive. For an exclusive index
1347use the |slice()| function.
1348
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001349If expr1a is omitted zero is used. If expr1b is omitted the length of the
1350string minus one is used.
1351
1352A negative number can be used to measure from the end of the string. -1 is
1353the last character, -2 the last but one, etc.
1354
1355If an index goes out of range for the string characters are omitted. If
1356expr1b is smaller than expr1a the result is an empty string.
1357
1358Examples: >
1359 :let c = name[-1:] " last byte of a string
Bram Moolenaar207f0092020-08-30 17:20:20 +02001360 :let c = name[0:-1] " the whole string
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001361 :let c = name[-2:-2] " last but one byte of a string
1362 :let s = line(".")[4:] " from the fifth byte to the end
1363 :let s = s[:-3] " remove last two bytes
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001364<
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001365 *slice*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001366If expr10 is a |List| this results in a new |List| with the items indicated by
Bram Moolenaar58b85342016-08-14 19:54:54 +02001367the indexes expr1a and expr1b. This works like with a String, as explained
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001368just above. Also see |sublist| below. Examples: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001369 :let l = mylist[:3] " first four items
1370 :let l = mylist[4:4] " List with one item
1371 :let l = mylist[:] " shallow copy of a List
1372
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001373If expr10 is a |Blob| this results in a new |Blob| with the bytes in the
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001374indexes expr1a and expr1b, inclusive. Examples: >
1375 :let b = 0zDEADBEEF
1376 :let bs = b[1:2] " 0zADBE
Bram Moolenaard09091d2019-01-17 16:07:22 +01001377 :let bs = b[:] " copy of 0zDEADBEEF
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001378
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001379Using expr10[expr1] or expr10[expr1a : expr1b] on a |Funcref| results in an
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001380error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381
Bram Moolenaarda440d22016-01-16 21:27:23 +01001382Watch out for confusion between a namespace and a variable followed by a colon
1383for a sublist: >
1384 mylist[n:] " uses variable n
1385 mylist[s:] " uses namespace s:, error!
1386
Bram Moolenaard8b02732005-01-14 21:48:43 +00001387
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001388expr10.name entry in a |Dictionary| *expr-entry*
Bram Moolenaara2baa732022-02-04 16:09:54 +00001389 *E1203* *E1229*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001390If expr10 is a |Dictionary| and it is followed by a dot, then the following
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001391name will be used as a key in the |Dictionary|. This is just like:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001392expr10[name].
Bram Moolenaard8b02732005-01-14 21:48:43 +00001393
1394The name must consist of alphanumeric characters, just like a variable name,
1395but it may start with a number. Curly braces cannot be used.
1396
1397There must not be white space before or after the dot.
1398
1399Examples: >
1400 :let dict = {"one": 1, 2: "two"}
Bram Moolenaar68e65602019-05-26 21:33:31 +02001401 :echo dict.one " shows "1"
1402 :echo dict.2 " shows "two"
1403 :echo dict .2 " error because of space before the dot
Bram Moolenaard8b02732005-01-14 21:48:43 +00001404
1405Note that the dot is also used for String concatenation. To avoid confusion
1406always put spaces around the dot for String concatenation.
1407
1408
Bram Moolenaar938ae282023-02-20 20:44:55 +00001409expr10(expr1, ...) |Funcref| function call *E1085*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001410
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001411When expr10 is a |Funcref| type variable, invoke the function it refers to.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001412
1413
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001414expr10->name([args]) method call *method* *->*
1415expr10->{lambda}([args])
Bram Moolenaara2baa732022-02-04 16:09:54 +00001416 *E260* *E276* *E1265*
Bram Moolenaar25e42232019-08-04 15:04:10 +02001417For methods that are also available as global functions this is the same as: >
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001418 name(expr10 [, args])
1419There can also be methods specifically for the type of "expr10".
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001420
Bram Moolenaar51841322019-08-08 21:10:01 +02001421This allows for chaining, passing the value that one method returns to the
1422next method: >
Bram Moolenaar25e42232019-08-04 15:04:10 +02001423 mylist->filter(filterexpr)->map(mapexpr)->sort()->join()
1424<
Bram Moolenaar22a0c0c2019-08-09 23:25:08 +02001425Example of using a lambda: >
Bram Moolenaar02b31112019-08-31 22:16:38 +02001426 GetPercentage()->{x -> x * 100}()->printf('%d%%')
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001427<
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001428When using -> the |expr9| operators will be applied first, thus: >
Bram Moolenaar93cf85f2019-08-17 21:36:28 +02001429 -1.234->string()
1430Is equivalent to: >
1431 (-1.234)->string()
1432And NOT: >
1433 -(1.234->string())
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001434
1435What comes after "->" can be a name, a simple expression (not containing any
Bram Moolenaar944697a2022-02-20 19:48:20 +00001436parenthesis), or any expression in parentheses: >
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001437 base->name(args)
1438 base->some.name(args)
1439 base->alist[idx](args)
1440 base->(getFuncRef())(args)
1441Note that in the last call the base is passed to the function resulting from
Bram Moolenaar2ecbe532022-07-29 21:36:21 +01001442"(getFuncRef())", inserted before "args". *E1275*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001443
Bram Moolenaar51841322019-08-08 21:10:01 +02001444 *E274*
1445"->name(" must not contain white space. There can be white space before the
1446"->" and after the "(", thus you can split the lines like this: >
1447 mylist
1448 \ ->filter(filterexpr)
1449 \ ->map(mapexpr)
1450 \ ->sort()
1451 \ ->join()
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001452
1453When using the lambda form there must be no white space between the } and the
1454(.
1455
Bram Moolenaar25e42232019-08-04 15:04:10 +02001456
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001457 *expr11*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458number
1459------
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01001460number number constant *expr-number*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001462 *0x* *hex-number* *0o* *octal-number* *binary-number*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001463Decimal, Hexadecimal (starting with 0x or 0X), Binary (starting with 0b or 0B)
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02001464and Octal (starting with 0, 0o or 0O).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465
Bram Moolenaar338bf582022-05-22 20:16:32 +01001466Assuming 64 bit numbers are used (see |v:numbersize|) an unsigned number is
1467truncated to 0x7fffffffffffffff or 9223372036854775807. You can use -1 to get
14680xffffffffffffffff.
1469
Bram Moolenaar446cb832008-06-24 21:56:24 +00001470 *floating-point-format*
1471Floating point numbers can be written in two forms:
1472
1473 [-+]{N}.{M}
Bram Moolenaar8a94d872015-01-25 13:02:57 +01001474 [-+]{N}.{M}[eE][-+]{exp}
Bram Moolenaar446cb832008-06-24 21:56:24 +00001475
1476{N} and {M} are numbers. Both {N} and {M} must be present and can only
Bram Moolenaar6aa57292021-08-14 21:25:52 +02001477contain digits, except that in |Vim9| script in {N} single quotes between
1478digits are ignored.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001479[-+] means there is an optional plus or minus sign.
1480{exp} is the exponent, power of 10.
Bram Moolenaar58b85342016-08-14 19:54:54 +02001481Only a decimal point is accepted, not a comma. No matter what the current
Bram Moolenaar446cb832008-06-24 21:56:24 +00001482locale is.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001483
1484Examples:
1485 123.456
1486 +0.0001
1487 55.0
1488 -0.123
1489 1.234e03
1490 1.0E-6
1491 -3.1416e+88
1492
1493These are INVALID:
1494 3. empty {M}
1495 1e40 missing .{M}
1496
1497Rationale:
1498Before floating point was introduced, the text "123.456" was interpreted as
1499the two numbers "123" and "456", both converted to a string and concatenated,
1500resulting in the string "123456". Since this was considered pointless, and we
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001501could not find it intentionally being used in Vim scripts, this backwards
Bram Moolenaar446cb832008-06-24 21:56:24 +00001502incompatibility was accepted in favor of being able to use the normal notation
1503for floating point numbers.
1504
Bram Moolenaard47d5222018-12-09 20:43:55 +01001505 *float-pi* *float-e*
1506A few useful values to copy&paste: >
1507 :let pi = 3.14159265359
1508 :let e = 2.71828182846
1509Or, if you don't want to write them in as floating-point literals, you can
1510also use functions, like the following: >
1511 :let pi = acos(-1.0)
1512 :let e = exp(1.0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001513<
Bram Moolenaar446cb832008-06-24 21:56:24 +00001514 *floating-point-precision*
1515The precision and range of floating points numbers depends on what "double"
1516means in the library Vim was compiled with. There is no way to change this at
1517runtime.
1518
1519The default for displaying a |Float| is to use 6 decimal places, like using
1520printf("%g", f). You can select something else when using the |printf()|
1521function. Example: >
1522 :echo printf('%.15e', atan(1))
1523< 7.853981633974483e-01
1524
1525
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526
Bram Moolenaar979243b2015-06-26 19:35:49 +02001527string *string* *String* *expr-string* *E114*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528------
1529"string" string constant *expr-quote*
1530
1531Note that double quotes are used.
1532
1533A string constant accepts these special characters:
1534\... three-digit octal number (e.g., "\316")
1535\.. two-digit octal number (must be followed by non-digit)
1536\. one-digit octal number (must be followed by non-digit)
1537\x.. byte specified with two hex numbers (e.g., "\x1f")
1538\x. byte specified with one hex number (must be followed by non-hex char)
1539\X.. same as \x..
1540\X. same as \x.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001541\u.... character specified with up to 4 hex numbers, stored according to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 current value of 'encoding' (e.g., "\u02a4")
Bram Moolenaar541f92d2015-06-19 13:27:23 +02001543\U.... same as \u but allows up to 8 hex numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544\b backspace <BS>
1545\e escape <Esc>
Bram Moolenaar6e649222021-10-04 21:32:54 +01001546\f formfeed 0x0C
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547\n newline <NL>
1548\r return <CR>
1549\t tab <Tab>
1550\\ backslash
1551\" double quote
Bram Moolenaar00a927d2010-05-14 23:24:24 +02001552\<xxx> Special key named "xxx". e.g. "\<C-W>" for CTRL-W. This is for use
Bram Moolenaar58b85342016-08-14 19:54:54 +02001553 in mappings, the 0x80 byte is escaped.
1554 To use the double quote character it must be escaped: "<M-\">".
Bram Moolenaar6e649222021-10-04 21:32:54 +01001555 Don't use <Char-xxxx> to get a UTF-8 character, use \uxxxx as
Bram Moolenaar58b85342016-08-14 19:54:54 +02001556 mentioned above.
Bram Moolenaarfccd93f2020-05-31 22:06:51 +02001557\<*xxx> Like \<xxx> but prepends a modifier instead of including it in the
1558 character. E.g. "\<C-w>" is one character 0x17 while "\<*C-w>" is four
Bram Moolenaarebe9d342020-05-30 21:52:54 +02001559 bytes: 3 for the CTRL modifier and then character "W".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001561Note that "\xff" is stored as the byte 255, which may be invalid in some
1562encodings. Use "\u00ff" to store character 255 according to the current value
1563of 'encoding'.
1564
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565Note that "\000" and "\x00" force the end of the string.
1566
1567
Bram Moolenaard8968242019-01-15 22:51:57 +01001568blob-literal *blob-literal* *E973*
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001569------------
1570
1571Hexadecimal starting with 0z or 0Z, with an arbitrary number of bytes.
1572The sequence must be an even number of hex characters. Example: >
1573 :let b = 0zFF00ED015DAF
1574
1575
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576literal-string *literal-string* *E115*
1577---------------
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001578'string' string constant *expr-'*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579
1580Note that single quotes are used.
1581
Bram Moolenaar58b85342016-08-14 19:54:54 +02001582This string is taken as it is. No backslashes are removed or have a special
Bram Moolenaard8b02732005-01-14 21:48:43 +00001583meaning. The only exception is that two quotes stand for one quote.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001584
1585Single quoted strings are useful for patterns, so that backslashes do not need
Bram Moolenaar58b85342016-08-14 19:54:54 +02001586to be doubled. These two commands are equivalent: >
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001587 if a =~ "\\s*"
1588 if a =~ '\s*'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589
1590
Bram Moolenaarb59ae592022-11-23 23:46:31 +00001591interpolated-string *$quote* *interpolated-string*
LemonBoy2eaef102022-05-06 13:14:50 +01001592--------------------
1593$"string" interpolated string constant *expr-$quote*
1594$'string' interpolated literal string constant *expr-$'*
1595
1596Interpolated strings are an extension of the |string| and |literal-string|,
1597allowing the inclusion of Vim script expressions (see |expr1|). Any
1598expression returning a value can be enclosed between curly braces. The value
1599is converted to a string. All the text and results of the expressions
1600are concatenated to make a new string.
Bram Moolenaar2ecbe532022-07-29 21:36:21 +01001601 *E1278* *E1279*
LemonBoy2eaef102022-05-06 13:14:50 +01001602To include an opening brace '{' or closing brace '}' in the string content
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001603double it. For double quoted strings using a backslash also works. A single
1604closing brace '}' will result in an error.
LemonBoy2eaef102022-05-06 13:14:50 +01001605
1606Examples: >
1607 let your_name = input("What's your name? ")
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001608< What's your name? Peter ~
1609>
1610 echo
LemonBoy2eaef102022-05-06 13:14:50 +01001611 echo $"Hello, {your_name}!"
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001612< Hello, Peter! ~
1613>
1614 echo $"The square root of {{9}} is {sqrt(9)}"
1615< The square root of {9} is 3.0 ~
1616
Christian Brabandt67672ef2023-04-24 21:09:54 +01001617 *string-offset-encoding*
1618A string consists of multiple characters. How the characters are stored
1619depends on 'encoding'. Most common is UTF-8, which uses one byte for ASCII
1620characters, two bytes for other latin characters and more bytes for other
1621characters.
1622
1623A string offset can count characters or bytes. Other programs may use
1624UTF-16 encoding (16-bit words) and an offset of UTF-16 words. Some functions
1625use byte offsets, usually for UTF-8 encoding. Other functions use character
1626offsets, in which case the encoding doesn't matter.
1627
1628The different offsets for the string "a©😊" are below:
1629
1630 UTF-8 offsets:
1631 [0]: 61, [1]: C2, [2]: A9, [3]: F0, [4]: 9F, [5]: 98, [6]: 8A
1632 UTF-16 offsets:
1633 [0]: 0061, [1]: 00A9, [2]: D83D, [3]: DE0A
1634 UTF-32 (character) offsets:
1635 [0]: 00000061, [1]: 000000A9, [2]: 0001F60A
1636
1637You can use the "g8" and "ga" commands on a character to see the
1638decimal/hex/octal values.
1639
1640The functions |byteidx()|, |utf16idx()| and |charidx()| can be used to convert
1641between these indices. The functions |strlen()|, |strutf16len()| and
1642|strcharlen()| return the number of bytes, UTF-16 code units and characters in
1643a string respectively.
LemonBoy2eaef102022-05-06 13:14:50 +01001644
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645option *expr-option* *E112* *E113*
1646------
1647&option option value, local value if possible
1648&g:option global option value
1649&l:option local option value
1650
1651Examples: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001652 echo "tabstop is " .. &tabstop
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 if &insertmode
1654
1655Any option name can be used here. See |options|. When using the local value
1656and there is no buffer-local or window-local value, the global value is used
1657anyway.
1658
1659
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001660register *expr-register* *@r*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661--------
1662@r contents of register 'r'
1663
1664The result is the contents of the named register, as a single string.
1665Newlines are inserted where required. To get the contents of the unnamed
Bram Moolenaar58b85342016-08-14 19:54:54 +02001666register use @" or @@. See |registers| for an explanation of the available
Bram Moolenaare7566042005-06-17 22:00:15 +00001667registers.
1668
1669When using the '=' register you get the expression itself, not what it
1670evaluates to. Use |eval()| to evaluate it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671
1672
Bram Moolenaara2baa732022-02-04 16:09:54 +00001673nesting *expr-nesting* *E110*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674-------
1675(expr1) nested expression
1676
1677
1678environment variable *expr-env*
1679--------------------
1680$VAR environment variable
1681
1682The String value of any environment variable. When it is not defined, the
1683result is an empty string.
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001684
1685The functions `getenv()` and `setenv()` can also be used and work for
1686environment variables with non-alphanumeric names.
1687The function `environ()` can be used to get a Dict with all environment
1688variables.
1689
1690
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 *expr-env-expand*
1692Note that there is a difference between using $VAR directly and using
1693expand("$VAR"). Using it directly will only expand environment variables that
1694are known inside the current Vim session. Using expand() will first try using
1695the environment variables known inside the current Vim session. If that
1696fails, a shell will be used to expand the variable. This can be slow, but it
1697does expand all variables that the shell knows about. Example: >
Bram Moolenaar34401cc2014-08-29 15:12:19 +02001698 :echo $shell
1699 :echo expand("$shell")
1700The first one probably doesn't echo anything, the second echoes the $shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701variable (if your shell supports it).
1702
1703
Bram Moolenaarf10911e2022-01-29 22:20:48 +00001704internal variable *expr-variable* *E1015* *E1089*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705-----------------
1706variable internal variable
1707See below |internal-variables|.
1708
1709
Bram Moolenaar05159a02005-02-26 23:04:13 +00001710function call *expr-function* *E116* *E118* *E119* *E120*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711-------------
1712function(expr1, ...) function call
1713See below |functions|.
1714
1715
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001716lambda expression *expr-lambda* *lambda*
1717-----------------
Bram Moolenaar938ae282023-02-20 20:44:55 +00001718{args -> expr1} legacy lambda expression *E451*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001719(args) => expr1 |Vim9| lambda expression
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001720
1721A lambda expression creates a new unnamed function which returns the result of
Bram Moolenaar42ebd062016-07-17 13:35:14 +02001722evaluating |expr1|. Lambda expressions differ from |user-functions| in
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001723the following ways:
1724
17251. The body of the lambda expression is an |expr1| and not a sequence of |Ex|
1726 commands.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +020017272. The prefix "a:" should not be used for arguments. E.g.: >
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001728 :let F = {arg1, arg2 -> arg1 - arg2}
1729 :echo F(5, 2)
1730< 3
1731
1732The arguments are optional. Example: >
1733 :let F = {-> 'error function'}
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001734 :echo F('ignored')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001735< error function
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001736
Bram Moolenaar5da36052021-12-27 15:39:57 +00001737The |Vim9| lambda does not only use a different syntax, it also adds type
1738checking and can be split over multiple lines, see |vim9-lambda|.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001739
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001740 *closure*
1741Lambda expressions can access outer scope variables and arguments. This is
Bram Moolenaar50ba5262016-09-22 22:33:02 +02001742often called a closure. Example where "i" and "a:arg" are used in a lambda
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001743while they already exist in the function scope. They remain valid even after
1744the function returns: >
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001745 :function Foo(arg)
1746 : let i = 3
1747 : return {x -> x + i - a:arg}
1748 :endfunction
1749 :let Bar = Foo(4)
1750 :echo Bar(6)
1751< 5
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001752
Bram Moolenaar388a5d42020-05-26 21:20:45 +02001753Note that the variables must exist in the outer scope before the lambda is
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001754defined for this to work. See also |:func-closure|.
1755
1756Lambda and closure support can be checked with: >
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001757 if has('lambda')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001758
1759Examples for using a lambda expression with |sort()|, |map()| and |filter()|: >
1760 :echo map([1, 2, 3], {idx, val -> val + 1})
1761< [2, 3, 4] >
1762 :echo sort([3,7,2,1,4], {a, b -> a - b})
1763< [1, 2, 3, 4, 7]
1764
1765The lambda expression is also useful for Channel, Job and timer: >
1766 :let timer = timer_start(500,
1767 \ {-> execute("echo 'Handler called'", "")},
1768 \ {'repeat': 3})
1769< Handler called
1770 Handler called
1771 Handler called
1772
Bram Moolenaar90df4b92021-07-07 20:26:08 +02001773Note that it is possible to cause memory to be used and not freed if the
1774closure is referenced by the context it depends on: >
1775 function Function()
1776 let x = 0
1777 let F = {-> x}
1778 endfunction
1779The closure uses "x" from the function scope, and "F" in that same scope
1780refers to the closure. This cycle results in the memory not being freed.
1781Recommendation: don't do this.
1782
1783Notice how execute() is used to execute an Ex command. That's ugly though.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001784In Vim9 script you can use a command block, see |inline-function|.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001785
Bram Moolenaar71b6d332022-09-10 13:13:14 +01001786Although you can use the loop variable of a `for` command, it must still exist
1787when the closure is called, otherwise you get an error. *E1302*
1788
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001789Lambda expressions have internal names like '<lambda>42'. If you get an error
1790for a lambda expression, you can find what it is with the following command: >
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001791 :function <lambda>42
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001792See also: |numbered-function|
1793
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794==============================================================================
Bram Moolenaar6f4754b2022-01-23 12:07:04 +000017953. Internal variable *internal-variables* *E461* *E1001*
Bram Moolenaar4a748032010-09-30 21:47:56 +02001796
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797An internal variable name can be made up of letters, digits and '_'. But it
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001798cannot start with a digit. In legacy script it is also possible to use curly
Bram Moolenaar5da36052021-12-27 15:39:57 +00001799braces, see |curly-braces-names|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001801In legacy script an internal variable is created with the ":let" command
Bram Moolenaar5da36052021-12-27 15:39:57 +00001802|:let|. An internal variable is explicitly destroyed with the ":unlet"
1803command |:unlet|.
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001804Using a name that is not an internal variable or refers to a variable that has
1805been destroyed results in an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806
Bram Moolenaar5da36052021-12-27 15:39:57 +00001807In |Vim9| script `:let` is not used and variables work differently, see |:var|.
1808
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001809 *variable-scope*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810There are several name spaces for variables. Which one is to be used is
1811specified by what is prepended:
1812
Bram Moolenaar5da36052021-12-27 15:39:57 +00001813 (nothing) In a function: local to the function;
1814 in a legacy script: global;
1815 in a |Vim9| script: local to the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816|buffer-variable| b: Local to the current buffer.
1817|window-variable| w: Local to the current window.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001818|tabpage-variable| t: Local to the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819|global-variable| g: Global.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001820|local-variable| l: Local to a function (only in a legacy function)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821|script-variable| s: Local to a |:source|'ed Vim script.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001822|function-argument| a: Function argument (only in a legacy function).
Bram Moolenaar75b81562014-04-06 14:09:13 +02001823|vim-variable| v: Global, predefined by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001825The scope name by itself can be used as a |Dictionary|. For example, to
1826delete all script-local variables: >
Bram Moolenaar8f999f12005-01-25 22:12:55 +00001827 :for k in keys(s:)
1828 : unlet s:[k]
1829 :endfor
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001830
Bram Moolenaar5da36052021-12-27 15:39:57 +00001831Note: in Vim9 script variables can also be local to a block of commands, see
1832|vim9-scopes|.
Bram Moolenaar531da592013-05-06 05:58:55 +02001833 *buffer-variable* *b:var* *b:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834A variable name that is preceded with "b:" is local to the current buffer.
1835Thus you can have several "b:foo" variables, one for each buffer.
1836This kind of variable is deleted when the buffer is wiped out or deleted with
1837|:bdelete|.
1838
1839One local buffer variable is predefined:
Bram Moolenaarbf884932013-04-05 22:26:15 +02001840 *b:changedtick* *changetick*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841b:changedtick The total number of changes to the current buffer. It is
1842 incremented for each change. An undo command is also a change
Bram Moolenaarc024b462019-06-08 18:07:21 +02001843 in this case. Resetting 'modified' when writing the buffer is
1844 also counted.
1845 This can be used to perform an action only when the buffer has
1846 changed. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 :if my_changedtick != b:changedtick
Bram Moolenaar446cb832008-06-24 21:56:24 +00001848 : let my_changedtick = b:changedtick
1849 : call My_Update()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 :endif
Bram Moolenaar3df01732017-02-17 22:47:16 +01001851< You cannot change or delete the b:changedtick variable.
Bram Moolenaar71badf92023-04-22 22:40:14 +01001852 If you need more information about the change see
1853 |listener_add()|.
Bram Moolenaar3df01732017-02-17 22:47:16 +01001854
Bram Moolenaar531da592013-05-06 05:58:55 +02001855 *window-variable* *w:var* *w:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856A variable name that is preceded with "w:" is local to the current window. It
1857is deleted when the window is closed.
1858
Bram Moolenaarad3b3662013-05-17 18:14:19 +02001859 *tabpage-variable* *t:var* *t:*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001860A variable name that is preceded with "t:" is local to the current tab page,
1861It is deleted when the tab page is closed. {not available when compiled
Bram Moolenaardb84e452010-08-15 13:50:43 +02001862without the |+windows| feature}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001863
Bram Moolenaar531da592013-05-06 05:58:55 +02001864 *global-variable* *g:var* *g:*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001865Inside functions and in |Vim9| script global variables are accessed with "g:".
1866Omitting this will access a variable local to a function or script. "g:"
1867can also be used in any other place if you like.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868
Bram Moolenaar531da592013-05-06 05:58:55 +02001869 *local-variable* *l:var* *l:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870Inside functions local variables are accessed without prepending anything.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001871But you can also prepend "l:" if you like. However, without prepending "l:"
1872you may run into reserved variable names. For example "count". By itself it
1873refers to "v:count". Using "l:count" you can have a local variable with the
1874same name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875
1876 *script-variable* *s:var*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001877In a legacy Vim script variables starting with "s:" can be used. They cannot
1878be accessed from outside of the scripts, thus are local to the script.
1879In |Vim9| script the "s:" prefix can be omitted, variables are script-local by
1880default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881
1882They can be used in:
1883- commands executed while the script is sourced
1884- functions defined in the script
1885- autocommands defined in the script
1886- functions and autocommands defined in functions and autocommands which were
1887 defined in the script (recursively)
1888- user defined commands defined in the script
1889Thus not in:
1890- other scripts sourced from this one
1891- mappings
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001892- menus
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893- etc.
1894
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001895Script variables can be used to avoid conflicts with global variable names.
1896Take this example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
1898 let s:counter = 0
1899 function MyCounter()
1900 let s:counter = s:counter + 1
1901 echo s:counter
1902 endfunction
1903 command Tick call MyCounter()
1904
1905You can now invoke "Tick" from any script, and the "s:counter" variable in
1906that script will not be changed, only the "s:counter" in the script where
1907"Tick" was defined is used.
1908
1909Another example that does the same: >
1910
1911 let s:counter = 0
1912 command Tick let s:counter = s:counter + 1 | echo s:counter
1913
1914When calling a function and invoking a user-defined command, the context for
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001915script variables is set to the script where the function or command was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916defined.
1917
1918The script variables are also available when a function is defined inside a
1919function that is defined in a script. Example: >
1920
1921 let s:counter = 0
1922 function StartCounting(incr)
1923 if a:incr
1924 function MyCounter()
1925 let s:counter = s:counter + 1
1926 endfunction
1927 else
1928 function MyCounter()
1929 let s:counter = s:counter - 1
1930 endfunction
1931 endif
1932 endfunction
1933
1934This defines the MyCounter() function either for counting up or counting down
1935when calling StartCounting(). It doesn't matter from where StartCounting() is
1936called, the s:counter variable will be accessible in MyCounter().
1937
1938When the same script is sourced again it will use the same script variables.
1939They will remain valid as long as Vim is running. This can be used to
1940maintain a counter: >
1941
1942 if !exists("s:counter")
1943 let s:counter = 1
1944 echo "script executed for the first time"
1945 else
1946 let s:counter = s:counter + 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001947 echo "script executed " .. s:counter .. " times now"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 endif
1949
1950Note that this means that filetype plugins don't get a different set of script
1951variables for each buffer. Use local buffer variables instead |b:var|.
1952
1953
Bram Moolenaard47d5222018-12-09 20:43:55 +01001954PREDEFINED VIM VARIABLES *vim-variable* *v:var* *v:*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001955 *E963* *E1063*
Bram Moolenaard47d5222018-12-09 20:43:55 +01001956Some variables can be set by the user, but the type cannot be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001958 *v:argv* *argv-variable*
1959v:argv The command line arguments Vim was invoked with. This is a
1960 list of strings. The first item is the Vim command.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00001961 See |v:progpath| for the command with full path.
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001962
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001963 *v:beval_col* *beval_col-variable*
1964v:beval_col The number of the column, over which the mouse pointer is.
1965 This is the byte index in the |v:beval_lnum| line.
1966 Only valid while evaluating the 'balloonexpr' option.
1967
1968 *v:beval_bufnr* *beval_bufnr-variable*
1969v:beval_bufnr The number of the buffer, over which the mouse pointer is. Only
1970 valid while evaluating the 'balloonexpr' option.
1971
1972 *v:beval_lnum* *beval_lnum-variable*
1973v:beval_lnum The number of the line, over which the mouse pointer is. Only
1974 valid while evaluating the 'balloonexpr' option.
1975
1976 *v:beval_text* *beval_text-variable*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001977v:beval_text The text under or after the mouse pointer. Usually a word as
1978 it is useful for debugging a C program. 'iskeyword' applies,
1979 but a dot and "->" before the position is included. When on a
1980 ']' the text before it is used, including the matching '[' and
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001981 word before it. When on a Visual area within one line the
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +02001982 highlighted text is used. Also see |<cexpr>|.
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001983 Only valid while evaluating the 'balloonexpr' option.
1984
1985 *v:beval_winnr* *beval_winnr-variable*
1986v:beval_winnr The number of the window, over which the mouse pointer is. Only
Bram Moolenaar00654022011-02-25 14:42:19 +01001987 valid while evaluating the 'balloonexpr' option. The first
1988 window has number zero (unlike most other places where a
1989 window gets a number).
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001990
Bram Moolenaar511972d2016-06-04 18:09:59 +02001991 *v:beval_winid* *beval_winid-variable*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001992v:beval_winid The |window-ID| of the window, over which the mouse pointer
1993 is. Otherwise like v:beval_winnr.
Bram Moolenaar511972d2016-06-04 18:09:59 +02001994
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001995 *v:char* *char-variable*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001996v:char Argument for evaluating 'formatexpr' and used for the typed
Bram Moolenaar945e2db2010-06-05 17:43:32 +02001997 character when using <expr> in an abbreviation |:map-<expr>|.
Shougo Matsushita83678842024-07-11 22:05:12 +02001998 It is also used by the |InsertCharPre|, |InsertEnter| and
1999 |KeyInputPre| events.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002000
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 *v:charconvert_from* *charconvert_from-variable*
2002v:charconvert_from
2003 The name of the character encoding of a file to be converted.
2004 Only valid while evaluating the 'charconvert' option.
2005
2006 *v:charconvert_to* *charconvert_to-variable*
2007v:charconvert_to
2008 The name of the character encoding of a file after conversion.
2009 Only valid while evaluating the 'charconvert' option.
2010
2011 *v:cmdarg* *cmdarg-variable*
2012v:cmdarg This variable is used for two purposes:
2013 1. The extra arguments given to a file read/write command.
2014 Currently these are "++enc=" and "++ff=". This variable is
2015 set before an autocommand event for a file read/write
2016 command is triggered. There is a leading space to make it
2017 possible to append this variable directly after the
Bram Moolenaar58b85342016-08-14 19:54:54 +02002018 read/write command. Note: The "+cmd" argument isn't
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 included here, because it will be executed anyway.
2020 2. When printing a PostScript file with ":hardcopy" this is
2021 the argument for the ":hardcopy" command. This can be used
2022 in 'printexpr'.
2023
2024 *v:cmdbang* *cmdbang-variable*
2025v:cmdbang Set like v:cmdarg for a file read/write command. When a "!"
2026 was used the value is 1, otherwise it is 0. Note that this
2027 can only be used in autocommands. For user commands |<bang>|
2028 can be used.
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +02002029 *v:collate* *collate-variable*
2030v:collate The current locale setting for collation order 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_COLLATE. 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|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037
Bram Moolenaar76db9e02022-11-09 21:21:04 +00002038 *v:colornames*
Drew Vogele30d1022021-10-24 20:35:07 +01002039v:colornames A dictionary that maps color names to hex color strings. These
2040 color names can be used with the |highlight-guifg|,
Christian Brabandt0f4054f2024-02-05 10:30:01 +01002041 |highlight-guibg|, and |highlight-guisp| parameters.
2042
2043 The key values in the dictionary (the color names) should be
2044 lower cased, because Vim looks up a color by its lower case
2045 name.
2046
2047 Updating an entry in v:colornames has no immediate effect on
2048 the syntax highlighting. The highlight commands (probably in a
Drew Vogele30d1022021-10-24 20:35:07 +01002049 colorscheme script) need to be re-evaluated in order to use
2050 the updated color values. For example: >
2051
2052 :let v:colornames['fuscia'] = '#cf3ab4'
2053 :let v:colornames['mauve'] = '#915f6d'
2054 :highlight Normal guifg=fuscia guibg=mauve
2055<
2056 This cannot be used to override the |cterm-colors| but it can
2057 be used to override other colors. For example, the X11 colors
2058 defined in the `colors/lists/default.vim` (previously defined
2059 in |rgb.txt|). When defining new color names in a plugin, the
2060 recommended practice is to set a color entry only when it does
2061 not already exist. For example: >
2062
2063 :call extend(v:colornames, {
2064 \ 'fuscia': '#cf3ab4',
2065 \ 'mauve': '#915f6d,
2066 \ }, 'keep')
2067<
Bram Moolenaar113cb512021-11-07 20:27:04 +00002068 Using |extend()| with the 'keep' option updates each color only
Drew Vogele30d1022021-10-24 20:35:07 +01002069 if it did not exist in |v:colornames|. Doing so allows the
2070 user to choose the precise color value for a common name
2071 by setting it in their |.vimrc|.
2072
2073 It is possible to remove entries from this dictionary but
Drew Vogela0fca172021-11-13 10:50:01 +00002074 doing so is NOT recommended, because it is disruptive to
Drew Vogele30d1022021-10-24 20:35:07 +01002075 other scripts. It is also unlikely to achieve the desired
Bram Moolenaar113cb512021-11-07 20:27:04 +00002076 result because the |:colorscheme| and |:highlight| commands will
Drew Vogele30d1022021-10-24 20:35:07 +01002077 both automatically load all `colors/lists/default.vim` color
2078 scripts.
2079
Alin Mr6d1d1802024-03-20 20:26:23 +01002080 You can make changes to that file, but make sure to add new
2081 keys instead of updating existing ones, otherwise Vim will skip
2082 loading the file (thinking is hasn't been changed).
2083
Bram Moolenaar42a45122015-07-10 17:56:23 +02002084 *v:completed_item* *completed_item-variable*
2085v:completed_item
2086 |Dictionary| containing the |complete-items| for the most
2087 recently completed word after |CompleteDone|. The
2088 |Dictionary| is empty if the completion failed.
Shougo Matsushita61021aa2022-07-27 14:40:00 +01002089 Note: Plugins can modify the value to emulate the builtin
2090 |CompleteDone| event behavior.
Bram Moolenaar42a45122015-07-10 17:56:23 +02002091
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 *v:count* *count-variable*
2093v:count The count given for the last Normal mode command. Can be used
Bram Moolenaar58b85342016-08-14 19:54:54 +02002094 to get the count before a mapping. Read-only. Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002095 :map _x :<C-U>echo "the count is " .. v:count<CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096< Note: The <C-U> is required to remove the line range that you
2097 get when typing ':' after a count.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01002098 When there are two counts, as in "3d2w", they are multiplied,
2099 just like what happens in the command, "d6w" for the example.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002100 Also used for evaluating the 'formatexpr' option.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002101 "count" also works, for backwards compatibility, unless
2102 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103
2104 *v:count1* *count1-variable*
2105v:count1 Just like "v:count", but defaults to one when no count is
2106 used.
2107
2108 *v:ctype* *ctype-variable*
2109v:ctype The current locale setting for characters of the runtime
2110 environment. This allows Vim scripts to be aware of the
2111 current locale encoding. Technical: it's the value of
2112 LC_CTYPE. When not using a locale the value is "C".
2113 This variable can not be set directly, use the |:language|
2114 command.
2115 See |multi-lang|.
2116
2117 *v:dying* *dying-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002118v:dying Normally zero. When a deadly signal is caught it's set to
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 one. When multiple signals are caught the number increases.
2120 Can be used in an autocommand to check if Vim didn't
2121 terminate normally. {only works on Unix}
2122 Example: >
2123 :au VimLeave * if v:dying | echo "\nAAAAaaaarrrggghhhh!!!\n" | endif
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02002124< Note: if another deadly signal is caught when v:dying is one,
2125 VimLeave autocommands will not be executed.
2126
Bram Moolenaarf0068c52020-11-30 17:42:10 +01002127 *v:exiting* *exiting-variable*
2128v:exiting Vim exit code. Normally zero, non-zero when something went
2129 wrong. The value is v:null before invoking the |VimLeavePre|
2130 and |VimLeave| autocmds. See |:q|, |:x| and |:cquit|.
2131 Example: >
2132 :au VimLeave * echo "Exit value is " .. v:exiting
2133<
Bram Moolenaar37f4cbd2019-08-23 20:58:45 +02002134 *v:echospace* *echospace-variable*
2135v:echospace Number of screen cells that can be used for an `:echo` message
2136 in the last screen line before causing the |hit-enter-prompt|.
2137 Depends on 'showcmd', 'ruler' and 'columns'. You need to
2138 check 'cmdheight' for whether there are full-width lines
2139 available above the last line.
2140
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 *v:errmsg* *errmsg-variable*
2142v:errmsg Last given error message. It's allowed to set this variable.
2143 Example: >
2144 :let v:errmsg = ""
2145 :silent! next
2146 :if v:errmsg != ""
2147 : ... handle error
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002148< "errmsg" also works, for backwards compatibility, unless
2149 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150
Bram Moolenaar65a54642018-04-28 16:56:53 +02002151 *v:errors* *errors-variable* *assert-return*
Bram Moolenaar683fa182015-11-30 21:38:24 +01002152v:errors Errors found by assert functions, such as |assert_true()|.
Bram Moolenaar43345542015-11-29 17:35:35 +01002153 This is a list of strings.
2154 The assert functions append an item when an assert fails.
Bram Moolenaar65a54642018-04-28 16:56:53 +02002155 The return value indicates this: a one is returned if an item
2156 was added to v:errors, otherwise zero is returned.
Bram Moolenaar43345542015-11-29 17:35:35 +01002157 To remove old results make it empty: >
2158 :let v:errors = []
2159< If v:errors is set to anything but a list it is made an empty
2160 list by the assert function.
2161
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01002162 *v:event* *event-variable*
2163v:event Dictionary containing information about the current
Bram Moolenaar560979e2020-02-04 22:53:05 +01002164 |autocommand|. See the specific event for what it puts in
2165 this dictionary.
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +02002166 The dictionary is emptied when the |autocommand| finishes,
2167 please refer to |dict-identity| for how to get an independent
2168 copy of it. Use |deepcopy()| if you want to keep the
2169 information after the event triggers. Example: >
2170 au TextYankPost * let g:foo = deepcopy(v:event)
2171<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 *v:exception* *exception-variable*
2173v:exception The value of the exception most recently caught and not
2174 finished. See also |v:throwpoint| and |throw-variables|.
2175 Example: >
2176 :try
2177 : throw "oops"
2178 :catch /.*/
Bram Moolenaar54775062019-07-31 21:07:14 +02002179 : echo "caught " .. v:exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 :endtry
2181< Output: "caught oops".
2182
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002183 *v:false* *false-variable*
2184v:false A Number with value zero. Used to put "false" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002185 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002186 When used as a string this evaluates to "v:false". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002187 echo v:false
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002188< v:false ~
2189 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002190 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002191 In |Vim9| script "false" can be used which has a boolean type.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002192
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002193 *v:fcs_reason* *fcs_reason-variable*
2194v:fcs_reason The reason why the |FileChangedShell| event was triggered.
2195 Can be used in an autocommand to decide what to do and/or what
2196 to set v:fcs_choice to. Possible values:
2197 deleted file no longer exists
2198 conflict file contents, mode or timestamp was
2199 changed and buffer is modified
2200 changed file contents has changed
2201 mode mode of file changed
2202 time only file timestamp changed
2203
2204 *v:fcs_choice* *fcs_choice-variable*
2205v:fcs_choice What should happen after a |FileChangedShell| event was
2206 triggered. Can be used in an autocommand to tell Vim what to
2207 do with the affected buffer:
2208 reload Reload the buffer (does not work if
2209 the file was deleted).
Rob Pilling8196e942022-02-11 15:12:10 +00002210 edit Reload the buffer and detect the
2211 values for options such as
2212 'fileformat', 'fileencoding', 'binary'
2213 (does not work if the file was
2214 deleted).
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002215 ask Ask the user what to do, as if there
2216 was no autocommand. Except that when
2217 only the timestamp changed nothing
2218 will happen.
2219 <empty> Nothing, the autocommand should do
2220 everything that needs to be done.
2221 The default is empty. If another (invalid) value is used then
2222 Vim behaves like it is empty, there is no warning message.
2223
Bram Moolenaar4c295022021-05-02 17:19:11 +02002224 *v:fname* *fname-variable*
Bram Moolenaar90df4b92021-07-07 20:26:08 +02002225v:fname When evaluating 'includeexpr': the file name that was
2226 detected. Empty otherwise.
Bram Moolenaar4c295022021-05-02 17:19:11 +02002227
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 *v:fname_in* *fname_in-variable*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002229v:fname_in The name of the input file. Valid while evaluating:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 option used for ~
2231 'charconvert' file to be converted
2232 'diffexpr' original file
2233 'patchexpr' original file
2234 'printexpr' file to be printed
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002235 And set to the swap file name for |SwapExists|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236
2237 *v:fname_out* *fname_out-variable*
2238v:fname_out The name of the output file. Only valid while
2239 evaluating:
2240 option used for ~
2241 'charconvert' resulting converted file (*)
2242 'diffexpr' output of diff
2243 'patchexpr' resulting patched file
2244 (*) When doing conversion for a write command (e.g., ":w
Bram Moolenaar58b85342016-08-14 19:54:54 +02002245 file") it will be equal to v:fname_in. When doing conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 for a read command (e.g., ":e file") it will be a temporary
2247 file and different from v:fname_in.
2248
2249 *v:fname_new* *fname_new-variable*
2250v:fname_new The name of the new version of the file. Only valid while
2251 evaluating 'diffexpr'.
2252
2253 *v:fname_diff* *fname_diff-variable*
2254v:fname_diff The name of the diff (patch) file. Only valid while
2255 evaluating 'patchexpr'.
2256
2257 *v:folddashes* *folddashes-variable*
2258v:folddashes Used for 'foldtext': dashes representing foldlevel of a closed
2259 fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002260 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261
2262 *v:foldlevel* *foldlevel-variable*
2263v:foldlevel Used for 'foldtext': foldlevel of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002264 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265
2266 *v:foldend* *foldend-variable*
2267v:foldend Used for 'foldtext': last line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002268 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269
2270 *v:foldstart* *foldstart-variable*
2271v:foldstart Used for 'foldtext': first line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002272 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273
Bram Moolenaar817a8802013-11-09 01:44:43 +01002274 *v:hlsearch* *hlsearch-variable*
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002275v:hlsearch Variable that indicates whether search highlighting is on.
Bram Moolenaar76440e22014-11-27 19:14:49 +01002276 Setting it makes sense only if 'hlsearch' is enabled which
2277 requires |+extra_search|. Setting this variable to zero acts
Bram Moolenaar705ada12016-01-24 17:56:50 +01002278 like the |:nohlsearch| command, setting it to one acts like >
Bram Moolenaar817a8802013-11-09 01:44:43 +01002279 let &hlsearch = &hlsearch
Bram Moolenaar86ae7202015-07-10 19:31:35 +02002280< Note that the value is restored when returning from a
2281 function. |function-search-undo|.
2282
Bram Moolenaar843ee412004-06-30 16:16:41 +00002283 *v:insertmode* *insertmode-variable*
2284v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand
2285 events. Values:
2286 i Insert mode
2287 r Replace mode
2288 v Virtual Replace mode
2289
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002290 *v:key* *key-variable*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002291v:key Key of the current item of a |Dictionary|. Only valid while
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002292 evaluating the expression used with |map()| and |filter()|.
2293 Read-only.
2294
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 *v:lang* *lang-variable*
2296v:lang The current locale setting for messages of the runtime
2297 environment. This allows Vim scripts to be aware of the
2298 current language. Technical: it's the value of LC_MESSAGES.
2299 The value is system dependent.
2300 This variable can not be set directly, use the |:language|
2301 command.
2302 It can be different from |v:ctype| when messages are desired
2303 in a different language than what is used for character
2304 encoding. See |multi-lang|.
2305
2306 *v:lc_time* *lc_time-variable*
2307v:lc_time The current locale setting for time messages of the runtime
2308 environment. This allows Vim scripts to be aware of the
2309 current language. Technical: it's the value of LC_TIME.
2310 This variable can not be set directly, use the |:language|
2311 command. See |multi-lang|.
2312
2313 *v:lnum* *lnum-variable*
Bram Moolenaar368373e2010-07-19 20:46:22 +02002314v:lnum Line number for the 'foldexpr' |fold-expr|, 'formatexpr' and
2315 'indentexpr' expressions, tab page number for 'guitablabel'
2316 and 'guitabtooltip'. Only valid while one of these
2317 expressions is being evaluated. Read-only when in the
2318 |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319
naohiro ono56200ee2022-01-01 14:59:44 +00002320 *v:maxcol* *maxcol-variable*
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00002321v:maxcol Maximum line length. Depending on where it is used it can be
Bram Moolenaar944697a2022-02-20 19:48:20 +00002322 screen columns, characters or bytes. The value currently is
2323 2147483647 on all systems.
naohiro ono56200ee2022-01-01 14:59:44 +00002324
Bram Moolenaar219b8702006-11-01 14:32:36 +00002325 *v:mouse_win* *mouse_win-variable*
2326v:mouse_win Window number for a mouse click obtained with |getchar()|.
2327 First window has number 1, like with |winnr()|. The value is
2328 zero when there was no mouse button click.
2329
Bram Moolenaar511972d2016-06-04 18:09:59 +02002330 *v:mouse_winid* *mouse_winid-variable*
2331v:mouse_winid Window ID for a mouse click obtained with |getchar()|.
2332 The value is zero when there was no mouse button click.
2333
Bram Moolenaar219b8702006-11-01 14:32:36 +00002334 *v:mouse_lnum* *mouse_lnum-variable*
2335v:mouse_lnum Line number for a mouse click obtained with |getchar()|.
2336 This is the text line number, not the screen line number. The
2337 value is zero when there was no mouse button click.
2338
2339 *v:mouse_col* *mouse_col-variable*
2340v:mouse_col Column number for a mouse click obtained with |getchar()|.
2341 This is the screen column number, like with |virtcol()|. The
2342 value is zero when there was no mouse button click.
2343
Bram Moolenaard09091d2019-01-17 16:07:22 +01002344 *v:none* *none-variable* *None*
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002345v:none An empty String. Used to put an empty item in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002346 |json_encode()|.
Bram Moolenaar2547aa92020-07-26 17:00:44 +02002347 This can also be used as a function argument to use the
2348 default value, see |none-function_argument|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002349 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002350 When used as a string this evaluates to "v:none". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002351 echo v:none
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002352< v:none ~
2353 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002354 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002355 Note that using `== v:none` and `!= v:none` will often give
2356 an error. Instead, use `is v:none` and `isnot v:none` .
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002357
2358 *v:null* *null-variable*
2359v:null An empty String. Used to put "null" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002360 |json_encode()|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002361 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002362 When used as a string this evaluates to "v:null". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002363 echo v:null
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002364< v:null ~
2365 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002366 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002367 In |Vim9| script `null` can be used without "v:".
2368 In some places `v:null` and `null` can be used for a List,
2369 Dict, Job, etc. that is not set. That is slightly different
2370 than an empty List, Dict, etc.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002371
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002372 *v:numbermax* *numbermax-variable*
2373v:numbermax Maximum value of a number.
2374
Bram Moolenaare0e39172021-01-25 21:14:57 +01002375 *v:numbermin* *numbermin-variable*
Bram Moolenaar2346a632021-06-13 19:02:49 +02002376v:numbermin Minimum value of a number (negative).
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002377
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002378 *v:numbersize* *numbersize-variable*
2379v:numbersize Number of bits in a Number. This is normally 64, but on some
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01002380 systems it may be 32.
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002381
Bram Moolenaard812df62008-11-09 12:46:09 +00002382 *v:oldfiles* *oldfiles-variable*
2383v:oldfiles List of file names that is loaded from the |viminfo| file on
2384 startup. These are the files that Vim remembers marks for.
2385 The length of the List is limited by the ' argument of the
2386 'viminfo' option (default is 100).
Bram Moolenaar8d043172014-01-23 14:24:41 +01002387 When the |viminfo| file is not used the List is empty.
Bram Moolenaard812df62008-11-09 12:46:09 +00002388 Also see |:oldfiles| and |c_#<|.
2389 The List can be modified, but this has no effect on what is
2390 stored in the |viminfo| file later. If you use values other
2391 than String this will cause trouble.
Bram Moolenaardb84e452010-08-15 13:50:43 +02002392 {only when compiled with the |+viminfo| feature}
Bram Moolenaard812df62008-11-09 12:46:09 +00002393
Bram Moolenaar53744302015-07-17 17:38:22 +02002394 *v:option_new*
2395v:option_new New value of the option. Valid while executing an |OptionSet|
2396 autocommand.
2397 *v:option_old*
2398v:option_old Old value of the option. Valid while executing an |OptionSet|
Bram Moolenaard7c96872019-06-15 17:12:48 +02002399 autocommand. Depending on the command used for setting and the
2400 kind of option this is either the local old value or the
2401 global old value.
2402 *v:option_oldlocal*
2403v:option_oldlocal
2404 Old local value of the option. Valid while executing an
2405 |OptionSet| autocommand.
2406 *v:option_oldglobal*
2407v:option_oldglobal
2408 Old global value of the option. Valid while executing an
2409 |OptionSet| autocommand.
Bram Moolenaar53744302015-07-17 17:38:22 +02002410 *v:option_type*
2411v:option_type Scope of the set command. Valid while executing an
2412 |OptionSet| autocommand. Can be either "global" or "local"
Bram Moolenaard7c96872019-06-15 17:12:48 +02002413 *v:option_command*
2414v:option_command
2415 Command used to set the option. Valid while executing an
2416 |OptionSet| autocommand.
2417 value option was set via ~
2418 "setlocal" |:setlocal| or ":let l:xxx"
2419 "setglobal" |:setglobal| or ":let g:xxx"
2420 "set" |:set| or |:let|
2421 "modeline" |modeline|
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002422 *v:operator* *operator-variable*
2423v:operator The last operator given in Normal mode. This is a single
2424 character except for commands starting with <g> or <z>,
2425 in which case it is two characters. Best used alongside
2426 |v:prevcount| and |v:register|. Useful if you want to cancel
2427 Operator-pending mode and then use the operator, e.g.: >
2428 :omap O <Esc>:call MyMotion(v:operator)<CR>
2429< The value remains set until another operator is entered, thus
2430 don't expect it to be empty.
2431 v:operator is not set for |:delete|, |:yank| or other Ex
2432 commands.
2433 Read-only.
2434
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 *v:prevcount* *prevcount-variable*
2436v:prevcount The count given for the last but one Normal mode command.
2437 This is the v:count value of the previous command. Useful if
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002438 you want to cancel Visual or Operator-pending mode and then
2439 use the count, e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 :vmap % <Esc>:call MyFilter(v:prevcount)<CR>
2441< Read-only.
2442
Bram Moolenaar05159a02005-02-26 23:04:13 +00002443 *v:profiling* *profiling-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002444v:profiling Normally zero. Set to one after using ":profile start".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002445 See |profiling|.
2446
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 *v:progname* *progname-variable*
2448v:progname Contains the name (with path removed) with which Vim was
Bram Moolenaard38b0552012-04-25 19:07:41 +02002449 invoked. Allows you to do special initialisations for |view|,
2450 |evim| etc., or any other name you might symlink to Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 Read-only.
2452
Bram Moolenaara1706c92014-04-01 19:55:49 +02002453 *v:progpath* *progpath-variable*
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002454v:progpath Contains the command with which Vim was invoked, in a form
2455 that when passed to the shell will run the same Vim executable
2456 as the current one (if $PATH remains unchanged).
2457 Useful if you want to message a Vim server using a
Bram Moolenaara1706c92014-04-01 19:55:49 +02002458 |--remote-expr|.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002459 To get the full path use: >
2460 echo exepath(v:progpath)
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002461< If the command has a relative path it will be expanded to the
2462 full path, so that it still works after `:cd`. Thus starting
2463 "./vim" results in "/home/user/path/to/vim/src/vim".
2464 On Linux and other systems it will always be the full path.
2465 On Mac it may just be "vim" and using exepath() as mentioned
2466 above should be used to get the full path.
Bram Moolenaar08cab962017-03-04 14:37:18 +01002467 On MS-Windows the executable may be called "vim.exe", but the
2468 ".exe" is not added to v:progpath.
Bram Moolenaara1706c92014-04-01 19:55:49 +02002469 Read-only.
2470
h_eastba77bbb2023-10-03 04:47:13 +09002471 *v:python3_version* *python3-version-variable*
Yee Cheng Chinc13b3d12023-08-20 21:18:38 +02002472v:python3_version
2473 Version of Python 3 that Vim was built against. When
2474 Python is loaded dynamically (|python-dynamic|), this version
2475 should exactly match the Python library up to the minor
2476 version (e.g. 3.10.2 and 3.10.3 are compatible as the minor
2477 version is "10", whereas 3.9.4 and 3.10.3 are not compatible).
2478 When |python-stable-abi| is used, this will be the minimum Python
2479 version that you can use instead. (e.g. if v:python3_version
2480 indicates 3.9, you can use 3.9, 3.10, or anything above).
2481
2482 This number is encoded as a hex number following Python ABI
2483 versioning conventions. Do the following to have a
2484 human-readable full version in hex: >
2485 echo printf("%08X", v:python3_version)
2486< You can obtain only the minor version by doing: >
2487 echo and(v:python3_version>>16,0xff)
2488< Read-only.
2489
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 *v:register* *register-variable*
Bram Moolenaard58e9292011-02-09 17:07:58 +01002491v:register The name of the register in effect for the current normal mode
Bram Moolenaard38b0552012-04-25 19:07:41 +02002492 command (regardless of whether that command actually used a
2493 register). Or for the currently executing normal mode mapping
2494 (use this in custom commands that take a register).
2495 If none is supplied it is the default register '"', unless
2496 'clipboard' contains "unnamed" or "unnamedplus", then it is
2497 '*' or '+'.
Bram Moolenaard58e9292011-02-09 17:07:58 +01002498 Also see |getreg()| and |setreg()|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002500 *v:scrollstart* *scrollstart-variable*
2501v:scrollstart String describing the script or function that caused the
2502 screen to scroll up. It's only set when it is empty, thus the
2503 first reason is remembered. It is set to "Unknown" for a
2504 typed command.
2505 This can be used to find out why your script causes the
2506 hit-enter prompt.
2507
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 *v:servername* *servername-variable*
Bram Moolenaarc2ce52c2017-08-01 18:35:38 +02002509v:servername The resulting registered |client-server-name| if any.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 Read-only.
2511
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002512
Bram Moolenaar446cb832008-06-24 21:56:24 +00002513v:searchforward *v:searchforward* *searchforward-variable*
2514 Search direction: 1 after a forward search, 0 after a
2515 backward search. It is reset to forward when directly setting
2516 the last search pattern, see |quote/|.
2517 Note that the value is restored when returning from a
2518 function. |function-search-undo|.
2519 Read-write.
2520
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 *v:shell_error* *shell_error-variable*
2522v:shell_error Result of the last shell command. When non-zero, the last
2523 shell command had an error. When zero, there was no problem.
2524 This only works when the shell returns the error code to Vim.
2525 The value -1 is often used when the command could not be
2526 executed. Read-only.
2527 Example: >
2528 :!mv foo bar
2529 :if v:shell_error
2530 : echo 'could not rename "foo" to "bar"!'
2531 :endif
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002532< "shell_error" also works, for backwards compatibility, unless
2533 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534
Bram Moolenaar113cb512021-11-07 20:27:04 +00002535 *v:sizeofint* *sizeofint-variable*
2536v:sizeofint Number of bytes in an int. Depends on how Vim was compiled.
2537 This is only useful for deciding whether a test will give the
2538 expected result.
2539
2540 *v:sizeoflong* *sizeoflong-variable*
2541v:sizeoflong Number of bytes in a long. Depends on how Vim was compiled.
2542 This is only useful for deciding whether a test will give the
2543 expected result.
2544
2545 *v:sizeofpointer* *sizeofpointer-variable*
2546v:sizeofpointer Number of bytes in a pointer. Depends on how Vim was compiled.
2547 This is only useful for deciding whether a test will give the
2548 expected result.
2549
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 *v:statusmsg* *statusmsg-variable*
2551v:statusmsg Last given status message. It's allowed to set this variable.
2552
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002553 *v:swapname* *swapname-variable*
2554v:swapname Only valid when executing |SwapExists| autocommands: Name of
2555 the swap file found. Read-only.
2556
2557 *v:swapchoice* *swapchoice-variable*
2558v:swapchoice |SwapExists| autocommands can set this to the selected choice
2559 for handling an existing swap file:
2560 'o' Open read-only
2561 'e' Edit anyway
2562 'r' Recover
2563 'd' Delete swapfile
2564 'q' Quit
2565 'a' Abort
Bram Moolenaar58b85342016-08-14 19:54:54 +02002566 The value should be a single-character string. An empty value
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002567 results in the user being asked, as would happen when there is
2568 no SwapExists autocommand. The default is empty.
2569
Bram Moolenaarb3480382005-12-11 21:33:32 +00002570 *v:swapcommand* *swapcommand-variable*
Bram Moolenaar4770d092006-01-12 23:22:24 +00002571v:swapcommand Normal mode command to be executed after a file has been
Bram Moolenaarb3480382005-12-11 21:33:32 +00002572 opened. Can be used for a |SwapExists| autocommand to have
Bram Moolenaar58b85342016-08-14 19:54:54 +02002573 another Vim open the file and jump to the right place. For
Bram Moolenaarb3480382005-12-11 21:33:32 +00002574 example, when jumping to a tag the value is ":tag tagname\r".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002575 For ":edit +cmd file" the value is ":cmd\r".
Bram Moolenaarb3480382005-12-11 21:33:32 +00002576
Bram Moolenaard823fa92016-08-12 16:29:27 +02002577 *v:t_TYPE* *v:t_bool* *t_bool-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002578v:t_bool Value of |Boolean| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002579 *v:t_channel* *t_channel-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002580v:t_channel Value of |Channel| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002581 *v:t_dict* *t_dict-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002582v:t_dict Value of |Dictionary| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002583 *v:t_float* *t_float-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002584v:t_float Value of |Float| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002585 *v:t_func* *t_func-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002586v:t_func Value of |Funcref| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002587 *v:t_job* *t_job-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002588v:t_job Value of |Job| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002589 *v:t_list* *t_list-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002590v:t_list Value of |List| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002591 *v:t_none* *t_none-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002592v:t_none Value of |None| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002593 *v:t_number* *t_number-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002594v:t_number Value of |Number| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002595 *v:t_string* *t_string-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002596v:t_string Value of |String| type. Read-only. See: |type()|
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002597 *v:t_blob* *t_blob-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002598v:t_blob Value of |Blob| type. Read-only. See: |type()|
Bram Moolenaarc0c2c262023-01-12 21:08:53 +00002599 *v:t_class* *t_class-variable*
2600v:t_class Value of |class| type. Read-only. See: |type()|
2601 *v:t_object* *t_object-variable*
2602v:t_object Value of |object| type. Read-only. See: |type()|
Yegappan Lakshmanan2a71b542023-12-14 20:03:03 +01002603 *v:t_typealias* *t_typealias-variable*
2604v:t_typealias Value of |typealias| type. Read-only. See: |type()|
Yegappan Lakshmanan3164cf82024-03-28 10:36:42 +01002605 *v:t_enum* *t_enum-variable*
2606v:t_enum Value of |enum| type. Read-only. See: |type()|
2607 *v:t_enumvalue* *t_enumvalue-variable*
2608v:t_enumvalue Value of |enumvalue| type. Read-only. See: |type()|
Bram Moolenaarf562e722016-07-19 17:25:25 +02002609
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 *v:termresponse* *termresponse-variable*
2611v:termresponse The escape sequence returned by the terminal for the |t_RV|
Bram Moolenaar58b85342016-08-14 19:54:54 +02002612 termcap entry. It is set when Vim receives an escape sequence
Bram Moolenaarb4230122019-05-30 18:40:53 +02002613 that starts with ESC [ or CSI, then '>' or '?' and ends in a
2614 'c', with only digits and ';' in between.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 When this option is set, the TermResponse autocommand event is
2616 fired, so that you can react to the response from the
Danek Duvalld7d56032024-01-14 20:19:59 +01002617 terminal. The TermResponseAll event is also fired, with
2618 <amatch> set to "version". You can use |terminalprops()| to see
2619 what Vim figured out about the terminal.
Bram Moolenaarb4230122019-05-30 18:40:53 +02002620 The response from a new xterm is: "<Esc>[> Pp ; Pv ; Pc c". Pp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 is the terminal type: 0 for vt100 and 1 for vt220. Pv is the
2622 patch level (since this was introduced in patch 95, it's
Bram Moolenaarfa3b7232021-12-24 13:18:38 +00002623 always 95 or higher). Pc is always zero.
2624 If Pv is 141 or higher then Vim will try to request terminal
2625 codes. This only works with xterm |xterm-codes|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 {only when compiled with |+termresponse| feature}
2627
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002628 *v:termblinkresp*
2629v:termblinkresp The escape sequence returned by the terminal for the |t_RC|
2630 termcap entry. This is used to find out whether the terminal
Danek Duvalld7d56032024-01-14 20:19:59 +01002631 cursor is blinking. This is used by |term_getcursor()|. When
2632 this option is set, the TermResponseAll autocommand event is
2633 fired, with <amatch> set to "cursorblink".
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002634
2635 *v:termstyleresp*
2636v:termstyleresp The escape sequence returned by the terminal for the |t_RS|
2637 termcap entry. This is used to find out what the shape of the
Danek Duvalld7d56032024-01-14 20:19:59 +01002638 cursor is. This is used by |term_getcursor()|. When this
2639 option is set, the TermResponseAll autocommand event is fired,
2640 with <amatch> set to "cursorshape".
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002641
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002642 *v:termrbgresp*
2643v:termrbgresp The escape sequence returned by the terminal for the |t_RB|
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002644 termcap entry. This is used to find out what the terminal
Danek Duvalld7d56032024-01-14 20:19:59 +01002645 background color is; see 'background'. When this option is
2646 set, the TermResponseAll autocommand event is fired, with
2647 <amatch> set to "background".
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002648
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002649 *v:termrfgresp*
2650v:termrfgresp The escape sequence returned by the terminal for the |t_RF|
2651 termcap entry. This is used to find out what the terminal
Danek Duvalld7d56032024-01-14 20:19:59 +01002652 foreground color is. When this option is set, the
2653 TermResponseAll autocommand event is fired, with <amatch> set
2654 to "foreground".
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002655
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002656 *v:termu7resp*
2657v:termu7resp The escape sequence returned by the terminal for the |t_u7|
2658 termcap entry. This is used to find out what the terminal
Danek Duvalld7d56032024-01-14 20:19:59 +01002659 does with ambiguous width characters, see 'ambiwidth'. When
2660 this option is set, the TermResponseAll autocommand event is
2661 fired, with <amatch> set to "ambiguouswidth".
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002662
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002663 *v:testing* *testing-variable*
Bram Moolenaar8e8df252016-05-25 21:23:21 +02002664v:testing Must be set before using `test_garbagecollect_now()`.
Bram Moolenaar036986f2017-03-16 17:41:02 +01002665 Also, when set certain error messages won't be shown for 2
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002666 seconds. (e.g. "'dictionary' option is empty")
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002667
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 *v:this_session* *this_session-variable*
2669v:this_session Full filename of the last loaded or saved session file. See
2670 |:mksession|. It is allowed to set this variable. When no
2671 session file has been saved, this variable is empty.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002672 "this_session" also works, for backwards compatibility, unless
2673 |scriptversion| is 3 or higher
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674
2675 *v:throwpoint* *throwpoint-variable*
2676v:throwpoint The point where the exception most recently caught and not
Bram Moolenaar58b85342016-08-14 19:54:54 +02002677 finished was thrown. Not set when commands are typed. See
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 also |v:exception| and |throw-variables|.
2679 Example: >
2680 :try
2681 : throw "oops"
2682 :catch /.*/
2683 : echo "Exception from" v:throwpoint
2684 :endtry
2685< Output: "Exception from test.vim, line 2"
2686
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002687 *v:true* *true-variable*
2688v:true A Number with value one. Used to put "true" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002689 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002690 When used as a string this evaluates to "v:true". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002691 echo v:true
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002692< v:true ~
2693 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002694 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002695 In |Vim9| script "true" can be used which has a boolean type.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002696 *v:val* *val-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002697v:val Value of the current item of a |List| or |Dictionary|. Only
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002698 valid while evaluating the expression used with |map()| and
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002699 |filter()|. Read-only.
2700
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 *v:version* *version-variable*
2702v:version Version number of Vim: Major version number times 100 plus
Bram Moolenaar9b283522019-06-17 22:19:33 +02002703 minor version number. Version 5.0 is 500. Version 5.1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 is 501. Read-only. "version" also works, for backwards
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002705 compatibility, unless |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 Use |has()| to check if a certain patch was included, e.g.: >
Bram Moolenaar6716d9a2014-04-02 12:12:08 +02002707 if has("patch-7.4.123")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708< Note that patch numbers are specific to the version, thus both
2709 version 5.0 and 5.1 may have a patch 123, but these are
2710 completely different.
2711
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002712 *v:versionlong* *versionlong-variable*
Bram Moolenaar9b283522019-06-17 22:19:33 +02002713v:versionlong Like v:version, but also including the patchlevel in the last
2714 four digits. Version 8.1 with patch 123 has value 8010123.
2715 This can be used like this: >
2716 if v:versionlong >= 8010123
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002717< However, if there are gaps in the list of patches included
2718 this will not work well. This can happen if a recent patch
2719 was included into an older version, e.g. for a security fix.
2720 Use the has() function to make sure the patch is actually
2721 included.
2722
Bram Moolenaar14735512016-03-26 21:00:08 +01002723 *v:vim_did_enter* *vim_did_enter-variable*
2724v:vim_did_enter Zero until most of startup is done. It is set to one just
2725 before |VimEnter| autocommands are triggered.
2726
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 *v:warningmsg* *warningmsg-variable*
2728v:warningmsg Last given warning message. It's allowed to set this variable.
2729
Bram Moolenaar727c8762010-10-20 19:17:48 +02002730 *v:windowid* *windowid-variable*
Christian Brabandte5bc2e42024-06-01 20:55:09 +02002731v:windowid When any X11/Wayland based GUI is running or when running in a
Bram Moolenaar727c8762010-10-20 19:17:48 +02002732 terminal and Vim connects to the X server (|-X|) this will be
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02002733 set to the window ID.
2734 When an MS-Windows GUI is running this will be set to the
2735 window handle.
2736 Otherwise the value is zero.
Bram Moolenaar7571d552016-08-18 22:54:46 +02002737 Note: for windows inside Vim use |winnr()| or |win_getid()|,
2738 see |window-ID|.
Bram Moolenaar727c8762010-10-20 19:17:48 +02002739
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740==============================================================================
27414. Builtin Functions *functions*
2742
2743See |function-list| for a list grouped by what the function is used for.
2744
Bram Moolenaar1cae5a02021-12-27 21:28:34 +00002745The alphabetic list of all builtin functions and details are in a separate
2746help file: |builtin-functions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747
2748==============================================================================
27495. Defining functions *user-functions*
2750
2751New functions can be defined. These can be called just like builtin
Bram Moolenaar0daafaa2022-09-04 17:45:43 +01002752functions. The function takes arguments, executes a sequence of Ex commands
2753and can return a value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754
Bram Moolenaar0daafaa2022-09-04 17:45:43 +01002755You can find most information about defining functions in |userfunc.txt|.
2756For Vim9 functions, which execute much faster, support type checking and more,
2757see |vim9.txt|.
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002758
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759==============================================================================
27606. Curly braces names *curly-braces-names*
2761
Bram Moolenaar84f72352012-03-11 15:57:40 +01002762In most places where you can use a variable, you can use a "curly braces name"
2763variable. This is a regular variable name with one or more expressions
2764wrapped in braces {} like this: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 my_{adjective}_variable
2766
Bram Moolenaar5da36052021-12-27 15:39:57 +00002767This only works in legacy Vim script, not in |Vim9| script.
2768
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769When Vim encounters this, it evaluates the expression inside the braces, puts
2770that in place of the expression, and re-interprets the whole as a variable
2771name. So in the above example, if the variable "adjective" was set to
2772"noisy", then the reference would be to "my_noisy_variable", whereas if
2773"adjective" was set to "quiet", then it would be to "my_quiet_variable".
2774
2775One application for this is to create a set of variables governed by an option
Bram Moolenaar58b85342016-08-14 19:54:54 +02002776value. For example, the statement >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 echo my_{&background}_message
2778
2779would output the contents of "my_dark_message" or "my_light_message" depending
2780on the current value of 'background'.
2781
2782You can use multiple brace pairs: >
2783 echo my_{adverb}_{adjective}_message
2784..or even nest them: >
2785 echo my_{ad{end_of_word}}_message
2786where "end_of_word" is either "verb" or "jective".
2787
2788However, the expression inside the braces must evaluate to a valid single
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002789variable name, e.g. this is invalid: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 :let foo='a + b'
2791 :echo c{foo}d
2792.. since the result of expansion is "ca + bd", which is not a variable name.
2793
2794 *curly-braces-function-names*
2795You can call and define functions by an evaluated name in a similar way.
2796Example: >
2797 :let func_end='whizz'
2798 :call my_func_{func_end}(parameter)
2799
2800This would call the function "my_func_whizz(parameter)".
2801
Bram Moolenaar84f72352012-03-11 15:57:40 +01002802This does NOT work: >
2803 :let i = 3
2804 :let @{i} = '' " error
2805 :echo @{i} " error
2806
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807==============================================================================
28087. Commands *expression-commands*
2809
Bram Moolenaar5da36052021-12-27 15:39:57 +00002810Note: in |Vim9| script `:let` is not used. `:var` is used for variable
2811declarations and assignments do not use a command. |vim9-declaration|
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002812
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813:let {var-name} = {expr1} *:let* *E18*
2814 Set internal variable {var-name} to the result of the
2815 expression {expr1}. The variable will get the type
2816 from the {expr}. If {var-name} didn't exist yet, it
2817 is created.
2818
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002819:let {var-name}[{idx}] = {expr1} *E689* *E1141*
Bram Moolenaar13065c42005-01-08 16:08:21 +00002820 Set a list item to the result of the expression
2821 {expr1}. {var-name} must refer to a list and {idx}
2822 must be a valid index in that list. For nested list
2823 the index can be repeated.
Bram Moolenaar446cb832008-06-24 21:56:24 +00002824 This cannot be used to add an item to a |List|.
Bram Moolenaar58b85342016-08-14 19:54:54 +02002825 This cannot be used to set a byte in a String. You
Bram Moolenaar446cb832008-06-24 21:56:24 +00002826 can do that like this: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002827 :let var = var[0:2] .. 'X' .. var[4:]
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002828< When {var-name} is a |Blob| then {idx} can be the
2829 length of the blob, in which case one byte is
2830 appended.
2831
Bram Moolenaara2baa732022-02-04 16:09:54 +00002832 *E711* *E719* *E1165* *E1166* *E1183*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002833:let {var-name}[{idx1}:{idx2}] = {expr1} *E708* *E709* *E710*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002834 Set a sequence of items in a |List| to the result of
2835 the expression {expr1}, which must be a list with the
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002836 correct number of items.
2837 {idx1} can be omitted, zero is used instead.
2838 {idx2} can be omitted, meaning the end of the list.
2839 When the selected range of items is partly past the
2840 end of the list, items will be added.
2841
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00002842 *:let+=* *:let-=* *:letstar=* *:let/=* *:let%=*
2843 *:let.=* *:let..=* *E734* *E985* *E1019*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002844:let {var} += {expr1} Like ":let {var} = {var} + {expr1}".
2845:let {var} -= {expr1} Like ":let {var} = {var} - {expr1}".
Bram Moolenaarff697e62019-02-12 22:28:33 +01002846:let {var} *= {expr1} Like ":let {var} = {var} * {expr1}".
2847:let {var} /= {expr1} Like ":let {var} = {var} / {expr1}".
2848:let {var} %= {expr1} Like ":let {var} = {var} % {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002849:let {var} .= {expr1} Like ":let {var} = {var} . {expr1}".
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02002850:let {var} ..= {expr1} Like ":let {var} = {var} .. {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002851 These fail if {var} was not set yet and when the type
2852 of {var} and {expr1} don't fit the operator.
zeertzjqb8170142024-02-08 11:21:44 +01002853 `+=` modifies a |List| or a |Blob| in-place instead of
2854 creating a new one.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02002855 `.=` is not supported with Vim script version 2 and
2856 later, see |vimscript-version|.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002857
2858
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859:let ${env-name} = {expr1} *:let-environment* *:let-$*
2860 Set environment variable {env-name} to the result of
2861 the expression {expr1}. The type is always String.
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002862
2863 On some systems making an environment variable empty
2864 causes it to be deleted. Many systems do not make a
2865 difference between an environment variable that is not
2866 set and an environment variable that is empty.
2867
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002868:let ${env-name} .= {expr1}
2869 Append {expr1} to the environment variable {env-name}.
2870 If the environment variable didn't exist yet this
2871 works like "=".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872
2873:let @{reg-name} = {expr1} *:let-register* *:let-@*
2874 Write the result of the expression {expr1} in register
2875 {reg-name}. {reg-name} must be a single letter, and
2876 must be the name of a writable register (see
2877 |registers|). "@@" can be used for the unnamed
2878 register, "@/" for the search pattern.
2879 If the result of {expr1} ends in a <CR> or <NL>, the
2880 register will be linewise, otherwise it will be set to
2881 characterwise.
2882 This can be used to clear the last search pattern: >
2883 :let @/ = ""
2884< This is different from searching for an empty string,
2885 that would match everywhere.
2886
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002887:let @{reg-name} .= {expr1}
Bram Moolenaar58b85342016-08-14 19:54:54 +02002888 Append {expr1} to register {reg-name}. If the
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002889 register was empty it's like setting it to {expr1}.
2890
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002891:let &{option-name} = {expr1} *:let-option* *:let-&*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 Set option {option-name} to the result of the
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002893 expression {expr1}. A String or Number value is
2894 always converted to the type of the option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 For an option local to a window or buffer the effect
2896 is just like using the |:set| command: both the local
Bram Moolenaara5fac542005-10-12 20:58:49 +00002897 value and the global value are changed.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002898 Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002899 :let &path = &path .. ',/usr/local/include'
Bram Moolenaar3df01732017-02-17 22:47:16 +01002900< This also works for terminal codes in the form t_xx.
2901 But only for alphanumerical names. Example: >
2902 :let &t_k1 = "\<Esc>[234;"
2903< When the code does not exist yet it will be created as
2904 a terminal key code, there is no error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002906:let &{option-name} .= {expr1}
2907 For a string option: Append {expr1} to the value.
2908 Does not insert a comma like |:set+=|.
2909
2910:let &{option-name} += {expr1}
2911:let &{option-name} -= {expr1}
2912 For a number or boolean option: Add or subtract
2913 {expr1}.
2914
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915:let &l:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002916:let &l:{option-name} .= {expr1}
2917:let &l:{option-name} += {expr1}
2918:let &l:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 Like above, but only set the local value of an option
2920 (if there is one). Works like |:setlocal|.
2921
2922:let &g:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002923:let &g:{option-name} .= {expr1}
2924:let &g:{option-name} += {expr1}
2925:let &g:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 Like above, but only set the global value of an option
2927 (if there is one). Works like |:setglobal|.
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002928 *E1093*
Bram Moolenaar13065c42005-01-08 16:08:21 +00002929:let [{name1}, {name2}, ...] = {expr1} *:let-unpack* *E687* *E688*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002930 {expr1} must evaluate to a |List|. The first item in
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002931 the list is assigned to {name1}, the second item to
2932 {name2}, etc.
2933 The number of names must match the number of items in
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002934 the |List|.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002935 Each name can be one of the items of the ":let"
2936 command as mentioned above.
2937 Example: >
2938 :let [s, item] = GetItem(s)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002939< Detail: {expr1} is evaluated first, then the
2940 assignments are done in sequence. This matters if
2941 {name2} depends on {name1}. Example: >
2942 :let x = [0, 1]
2943 :let i = 0
2944 :let [i, x[i]] = [1, 2]
2945 :echo x
2946< The result is [0, 2].
2947
2948:let [{name1}, {name2}, ...] .= {expr1}
2949:let [{name1}, {name2}, ...] += {expr1}
2950:let [{name1}, {name2}, ...] -= {expr1}
2951 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002952 |List| item.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002953
Bram Moolenaard1caa942020-04-10 22:10:56 +02002954:let [{name}, ..., ; {lastname}] = {expr1} *E452*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002955 Like |:let-unpack| above, but the |List| may have more
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002956 items than there are names. A list of the remaining
2957 items is assigned to {lastname}. If there are no
2958 remaining items {lastname} is set to an empty list.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002959 Example: >
2960 :let [a, b; rest] = ["aval", "bval", 3, 4]
2961<
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002962:let [{name}, ..., ; {lastname}] .= {expr1}
2963:let [{name}, ..., ; {lastname}] += {expr1}
2964:let [{name}, ..., ; {lastname}] -= {expr1}
2965 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002966 |List| item.
Bram Moolenaar4a748032010-09-30 21:47:56 +02002967
Bram Moolenaar24582002019-07-21 14:14:26 +02002968 *:let=<<* *:let-heredoc*
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002969 *E990* *E991* *E172* *E221* *E1145*
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002970:let {var-name} =<< [trim] [eval] {endmarker}
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002971text...
2972text...
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002973{endmarker}
Bram Moolenaare46a4402020-06-30 20:38:27 +02002974 Set internal variable {var-name} to a |List|
2975 containing the lines of text bounded by the string
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002976 {endmarker}.
2977
2978 If "eval" is not specified, then each line of text is
Bram Moolenaard899e512022-05-07 21:54:03 +01002979 used as a |literal-string|, except that single quotes
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01002980 does not need to be doubled.
Bram Moolenaard899e512022-05-07 21:54:03 +01002981 If "eval" is specified, then any Vim expression in the
2982 form {expr} is evaluated and the result replaces the
Bram Moolenaarb59ae592022-11-23 23:46:31 +00002983 expression, like with |interpolated-string|.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002984 Example where $HOME is expanded: >
2985 let lines =<< trim eval END
2986 some text
Bram Moolenaard899e512022-05-07 21:54:03 +01002987 See the file {$HOME}/.vimrc
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002988 more text
2989 END
2990< There can be multiple Vim expressions in a single line
2991 but an expression cannot span multiple lines. If any
2992 expression evaluation fails, then the assignment fails.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002993
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002994 {endmarker} must not contain white space.
2995 {endmarker} cannot start with a lower case character.
2996 The last line should end only with the {endmarker}
2997 string without any other character. Watch out for
2998 white space after {endmarker}!
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002999
Bram Moolenaare7eb9272019-06-24 00:58:07 +02003000 Without "trim" any white space characters in the lines
3001 of text are preserved. If "trim" is specified before
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003002 {endmarker}, then indentation is stripped so you can
3003 do: >
Bram Moolenaare7eb9272019-06-24 00:58:07 +02003004 let text =<< trim END
3005 if ok
3006 echo 'done'
3007 endif
3008 END
3009< Results in: ["if ok", " echo 'done'", "endif"]
3010 The marker must line up with "let" and the indentation
3011 of the first line is removed from all the text lines.
3012 Specifically: all the leading indentation exactly
3013 matching the leading indentation of the first
3014 non-empty text line is stripped from the input lines.
3015 All leading indentation exactly matching the leading
3016 indentation before `let` is stripped from the line
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003017 containing {endmarker}. Note that the difference
3018 between space and tab matters here.
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003019
3020 If {var-name} didn't exist yet, it is created.
3021 Cannot be followed by another command, but can be
3022 followed by a comment.
3023
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003024 To avoid line continuation to be applied, consider
3025 adding 'C' to 'cpoptions': >
3026 set cpo+=C
3027 let var =<< END
3028 \ leading backslash
3029 END
3030 set cpo-=C
3031<
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003032 Examples: >
3033 let var1 =<< END
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003034 Sample text 1
3035 Sample text 2
3036 Sample text 3
3037 END
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003038
3039 let data =<< trim DATA
Bram Moolenaar2e693a82019-10-16 22:35:02 +02003040 1 2 3 4
3041 5 6 7 8
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003042 DATA
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003043
3044 let code =<< trim eval CODE
Bram Moolenaard899e512022-05-07 21:54:03 +01003045 let v = {10 + 20}
3046 let h = "{$HOME}"
3047 let s = "{Str1()} abc {Str2()}"
3048 let n = {MyFunc(3, 4)}
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01003049 CODE
Bram Moolenaarf5842c52019-05-19 18:41:26 +02003050<
Bram Moolenaar4a748032010-09-30 21:47:56 +02003051 *E121*
Bram Moolenaar58b85342016-08-14 19:54:54 +02003052:let {var-name} .. List the value of variable {var-name}. Multiple
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003053 variable names may be given. Special names recognized
3054 here: *E738*
Bram Moolenaarca003e12006-03-17 23:19:38 +00003055 g: global variables
3056 b: local buffer variables
3057 w: local window variables
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003058 t: local tab page variables
Bram Moolenaarca003e12006-03-17 23:19:38 +00003059 s: script-local variables
3060 l: local function variables
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003061 v: Vim variables.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003062 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00003064:let List the values of all variables. The type of the
3065 variable is indicated before the value:
3066 <nothing> String
3067 # Number
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003068 * Funcref
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003069 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003071:unl[et][!] {name} ... *:unlet* *:unl* *E108* *E795* *E1081*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003072 Remove the internal variable {name}. Several variable
3073 names can be given, they are all removed. The name
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003074 may also be a |List| or |Dictionary| item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 With [!] no error message is given for non-existing
3076 variables.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003077 One or more items from a |List| can be removed: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003078 :unlet list[3] " remove fourth item
3079 :unlet list[3:] " remove fourth item to last
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003080< One item from a |Dictionary| can be removed at a time: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003081 :unlet dict['two']
3082 :unlet dict.two
Bram Moolenaarc236c162008-07-13 17:41:49 +00003083< This is especially useful to clean up used global
3084 variables and script-local variables (these are not
3085 deleted when the script ends). Function-local
3086 variables are automatically deleted when the function
3087 ends.
Bram Moolenaar1b5f03e2023-01-09 20:12:45 +00003088 In |Vim9| script variables declared in a function or
3089 script cannot be removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090
Bram Moolenaar137374f2018-05-13 15:59:50 +02003091:unl[et] ${env-name} ... *:unlet-environment* *:unlet-$*
3092 Remove environment variable {env-name}.
3093 Can mix {name} and ${env-name} in one :unlet command.
3094 No error message is given for a non-existing
3095 variable, also without !.
3096 If the system does not support deleting an environment
Bram Moolenaar9937a052019-06-15 15:45:06 +02003097 variable, it is made empty.
Bram Moolenaar137374f2018-05-13 15:59:50 +02003098
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003099 *:cons* *:const* *E1018*
Bram Moolenaar9937a052019-06-15 15:45:06 +02003100:cons[t] {var-name} = {expr1}
3101:cons[t] [{name1}, {name2}, ...] = {expr1}
Bram Moolenaar9937a052019-06-15 15:45:06 +02003102:cons[t] [{name}, ..., ; {lastname}] = {expr1}
h-east53753f62024-05-05 18:42:31 +02003103:cons[t] {var-name} =<< [trim] [eval] {marker}
Bram Moolenaar9937a052019-06-15 15:45:06 +02003104text...
3105text...
3106{marker}
3107 Similar to |:let|, but additionally lock the variable
3108 after setting the value. This is the same as locking
3109 the variable with |:lockvar| just after |:let|, thus: >
3110 :const x = 1
3111< is equivalent to: >
3112 :let x = 1
Bram Moolenaar021bda52020-08-17 21:07:22 +02003113 :lockvar! x
Bram Moolenaara187c432020-09-16 21:08:28 +02003114< NOTE: in Vim9 script `:const` works differently, see
3115 |vim9-const|
3116 This is useful if you want to make sure the variable
Bram Moolenaar021bda52020-08-17 21:07:22 +02003117 is not modified. If the value is a List or Dictionary
3118 literal then the items also cannot be changed: >
3119 const ll = [1, 2, 3]
3120 let ll[1] = 5 " Error!
Bram Moolenaar6e649222021-10-04 21:32:54 +01003121< Nested references are not locked: >
Bram Moolenaar021bda52020-08-17 21:07:22 +02003122 let lvar = ['a']
3123 const lconst = [0, lvar]
3124 let lconst[0] = 2 " Error!
3125 let lconst[1][0] = 'b' " OK
3126< *E995*
Bram Moolenaar9b283522019-06-17 22:19:33 +02003127 |:const| does not allow to for changing a variable: >
Bram Moolenaar9937a052019-06-15 15:45:06 +02003128 :let x = 1
3129 :const x = 2 " Error!
Bram Moolenaar1c196e72019-06-16 15:41:58 +02003130< *E996*
3131 Note that environment variables, option values and
3132 register values cannot be used here, since they cannot
3133 be locked.
3134
Bram Moolenaar85850f32019-07-19 22:05:51 +02003135:cons[t]
3136:cons[t] {var-name}
3137 If no argument is given or only {var-name} is given,
3138 the behavior is the same as |:let|.
3139
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003140:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
3141 Lock the internal variable {name}. Locking means that
3142 it can no longer be changed (until it is unlocked).
3143 A locked variable can be deleted: >
3144 :lockvar v
Bram Moolenaardad44732021-03-31 20:07:33 +02003145 :let v = 'asdf' " fails!
3146 :unlet v " works
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003147< *E741* *E940* *E1118* *E1119* *E1120* *E1121* *E1122*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003148 If you try to change a locked variable you get an
Bram Moolenaare7877fe2017-02-20 22:35:33 +01003149 error message: "E741: Value is locked: {name}".
3150 If you try to lock or unlock a built-in variable you
3151 get an error message: "E940: Cannot lock or unlock
3152 variable {name}".
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003153
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003154 [depth] is relevant when locking a |List| or
3155 |Dictionary|. It specifies how deep the locking goes:
Bram Moolenaara187c432020-09-16 21:08:28 +02003156 0 Lock the variable {name} but not its
3157 value.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003158 1 Lock the |List| or |Dictionary| itself,
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003159 cannot add or remove items, but can
3160 still change their values.
3161 2 Also lock the values, cannot change
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003162 the items. If an item is a |List| or
3163 |Dictionary|, cannot add or remove
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003164 items, but can still change the
3165 values.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003166 3 Like 2 but for the |List| /
3167 |Dictionary| in the |List| /
3168 |Dictionary|, one level deeper.
3169 The default [depth] is 2, thus when {name} is a |List|
3170 or |Dictionary| the values cannot be changed.
Bram Moolenaara187c432020-09-16 21:08:28 +02003171
3172 Example with [depth] 0: >
3173 let mylist = [1, 2, 3]
3174 lockvar 0 mylist
Bram Moolenaar6e649222021-10-04 21:32:54 +01003175 let mylist[0] = 77 " OK
Bram Moolenaar10e8ff92023-06-10 21:40:39 +01003176 call add(mylist, 4) " OK
Bram Moolenaara187c432020-09-16 21:08:28 +02003177 let mylist = [7, 8, 9] " Error!
3178< *E743*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003179 For unlimited depth use [!] and omit [depth].
3180 However, there is a maximum depth of 100 to catch
3181 loops.
3182
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003183 Note that when two variables refer to the same |List|
3184 and you lock one of them, the |List| will also be
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003185 locked when used through the other variable.
3186 Example: >
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003187 :let l = [0, 1, 2, 3]
3188 :let cl = l
3189 :lockvar l
3190 :let cl[1] = 99 " won't work!
3191< You may want to make a copy of a list to avoid this.
3192 See |deepcopy()|.
3193
Yegappan Lakshmanancd39b692023-10-02 12:50:45 -07003194 *E1391* *E1392*
3195 Locking and unlocking object and class variables is
3196 currently NOT supported.
3197
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003198
Bram Moolenaara2baa732022-02-04 16:09:54 +00003199:unlo[ckvar][!] [depth] {name} ... *:unlockvar* *:unlo* *E1246*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003200 Unlock the internal variable {name}. Does the
3201 opposite of |:lockvar|.
3202
Bram Moolenaard13166e2022-11-18 21:49:57 +00003203 If {name} does not exist:
3204 - In |Vim9| script an error is given.
3205 - In legacy script this is silently ignored.
3206
Bram Moolenaar61da1bf2019-06-06 12:14:49 +02003207:if {expr1} *:if* *:end* *:endif* *:en* *E171* *E579* *E580*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003208:en[dif] Execute the commands until the next matching `:else`
3209 or `:endif` if {expr1} evaluates to non-zero.
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003210 Although the short forms work, it is recommended to
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003211 always use `:endif` to avoid confusion and to make
3212 auto-indenting work properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213
3214 From Vim version 4.5 until 5.0, every Ex command in
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003215 between the `:if` and `:endif` is ignored. These two
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 commands were just to allow for future expansions in a
Bram Moolenaar85084ef2016-01-17 22:26:33 +01003217 backward compatible way. Nesting was allowed. Note
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003218 that any `:else` or `:elseif` was ignored, the `else`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 part was not executed either.
3220
3221 You can use this to remain compatible with older
3222 versions: >
3223 :if version >= 500
3224 : version-5-specific-commands
3225 :endif
3226< The commands still need to be parsed to find the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003227 `endif`. Sometimes an older Vim has a problem with a
3228 new command. For example, `:silent` is recognized as
3229 a `:substitute` command. In that case `:execute` can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 avoid problems: >
3231 :if version >= 600
3232 : execute "silent 1,$delete"
3233 :endif
3234<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003235 In |Vim9| script `:endif` cannot be shortened, to
3236 improve script readability.
3237 NOTE: The `:append` and `:insert` commands don't work
3238 properly in between `:if` and `:endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239
3240 *:else* *:el* *E581* *E583*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003241:el[se] Execute the commands until the next matching `:else`
3242 or `:endif` if they previously were not being
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 executed.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003244 In |Vim9| script `:else` cannot be shortened, to
3245 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246
3247 *:elseif* *:elsei* *E582* *E584*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003248:elsei[f] {expr1} Short for `:else` `:if`, with the addition that there
3249 is no extra `:endif`.
3250 In |Vim9| script `:elseif` cannot be shortened, to
3251 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252
3253:wh[ile] {expr1} *:while* *:endwhile* *:wh* *:endw*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003254 *E170* *E585* *E588* *E733*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003255:endw[hile] Repeat the commands between `:while` and `:endwhile`,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 as long as {expr1} evaluates to non-zero.
3257 When an error is detected from a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003258 loop, execution continues after the `endwhile`.
Bram Moolenaar12805862005-01-05 22:16:17 +00003259 Example: >
3260 :let lnum = 1
3261 :while lnum <= line("$")
3262 :call FixLine(lnum)
3263 :let lnum = lnum + 1
3264 :endwhile
3265<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003266 In |Vim9| script `:while` and `:endwhile` cannot be
3267 shortened, to improve script readability.
3268 NOTE: The `:append` and `:insert` commands don't work
3269 properly inside a `:while` and `:for` loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003271:for {var} in {object} *:for* *E690* *E732*
Bram Moolenaar12805862005-01-05 22:16:17 +00003272:endfo[r] *:endfo* *:endfor*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003273 Repeat the commands between `:for` and `:endfor` for
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01003274 each item in {object}. {object} can be a |List|,
3275 a |Blob| or a |String|. *E1177*
Bram Moolenaar5da36052021-12-27 15:39:57 +00003276
3277 Variable {var} is set to the value of each item.
3278 In |Vim9| script the loop variable must not have been
3279 declared yet, unless when it is a
3280 global/window/tab/buffer variable.
3281
3282 When an error is detected for a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003283 loop, execution continues after the `endfor`.
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003284 Changing {object} inside the loop affects what items
3285 are used. Make a copy if this is unwanted: >
Bram Moolenaarde8866b2005-01-06 23:24:37 +00003286 :for item in copy(mylist)
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003287<
Bram Moolenaar5da36052021-12-27 15:39:57 +00003288 When {object} is a |List| and not making a copy, in
3289 legacy script Vim stores a reference to the next item
3290 in the |List| before executing the commands with the
3291 current item. Thus the current item can be removed
3292 without effect. Removing any later item means it will
3293 not be found. Thus the following example works (an
3294 inefficient way to make a |List| empty): >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003295 for item in mylist
3296 call remove(mylist, 0)
3297 endfor
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003298< Note that reordering the |List| (e.g., with sort() or
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003299 reverse()) may have unexpected effects.
Bram Moolenaar5da36052021-12-27 15:39:57 +00003300 In |Vim9| script the index is used. If an item before
3301 the current one is deleted the next item will be
3302 skipped.
Bram Moolenaar12805862005-01-05 22:16:17 +00003303
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003304 When {object} is a |Blob|, Vim always makes a copy to
3305 iterate over. Unlike with |List|, modifying the
3306 |Blob| does not affect the iteration.
3307
Bram Moolenaar9b03d3e2022-08-30 20:26:34 +01003308 When {object} is a |String| each item is a string with
3309 one character, plus any combining characters.
3310
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003311 In |Vim9| script `:endfor` cannot be shortened, to
3312 improve script readability.
3313
Bram Moolenaar12805862005-01-05 22:16:17 +00003314:for [{var1}, {var2}, ...] in {listlist}
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003315:endfo[r] *E1140*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003316 Like `:for` above, but each item in {listlist} must be
Bram Moolenaar12805862005-01-05 22:16:17 +00003317 a list, of which each item is assigned to {var1},
3318 {var2}, etc. Example: >
3319 :for [lnum, col] in [[1, 3], [2, 5], [3, 8]]
3320 :echo getline(lnum)[col]
3321 :endfor
3322<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 *:continue* *:con* *E586*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003324:con[tinue] When used inside a `:while` or `:for` loop, jumps back
Bram Moolenaar12805862005-01-05 22:16:17 +00003325 to the start of the loop.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003326 If it is used after a `:try` inside the loop but
3327 before the matching `:finally` (if present), the
3328 commands following the `:finally` up to the matching
3329 `:endtry` are executed first. This process applies to
3330 all nested `:try`s inside the loop. The outermost
3331 `:endtry` then jumps back to the start of the loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003333 In |Vim9| script `:cont` is the shortest form, to
3334 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 *:break* *:brea* *E587*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003336:brea[k] When used inside a `:while` or `:for` loop, skips to
3337 the command after the matching `:endwhile` or
3338 `:endfor`.
3339 If it is used after a `:try` inside the loop but
3340 before the matching `:finally` (if present), the
3341 commands following the `:finally` up to the matching
3342 `:endtry` are executed first. This process applies to
3343 all nested `:try`s inside the loop. The outermost
3344 `:endtry` then jumps to the command after the loop.
3345
3346 In |Vim9| script `:break` cannot be shortened, to
3347 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003349:try *:try* *:endt* *:endtry*
3350 *E600* *E601* *E602* *E1032*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351:endt[ry] Change the error handling for the commands between
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003352 `:try` and `:endtry` including everything being
3353 executed across `:source` commands, function calls,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 or autocommand invocations.
3355
3356 When an error or interrupt is detected and there is
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003357 a `:finally` command following, execution continues
3358 after the `:finally`. Otherwise, or when the
3359 `:endtry` is reached thereafter, the next
3360 (dynamically) surrounding `:try` is checked for
3361 a corresponding `:finally` etc. Then the script
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003362 processing is terminated. Whether a function
3363 definition has an "abort" argument does not matter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 Example: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003365 try | call Unknown() | finally | echomsg "cleanup" | endtry
3366 echomsg "not reached"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367<
3368 Moreover, an error or interrupt (dynamically) inside
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003369 `:try` and `:endtry` is converted to an exception. It
3370 can be caught as if it were thrown by a `:throw`
3371 command (see `:catch`). In this case, the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 processing is not terminated.
3373
3374 The value "Vim:Interrupt" is used for an interrupt
3375 exception. An error in a Vim command is converted
3376 to a value of the form "Vim({command}):{errmsg}",
3377 other errors are converted to a value of the form
3378 "Vim:{errmsg}". {command} is the full command name,
3379 and {errmsg} is the message that is displayed if the
3380 error exception is not caught, always beginning with
3381 the error number.
3382 Examples: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003383 try | sleep 100 | catch /^Vim:Interrupt$/ | endtry
3384 try | edit | catch /^Vim(edit):E\d\+/ | echo "error" | endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003386 In |Vim9| script `:endtry` cannot be shortened, to
3387 improve script readability.
3388
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003389 *:cat* *:catch*
3390 *E603* *E604* *E605* *E654* *E1033*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003391:cat[ch] /{pattern}/ The following commands until the next `:catch`,
3392 `:finally`, or `:endtry` that belongs to the same
3393 `:try` as the `:catch` are executed when an exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 matching {pattern} is being thrown and has not yet
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003395 been caught by a previous `:catch`. Otherwise, these
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 commands are skipped.
3397 When {pattern} is omitted all errors are caught.
3398 Examples: >
Bram Moolenaar647e24b2019-03-17 16:39:46 +01003399 :catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C)
3400 :catch /^Vim\%((\a\+)\)\=:E/ " catch all Vim errors
3401 :catch /^Vim\%((\a\+)\)\=:/ " catch errors and interrupts
3402 :catch /^Vim(write):/ " catch all errors in :write
3403 :catch /^Vim\%((\a\+)\)\=:E123:/ " catch error E123
3404 :catch /my-exception/ " catch user exception
3405 :catch /.*/ " catch everything
3406 :catch " same as /.*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407<
3408 Another character can be used instead of / around the
3409 {pattern}, so long as it does not have a special
3410 meaning (e.g., '|' or '"') and doesn't occur inside
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003411 {pattern}. *E1067*
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02003412 Information about the exception is available in
3413 |v:exception|. Also see |throw-variables|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 NOTE: It is not reliable to ":catch" the TEXT of
3415 an error message because it may vary in different
3416 locales.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003417 In |Vim9| script `:catch` cannot be shortened, to
3418 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419
3420 *:fina* *:finally* *E606* *E607*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003421:fina[lly] The following commands until the matching `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 are executed whenever the part between the matching
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003423 `:try` and the `:finally` is left: either by falling
3424 through to the `:finally` or by a `:continue`,
3425 `:break`, `:finish`, or `:return`, or by an error or
3426 interrupt or exception (see `:throw`).
3427
3428 In |Vim9| script `:finally` cannot be shortened, to
3429 improve script readability and avoid confusion with
3430 `:final`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003432 *:th* *:throw* *E608* *E1129*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433:th[row] {expr1} The {expr1} is evaluated and thrown as an exception.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003434 If the ":throw" is used after a `:try` but before the
3435 first corresponding `:catch`, commands are skipped
3436 until the first `:catch` matching {expr1} is reached.
3437 If there is no such `:catch` or if the ":throw" is
3438 used after a `:catch` but before the `:finally`, the
3439 commands following the `:finally` (if present) up to
3440 the matching `:endtry` are executed. If the `:throw`
3441 is after the `:finally`, commands up to the `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 are skipped. At the ":endtry", this process applies
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003443 again for the next dynamically surrounding `:try`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 (which may be found in a calling function or sourcing
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003445 script), until a matching `:catch` has been found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 If the exception is not caught, the command processing
3447 is terminated.
3448 Example: >
3449 :try | throw "oops" | catch /^oo/ | echo "caught" | endtry
Bram Moolenaar662db672011-03-22 14:05:35 +01003450< Note that "catch" may need to be on a separate line
3451 for when an error causes the parsing to skip the whole
3452 line and not see the "|" that separates the commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003454 In |Vim9| script `:throw` cannot be shortened, to
3455 improve script readability.
3456
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 *:ec* *:echo*
3458:ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The
3459 first {expr1} starts on a new line.
3460 Also see |:comment|.
3461 Use "\n" to start a new line. Use "\r" to move the
3462 cursor to the first column.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003463 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 Cannot be followed by a comment.
3465 Example: >
3466 :echo "the value of 'shell' is" &shell
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003467< *:echo-redraw*
3468 A later redraw may make the message disappear again.
3469 And since Vim mostly postpones redrawing until it's
3470 finished with a sequence of commands this happens
3471 quite often. To avoid that a command from before the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003472 `:echo` causes a redraw afterwards (redraws are often
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003473 postponed until you type something), force a redraw
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003474 with the `:redraw` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 :new | redraw | echo "there is a new window"
3476<
3477 *:echon*
3478:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
3479 |:comment|.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003480 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 Cannot be followed by a comment.
3482 Example: >
3483 :echon "the value of 'shell' is " &shell
3484<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003485 Note the difference between using `:echo`, which is a
3486 Vim command, and `:!echo`, which is an external shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 command: >
3488 :!echo % --> filename
3489< The arguments of ":!" are expanded, see |:_%|. >
3490 :!echo "%" --> filename or "filename"
3491< Like the previous example. Whether you see the double
3492 quotes or not depends on your 'shell'. >
3493 :echo % --> nothing
3494< The '%' is an illegal character in an expression. >
3495 :echo "%" --> %
3496< This just echoes the '%' character. >
3497 :echo expand("%") --> filename
3498< This calls the expand() function to expand the '%'.
3499
3500 *:echoh* *:echohl*
3501:echoh[l] {name} Use the highlight group {name} for the following
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003502 `:echo`, `:echon` and `:echomsg` commands. Also used
3503 for the `input()` prompt. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 :echohl WarningMsg | echo "Don't panic!" | echohl None
3505< Don't forget to set the group back to "None",
3506 otherwise all following echo's will be highlighted.
3507
3508 *:echom* *:echomsg*
3509:echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
3510 message in the |message-history|.
3511 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003512 `:echo` command. But unprintable characters are
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 displayed, not interpreted.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003514 The parsing works slightly different from `:echo`,
3515 more like `:execute`. All the expressions are first
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003516 evaluated and concatenated before echoing anything.
Bram Moolenaar461a7fc2018-12-22 13:28:07 +01003517 If expressions does not evaluate to a Number or
3518 String, string() is used to turn it into a string.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003519 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 Example: >
3521 :echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see."
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003522< See |:echo-redraw| to avoid the message disappearing
3523 when the screen is redrawn.
Bram Moolenaar37fef162022-08-29 18:16:32 +01003524
3525 *:echow* *:echowin* *:echowindow*
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003526:[N]echow[indow] {expr1} ..
Bram Moolenaar37fef162022-08-29 18:16:32 +01003527 Like |:echomsg| but when the messages popup window is
3528 available the message is displayed there. This means
3529 it will show for three seconds and avoid a
Bram Moolenaar9b03d3e2022-08-30 20:26:34 +01003530 |hit-enter| prompt. If you want to hide it before
3531 that, press Esc in Normal mode (when it would
Bram Moolenaar71b6d332022-09-10 13:13:14 +01003532 otherwise beep). If it disappears too soon you can
3533 use `:messages` to see the text.
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003534 When [N] is given then the window will show up for
3535 this number of seconds. The last `:echowindow` with a
3536 count matters, it is used once only.
Bram Moolenaar37fef162022-08-29 18:16:32 +01003537 The message window is available when Vim was compiled
3538 with the +timer and the +popupwin features.
3539
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 *:echoe* *:echoerr*
3541:echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
3542 message in the |message-history|. When used in a
3543 script or function the line number will be added.
3544 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003545 `:echomsg` command. When used inside a try conditional,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 the message is raised as an error exception instead
3547 (see |try-echoerr|).
3548 Example: >
3549 :echoerr "This script just failed!"
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003550< If you just want a highlighted message use `:echohl`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 And to get a beep: >
3552 :exe "normal \<Esc>"
Bram Moolenaar4c868302021-03-22 16:19:45 +01003553
3554:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3555 Intended for testing: works like `:echomsg` but when
3556 running in the GUI and started from a terminal write
3557 the text to stdout.
3558
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003559 *:eval*
3560:eval {expr} Evaluate {expr} and discard the result. Example: >
3561 :eval Getlist()->Filter()->append('$')
3562
3563< The expression is supposed to have a side effect,
3564 since the resulting value is not used. In the example
3565 the `append()` call appends the List with text to the
3566 buffer. This is similar to `:call` but works with any
3567 expression.
Bram Moolenaara2baa732022-02-04 16:09:54 +00003568 In |Vim9| script an expression without an effect will
3569 result in error *E1207* . This should help noticing
3570 mistakes.
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003571
3572 The command can be shortened to `:ev` or `:eva`, but
3573 these are hard to recognize and therefore not to be
3574 used.
3575
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003576 The command cannot be followed by "|" and another
3577 command, since "|" is seen as part of the expression.
3578
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003579
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 *:exe* *:execute*
3581:exe[cute] {expr1} .. Executes the string that results from the evaluation
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003582 of {expr1} as an Ex command.
3583 Multiple arguments are concatenated, with a space in
Bram Moolenaar7e6a5152021-01-02 16:39:53 +01003584 between. To avoid the extra space use the ".."
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003585 operator to concatenate strings into one argument.
3586 {expr1} is used as the processed command, command line
3587 editing keys are not recognized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 Cannot be followed by a comment.
3589 Examples: >
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003590 :execute "buffer" nextbuf
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003591 :execute "normal" count .. "w"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592<
3593 ":execute" can be used to append a command to commands
3594 that don't accept a '|'. Example: >
3595 :execute '!ls' | echo "theend"
3596
3597< ":execute" is also a nice way to avoid having to type
3598 control characters in a Vim script for a ":normal"
3599 command: >
3600 :execute "normal ixxx\<Esc>"
3601< This has an <Esc> character, see |expr-string|.
3602
Bram Moolenaar446cb832008-06-24 21:56:24 +00003603 Be careful to correctly escape special characters in
3604 file names. The |fnameescape()| function can be used
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003605 for Vim commands, |shellescape()| for |:!| commands.
3606 Examples: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003607 :execute "e " .. fnameescape(filename)
3608 :execute "!ls " .. shellescape(filename, 1)
Bram Moolenaar446cb832008-06-24 21:56:24 +00003609<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 Note: The executed string may be any command-line, but
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01003611 starting or ending "if", "while" and "for" does not
3612 always work, because when commands are skipped the
3613 ":execute" is not evaluated and Vim loses track of
3614 where blocks start and end. Also "break" and
3615 "continue" should not be inside ":execute".
3616 This example does not work, because the ":execute" is
3617 not evaluated and Vim does not see the "while", and
3618 gives an error for finding an ":endwhile": >
3619 :if 0
3620 : execute 'while i > 5'
3621 : echo "test"
3622 : endwhile
3623 :endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624<
3625 It is allowed to have a "while" or "if" command
3626 completely in the executed string: >
3627 :execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
3628<
3629
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003630 *:exe-comment*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 ":execute", ":echo" and ":echon" cannot be followed by
3632 a comment directly, because they see the '"' as the
3633 start of a string. But, you can use '|' followed by a
3634 comment. Example: >
3635 :echo "foo" | "this is a comment
3636
3637==============================================================================
36388. Exception handling *exception-handling*
3639
3640The Vim script language comprises an exception handling feature. This section
3641explains how it can be used in a Vim script.
3642
3643Exceptions may be raised by Vim on an error or on interrupt, see
3644|catch-errors| and |catch-interrupt|. You can also explicitly throw an
3645exception by using the ":throw" command, see |throw-catch|.
3646
3647
3648TRY CONDITIONALS *try-conditionals*
3649
3650Exceptions can be caught or can cause cleanup code to be executed. You can
3651use a try conditional to specify catch clauses (that catch exceptions) and/or
3652a finally clause (to be executed for cleanup).
3653 A try conditional begins with a |:try| command and ends at the matching
3654|:endtry| command. In between, you can use a |:catch| command to start
3655a catch clause, or a |:finally| command to start a finally clause. There may
3656be none or multiple catch clauses, but there is at most one finally clause,
3657which must not be followed by any catch clauses. The lines before the catch
3658clauses and the finally clause is called a try block. >
3659
3660 :try
Bram Moolenaar446cb832008-06-24 21:56:24 +00003661 : ...
3662 : ... TRY BLOCK
3663 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003665 : ...
3666 : ... CATCH CLAUSE
3667 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003669 : ...
3670 : ... CATCH CLAUSE
3671 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 :finally
Bram Moolenaar446cb832008-06-24 21:56:24 +00003673 : ...
3674 : ... FINALLY CLAUSE
3675 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 :endtry
3677
3678The try conditional allows to watch code for exceptions and to take the
3679appropriate actions. Exceptions from the try block may be caught. Exceptions
3680from the try block and also the catch clauses may cause cleanup actions.
3681 When no exception is thrown during execution of the try block, the control
3682is transferred to the finally clause, if present. After its execution, the
3683script continues with the line following the ":endtry".
3684 When an exception occurs during execution of the try block, the remaining
3685lines in the try block are skipped. The exception is matched against the
3686patterns specified as arguments to the ":catch" commands. The catch clause
3687after the first matching ":catch" is taken, other catch clauses are not
3688executed. The catch clause ends when the next ":catch", ":finally", or
3689":endtry" command is reached - whatever is first. Then, the finally clause
3690(if present) is executed. When the ":endtry" is reached, the script execution
3691continues in the following line as usual.
3692 When an exception that does not match any of the patterns specified by the
3693":catch" commands is thrown in the try block, the exception is not caught by
3694that try conditional and none of the catch clauses is executed. Only the
3695finally clause, if present, is taken. The exception pends during execution of
3696the finally clause. It is resumed at the ":endtry", so that commands after
3697the ":endtry" are not executed and the exception might be caught elsewhere,
3698see |try-nesting|.
3699 When during execution of a catch clause another exception is thrown, the
Bram Moolenaar58b85342016-08-14 19:54:54 +02003700remaining lines in that catch clause are not executed. The new exception is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701not matched against the patterns in any of the ":catch" commands of the same
3702try conditional and none of its catch clauses is taken. If there is, however,
3703a finally clause, it is executed, and the exception pends during its
3704execution. The commands following the ":endtry" are not executed. The new
3705exception might, however, be caught elsewhere, see |try-nesting|.
3706 When during execution of the finally clause (if present) an exception is
Bram Moolenaar58b85342016-08-14 19:54:54 +02003707thrown, the remaining lines in the finally clause are skipped. If the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708clause has been taken because of an exception from the try block or one of the
3709catch clauses, the original (pending) exception is discarded. The commands
3710following the ":endtry" are not executed, and the exception from the finally
3711clause is propagated and can be caught elsewhere, see |try-nesting|.
3712
3713The finally clause is also executed, when a ":break" or ":continue" for
3714a ":while" loop enclosing the complete try conditional is executed from the
3715try block or a catch clause. Or when a ":return" or ":finish" is executed
3716from the try block or a catch clause of a try conditional in a function or
3717sourced script, respectively. The ":break", ":continue", ":return", or
3718":finish" pends during execution of the finally clause and is resumed when the
3719":endtry" is reached. It is, however, discarded when an exception is thrown
3720from the finally clause.
3721 When a ":break" or ":continue" for a ":while" loop enclosing the complete
3722try conditional or when a ":return" or ":finish" is encountered in the finally
3723clause, the rest of the finally clause is skipped, and the ":break",
3724":continue", ":return" or ":finish" is executed as usual. If the finally
3725clause has been taken because of an exception or an earlier ":break",
3726":continue", ":return", or ":finish" from the try block or a catch clause,
3727this pending exception or command is discarded.
3728
3729For examples see |throw-catch| and |try-finally|.
3730
3731
Bram Moolenaar76db9e02022-11-09 21:21:04 +00003732NESTING OF TRY CONDITIONALS *try-nesting*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733
3734Try conditionals can be nested arbitrarily. That is, a complete try
3735conditional can be put into the try block, a catch clause, or the finally
3736clause of another try conditional. If the inner try conditional does not
3737catch an exception thrown in its try block or throws a new exception from one
3738of its catch clauses or its finally clause, the outer try conditional is
3739checked according to the rules above. If the inner try conditional is in the
3740try block of the outer try conditional, its catch clauses are checked, but
Bram Moolenaar58b85342016-08-14 19:54:54 +02003741otherwise only the finally clause is executed. It does not matter for
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742nesting, whether the inner try conditional is directly contained in the outer
3743one, or whether the outer one sources a script or calls a function containing
3744the inner try conditional.
3745
3746When none of the active try conditionals catches an exception, just their
3747finally clauses are executed. Thereafter, the script processing terminates.
3748An error message is displayed in case of an uncaught exception explicitly
3749thrown by a ":throw" command. For uncaught error and interrupt exceptions
3750implicitly raised by Vim, the error message(s) or interrupt message are shown
3751as usual.
3752
3753For examples see |throw-catch|.
3754
3755
3756EXAMINING EXCEPTION HANDLING CODE *except-examine*
3757
3758Exception handling code can get tricky. If you are in doubt what happens, set
3759'verbose' to 13 or use the ":13verbose" command modifier when sourcing your
3760script file. Then you see when an exception is thrown, discarded, caught, or
3761finished. When using a verbosity level of at least 14, things pending in
3762a finally clause are also shown. This information is also given in debug mode
3763(see |debug-scripts|).
3764
3765
3766THROWING AND CATCHING EXCEPTIONS *throw-catch*
3767
3768You can throw any number or string as an exception. Use the |:throw| command
3769and pass the value to be thrown as argument: >
3770 :throw 4711
3771 :throw "string"
3772< *throw-expression*
3773You can also specify an expression argument. The expression is then evaluated
3774first, and the result is thrown: >
3775 :throw 4705 + strlen("string")
3776 :throw strpart("strings", 0, 6)
3777
3778An exception might be thrown during evaluation of the argument of the ":throw"
3779command. Unless it is caught there, the expression evaluation is abandoned.
3780The ":throw" command then does not throw a new exception.
3781 Example: >
3782
3783 :function! Foo(arg)
3784 : try
3785 : throw a:arg
3786 : catch /foo/
3787 : endtry
3788 : return 1
3789 :endfunction
3790 :
3791 :function! Bar()
3792 : echo "in Bar"
3793 : return 4710
3794 :endfunction
3795 :
3796 :throw Foo("arrgh") + Bar()
3797
3798This throws "arrgh", and "in Bar" is not displayed since Bar() is not
3799executed. >
3800 :throw Foo("foo") + Bar()
3801however displays "in Bar" and throws 4711.
3802
3803Any other command that takes an expression as argument might also be
Bram Moolenaar58b85342016-08-14 19:54:54 +02003804abandoned by an (uncaught) exception during the expression evaluation. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805exception is then propagated to the caller of the command.
3806 Example: >
3807
3808 :if Foo("arrgh")
3809 : echo "then"
3810 :else
3811 : echo "else"
3812 :endif
3813
3814Here neither of "then" or "else" is displayed.
3815
3816 *catch-order*
3817Exceptions can be caught by a try conditional with one or more |:catch|
3818commands, see |try-conditionals|. The values to be caught by each ":catch"
3819command can be specified as a pattern argument. The subsequent catch clause
3820gets executed when a matching exception is caught.
3821 Example: >
3822
3823 :function! Foo(value)
3824 : try
3825 : throw a:value
3826 : catch /^\d\+$/
3827 : echo "Number thrown"
3828 : catch /.*/
3829 : echo "String thrown"
3830 : endtry
3831 :endfunction
3832 :
3833 :call Foo(0x1267)
3834 :call Foo('string')
3835
3836The first call to Foo() displays "Number thrown", the second "String thrown".
3837An exception is matched against the ":catch" commands in the order they are
3838specified. Only the first match counts. So you should place the more
3839specific ":catch" first. The following order does not make sense: >
3840
3841 : catch /.*/
3842 : echo "String thrown"
3843 : catch /^\d\+$/
3844 : echo "Number thrown"
3845
3846The first ":catch" here matches always, so that the second catch clause is
3847never taken.
3848
3849 *throw-variables*
3850If you catch an exception by a general pattern, you may access the exact value
3851in the variable |v:exception|: >
3852
3853 : catch /^\d\+$/
3854 : echo "Number thrown. Value is" v:exception
3855
3856You may also be interested where an exception was thrown. This is stored in
3857|v:throwpoint|. Note that "v:exception" and "v:throwpoint" are valid for the
3858exception most recently caught as long it is not finished.
3859 Example: >
3860
3861 :function! Caught()
3862 : if v:exception != ""
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003863 : echo 'Caught "' . v:exception .. '" in ' .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 : else
3865 : echo 'Nothing caught'
3866 : endif
3867 :endfunction
3868 :
3869 :function! Foo()
3870 : try
3871 : try
3872 : try
3873 : throw 4711
3874 : finally
3875 : call Caught()
3876 : endtry
3877 : catch /.*/
3878 : call Caught()
3879 : throw "oops"
3880 : endtry
3881 : catch /.*/
3882 : call Caught()
3883 : finally
3884 : call Caught()
3885 : endtry
3886 :endfunction
3887 :
3888 :call Foo()
3889
3890This displays >
3891
3892 Nothing caught
3893 Caught "4711" in function Foo, line 4
3894 Caught "oops" in function Foo, line 10
3895 Nothing caught
3896
3897A practical example: The following command ":LineNumber" displays the line
3898number in the script or function where it has been used: >
3899
3900 :function! LineNumber()
3901 : return substitute(v:throwpoint, '.*\D\(\d\+\).*', '\1', "")
3902 :endfunction
3903 :command! LineNumber try | throw "" | catch | echo LineNumber() | endtry
3904<
3905 *try-nested*
3906An exception that is not caught by a try conditional can be caught by
3907a surrounding try conditional: >
3908
3909 :try
3910 : try
3911 : throw "foo"
3912 : catch /foobar/
3913 : echo "foobar"
3914 : finally
3915 : echo "inner finally"
3916 : endtry
3917 :catch /foo/
3918 : echo "foo"
3919 :endtry
3920
3921The inner try conditional does not catch the exception, just its finally
3922clause is executed. The exception is then caught by the outer try
3923conditional. The example displays "inner finally" and then "foo".
3924
3925 *throw-from-catch*
3926You can catch an exception and throw a new one to be caught elsewhere from the
3927catch clause: >
3928
3929 :function! Foo()
3930 : throw "foo"
3931 :endfunction
3932 :
3933 :function! Bar()
3934 : try
3935 : call Foo()
3936 : catch /foo/
3937 : echo "Caught foo, throw bar"
3938 : throw "bar"
3939 : endtry
3940 :endfunction
3941 :
3942 :try
3943 : call Bar()
3944 :catch /.*/
3945 : echo "Caught" v:exception
3946 :endtry
3947
3948This displays "Caught foo, throw bar" and then "Caught bar".
3949
3950 *rethrow*
3951There is no real rethrow in the Vim script language, but you may throw
3952"v:exception" instead: >
3953
3954 :function! Bar()
3955 : try
3956 : call Foo()
3957 : catch /.*/
3958 : echo "Rethrow" v:exception
3959 : throw v:exception
3960 : endtry
3961 :endfunction
3962< *try-echoerr*
3963Note that this method cannot be used to "rethrow" Vim error or interrupt
3964exceptions, because it is not possible to fake Vim internal exceptions.
3965Trying so causes an error exception. You should throw your own exception
3966denoting the situation. If you want to cause a Vim error exception containing
3967the original error exception value, you can use the |:echoerr| command: >
3968
3969 :try
3970 : try
3971 : asdf
3972 : catch /.*/
3973 : echoerr v:exception
3974 : endtry
3975 :catch /.*/
3976 : echo v:exception
3977 :endtry
3978
3979This code displays
3980
Bram Moolenaar446cb832008-06-24 21:56:24 +00003981 Vim(echoerr):Vim:E492: Not an editor command: asdf ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982
3983
3984CLEANUP CODE *try-finally*
3985
3986Scripts often change global settings and restore them at their end. If the
3987user however interrupts the script by pressing CTRL-C, the settings remain in
Bram Moolenaar58b85342016-08-14 19:54:54 +02003988an inconsistent state. The same may happen to you in the development phase of
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989a script when an error occurs or you explicitly throw an exception without
3990catching it. You can solve these problems by using a try conditional with
3991a finally clause for restoring the settings. Its execution is guaranteed on
3992normal control flow, on error, on an explicit ":throw", and on interrupt.
3993(Note that errors and interrupts from inside the try conditional are converted
Bram Moolenaar58b85342016-08-14 19:54:54 +02003994to exceptions. When not caught, they terminate the script after the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995clause has been executed.)
3996Example: >
3997
3998 :try
3999 : let s:saved_ts = &ts
4000 : set ts=17
4001 :
4002 : " Do the hard work here.
4003 :
4004 :finally
4005 : let &ts = s:saved_ts
4006 : unlet s:saved_ts
4007 :endtry
4008
4009This method should be used locally whenever a function or part of a script
4010changes global settings which need to be restored on failure or normal exit of
4011that function or script part.
4012
4013 *break-finally*
4014Cleanup code works also when the try block or a catch clause is left by
4015a ":continue", ":break", ":return", or ":finish".
4016 Example: >
4017
4018 :let first = 1
4019 :while 1
4020 : try
4021 : if first
4022 : echo "first"
4023 : let first = 0
4024 : continue
4025 : else
4026 : throw "second"
4027 : endif
4028 : catch /.*/
4029 : echo v:exception
4030 : break
4031 : finally
4032 : echo "cleanup"
4033 : endtry
4034 : echo "still in while"
4035 :endwhile
4036 :echo "end"
4037
4038This displays "first", "cleanup", "second", "cleanup", and "end". >
4039
4040 :function! Foo()
4041 : try
4042 : return 4711
4043 : finally
4044 : echo "cleanup\n"
4045 : endtry
4046 : echo "Foo still active"
4047 :endfunction
4048 :
4049 :echo Foo() "returned by Foo"
4050
4051This displays "cleanup" and "4711 returned by Foo". You don't need to add an
Bram Moolenaar58b85342016-08-14 19:54:54 +02004052extra ":return" in the finally clause. (Above all, this would override the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053return value.)
4054
4055 *except-from-finally*
4056Using either of ":continue", ":break", ":return", ":finish", or ":throw" in
4057a finally clause is possible, but not recommended since it abandons the
4058cleanup actions for the try conditional. But, of course, interrupt and error
4059exceptions might get raised from a finally clause.
4060 Example where an error in the finally clause stops an interrupt from
4061working correctly: >
4062
4063 :try
4064 : try
4065 : echo "Press CTRL-C for interrupt"
4066 : while 1
4067 : endwhile
4068 : finally
4069 : unlet novar
4070 : endtry
4071 :catch /novar/
4072 :endtry
4073 :echo "Script still running"
4074 :sleep 1
4075
4076If you need to put commands that could fail into a finally clause, you should
4077think about catching or ignoring the errors in these commands, see
4078|catch-errors| and |ignore-errors|.
4079
4080
4081CATCHING ERRORS *catch-errors*
4082
4083If you want to catch specific errors, you just have to put the code to be
4084watched in a try block and add a catch clause for the error message. The
4085presence of the try conditional causes all errors to be converted to an
4086exception. No message is displayed and |v:errmsg| is not set then. To find
4087the right pattern for the ":catch" command, you have to know how the format of
4088the error exception is.
4089 Error exceptions have the following format: >
4090
4091 Vim({cmdname}):{errmsg}
4092or >
4093 Vim:{errmsg}
4094
4095{cmdname} is the name of the command that failed; the second form is used when
Bram Moolenaar58b85342016-08-14 19:54:54 +02004096the command name is not known. {errmsg} is the error message usually produced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097when the error occurs outside try conditionals. It always begins with
4098a capital "E", followed by a two or three-digit error number, a colon, and
4099a space.
4100
4101Examples:
4102
4103The command >
4104 :unlet novar
4105normally produces the error message >
4106 E108: No such variable: "novar"
4107which is converted inside try conditionals to an exception >
4108 Vim(unlet):E108: No such variable: "novar"
4109
4110The command >
4111 :dwim
4112normally produces the error message >
4113 E492: Not an editor command: dwim
4114which is converted inside try conditionals to an exception >
4115 Vim:E492: Not an editor command: dwim
4116
4117You can catch all ":unlet" errors by a >
4118 :catch /^Vim(unlet):/
4119or all errors for misspelled command names by a >
4120 :catch /^Vim:E492:/
4121
4122Some error messages may be produced by different commands: >
4123 :function nofunc
4124and >
4125 :delfunction nofunc
4126both produce the error message >
4127 E128: Function name must start with a capital: nofunc
4128which is converted inside try conditionals to an exception >
4129 Vim(function):E128: Function name must start with a capital: nofunc
4130or >
4131 Vim(delfunction):E128: Function name must start with a capital: nofunc
4132respectively. You can catch the error by its number independently on the
4133command that caused it if you use the following pattern: >
4134 :catch /^Vim(\a\+):E128:/
4135
4136Some commands like >
4137 :let x = novar
4138produce multiple error messages, here: >
4139 E121: Undefined variable: novar
4140 E15: Invalid expression: novar
4141Only the first is used for the exception value, since it is the most specific
4142one (see |except-several-errors|). So you can catch it by >
4143 :catch /^Vim(\a\+):E121:/
4144
4145You can catch all errors related to the name "nofunc" by >
4146 :catch /\<nofunc\>/
4147
4148You can catch all Vim errors in the ":write" and ":read" commands by >
4149 :catch /^Vim(\(write\|read\)):E\d\+:/
4150
4151You can catch all Vim errors by the pattern >
4152 :catch /^Vim\((\a\+)\)\=:E\d\+:/
4153<
4154 *catch-text*
4155NOTE: You should never catch the error message text itself: >
4156 :catch /No such variable/
Bram Moolenaar2b8388b2015-02-28 13:11:45 +01004157only works in the English locale, but not when the user has selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158a different language by the |:language| command. It is however helpful to
4159cite the message text in a comment: >
4160 :catch /^Vim(\a\+):E108:/ " No such variable
4161
4162
4163IGNORING ERRORS *ignore-errors*
4164
4165You can ignore errors in a specific Vim command by catching them locally: >
4166
4167 :try
4168 : write
4169 :catch
4170 :endtry
4171
4172But you are strongly recommended NOT to use this simple form, since it could
4173catch more than you want. With the ":write" command, some autocommands could
4174be executed and cause errors not related to writing, for instance: >
4175
4176 :au BufWritePre * unlet novar
4177
4178There could even be such errors you are not responsible for as a script
4179writer: a user of your script might have defined such autocommands. You would
4180then hide the error from the user.
4181 It is much better to use >
4182
4183 :try
4184 : write
4185 :catch /^Vim(write):/
4186 :endtry
4187
4188which only catches real write errors. So catch only what you'd like to ignore
4189intentionally.
4190
4191For a single command that does not cause execution of autocommands, you could
4192even suppress the conversion of errors to exceptions by the ":silent!"
4193command: >
4194 :silent! nunmap k
4195This works also when a try conditional is active.
4196
4197
4198CATCHING INTERRUPTS *catch-interrupt*
4199
4200When there are active try conditionals, an interrupt (CTRL-C) is converted to
Bram Moolenaar58b85342016-08-14 19:54:54 +02004201the exception "Vim:Interrupt". You can catch it like every exception. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202script is not terminated, then.
4203 Example: >
4204
4205 :function! TASK1()
4206 : sleep 10
4207 :endfunction
4208
4209 :function! TASK2()
4210 : sleep 20
4211 :endfunction
4212
4213 :while 1
4214 : let command = input("Type a command: ")
4215 : try
4216 : if command == ""
4217 : continue
4218 : elseif command == "END"
4219 : break
4220 : elseif command == "TASK1"
4221 : call TASK1()
4222 : elseif command == "TASK2"
4223 : call TASK2()
4224 : else
4225 : echo "\nIllegal command:" command
4226 : continue
4227 : endif
4228 : catch /^Vim:Interrupt$/
4229 : echo "\nCommand interrupted"
4230 : " Caught the interrupt. Continue with next prompt.
4231 : endtry
4232 :endwhile
4233
4234You can interrupt a task here by pressing CTRL-C; the script then asks for
Bram Moolenaar58b85342016-08-14 19:54:54 +02004235a new command. If you press CTRL-C at the prompt, the script is terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236
4237For testing what happens when CTRL-C would be pressed on a specific line in
4238your script, use the debug mode and execute the |>quit| or |>interrupt|
4239command on that line. See |debug-scripts|.
4240
4241
4242CATCHING ALL *catch-all*
4243
4244The commands >
4245
4246 :catch /.*/
4247 :catch //
4248 :catch
4249
4250catch everything, error exceptions, interrupt exceptions and exceptions
4251explicitly thrown by the |:throw| command. This is useful at the top level of
4252a script in order to catch unexpected things.
4253 Example: >
4254
4255 :try
4256 :
4257 : " do the hard work here
4258 :
4259 :catch /MyException/
4260 :
4261 : " handle known problem
4262 :
4263 :catch /^Vim:Interrupt$/
4264 : echo "Script interrupted"
4265 :catch /.*/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004266 : echo "Internal error (" .. v:exception .. ")"
4267 : echo " - occurred at " .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 :endtry
4269 :" end of script
4270
4271Note: Catching all might catch more things than you want. Thus, you are
4272strongly encouraged to catch only for problems that you can really handle by
4273specifying a pattern argument to the ":catch".
4274 Example: Catching all could make it nearly impossible to interrupt a script
4275by pressing CTRL-C: >
4276
4277 :while 1
4278 : try
4279 : sleep 1
4280 : catch
4281 : endtry
4282 :endwhile
4283
4284
4285EXCEPTIONS AND AUTOCOMMANDS *except-autocmd*
4286
4287Exceptions may be used during execution of autocommands. Example: >
4288
4289 :autocmd User x try
4290 :autocmd User x throw "Oops!"
4291 :autocmd User x catch
4292 :autocmd User x echo v:exception
4293 :autocmd User x endtry
4294 :autocmd User x throw "Arrgh!"
4295 :autocmd User x echo "Should not be displayed"
4296 :
4297 :try
4298 : doautocmd User x
4299 :catch
4300 : echo v:exception
4301 :endtry
4302
4303This displays "Oops!" and "Arrgh!".
4304
4305 *except-autocmd-Pre*
4306For some commands, autocommands get executed before the main action of the
4307command takes place. If an exception is thrown and not caught in the sequence
4308of autocommands, the sequence and the command that caused its execution are
4309abandoned and the exception is propagated to the caller of the command.
4310 Example: >
4311
4312 :autocmd BufWritePre * throw "FAIL"
4313 :autocmd BufWritePre * echo "Should not be displayed"
4314 :
4315 :try
4316 : write
4317 :catch
4318 : echo "Caught:" v:exception "from" v:throwpoint
4319 :endtry
4320
4321Here, the ":write" command does not write the file currently being edited (as
4322you can see by checking 'modified'), since the exception from the BufWritePre
4323autocommand abandons the ":write". The exception is then caught and the
4324script displays: >
4325
4326 Caught: FAIL from BufWrite Auto commands for "*"
4327<
4328 *except-autocmd-Post*
4329For some commands, autocommands get executed after the main action of the
4330command has taken place. If this main action fails and the command is inside
4331an active try conditional, the autocommands are skipped and an error exception
4332is thrown that can be caught by the caller of the command.
4333 Example: >
4334
4335 :autocmd BufWritePost * echo "File successfully written!"
4336 :
4337 :try
4338 : write /i/m/p/o/s/s/i/b/l/e
4339 :catch
4340 : echo v:exception
4341 :endtry
4342
4343This just displays: >
4344
4345 Vim(write):E212: Can't open file for writing (/i/m/p/o/s/s/i/b/l/e)
4346
4347If you really need to execute the autocommands even when the main action
4348fails, trigger the event from the catch clause.
4349 Example: >
4350
4351 :autocmd BufWritePre * set noreadonly
4352 :autocmd BufWritePost * set readonly
4353 :
4354 :try
4355 : write /i/m/p/o/s/s/i/b/l/e
4356 :catch
4357 : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e
4358 :endtry
4359<
4360You can also use ":silent!": >
4361
4362 :let x = "ok"
4363 :let v:errmsg = ""
4364 :autocmd BufWritePost * if v:errmsg != ""
4365 :autocmd BufWritePost * let x = "after fail"
4366 :autocmd BufWritePost * endif
4367 :try
4368 : silent! write /i/m/p/o/s/s/i/b/l/e
4369 :catch
4370 :endtry
4371 :echo x
4372
4373This displays "after fail".
4374
4375If the main action of the command does not fail, exceptions from the
4376autocommands will be catchable by the caller of the command: >
4377
4378 :autocmd BufWritePost * throw ":-("
4379 :autocmd BufWritePost * echo "Should not be displayed"
4380 :
4381 :try
4382 : write
4383 :catch
4384 : echo v:exception
4385 :endtry
4386<
4387 *except-autocmd-Cmd*
4388For some commands, the normal action can be replaced by a sequence of
4389autocommands. Exceptions from that sequence will be catchable by the caller
4390of the command.
4391 Example: For the ":write" command, the caller cannot know whether the file
Bram Moolenaar58b85342016-08-14 19:54:54 +02004392had actually been written when the exception occurred. You need to tell it in
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393some way. >
4394
4395 :if !exists("cnt")
4396 : let cnt = 0
4397 :
4398 : autocmd BufWriteCmd * if &modified
4399 : autocmd BufWriteCmd * let cnt = cnt + 1
4400 : autocmd BufWriteCmd * if cnt % 3 == 2
4401 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4402 : autocmd BufWriteCmd * endif
4403 : autocmd BufWriteCmd * write | set nomodified
4404 : autocmd BufWriteCmd * if cnt % 3 == 0
4405 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4406 : autocmd BufWriteCmd * endif
4407 : autocmd BufWriteCmd * echo "File successfully written!"
4408 : autocmd BufWriteCmd * endif
4409 :endif
4410 :
4411 :try
4412 : write
4413 :catch /^BufWriteCmdError$/
4414 : if &modified
4415 : echo "Error on writing (file contents not changed)"
4416 : else
4417 : echo "Error after writing"
4418 : endif
4419 :catch /^Vim(write):/
4420 : echo "Error on writing"
4421 :endtry
4422
4423When this script is sourced several times after making changes, it displays
4424first >
4425 File successfully written!
4426then >
4427 Error on writing (file contents not changed)
4428then >
4429 Error after writing
4430etc.
4431
4432 *except-autocmd-ill*
4433You cannot spread a try conditional over autocommands for different events.
4434The following code is ill-formed: >
4435
4436 :autocmd BufWritePre * try
4437 :
4438 :autocmd BufWritePost * catch
4439 :autocmd BufWritePost * echo v:exception
4440 :autocmd BufWritePost * endtry
4441 :
4442 :write
4443
4444
4445EXCEPTION HIERARCHIES AND PARAMETERIZED EXCEPTIONS *except-hier-param*
4446
4447Some programming languages allow to use hierarchies of exception classes or to
4448pass additional information with the object of an exception class. You can do
4449similar things in Vim.
4450 In order to throw an exception from a hierarchy, just throw the complete
4451class name with the components separated by a colon, for instance throw the
4452string "EXCEPT:MATHERR:OVERFLOW" for an overflow in a mathematical library.
4453 When you want to pass additional information with your exception class, add
4454it in parentheses, for instance throw the string "EXCEPT:IO:WRITEERR(myfile)"
4455for an error when writing "myfile".
4456 With the appropriate patterns in the ":catch" command, you can catch for
4457base classes or derived classes of your hierarchy. Additional information in
4458parentheses can be cut out from |v:exception| with the ":substitute" command.
4459 Example: >
4460
4461 :function! CheckRange(a, func)
4462 : if a:a < 0
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004463 : throw "EXCEPT:MATHERR:RANGE(" .. a:func .. ")"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 : endif
4465 :endfunction
4466 :
4467 :function! Add(a, b)
4468 : call CheckRange(a:a, "Add")
4469 : call CheckRange(a:b, "Add")
4470 : let c = a:a + a:b
4471 : if c < 0
4472 : throw "EXCEPT:MATHERR:OVERFLOW"
4473 : endif
4474 : return c
4475 :endfunction
4476 :
4477 :function! Div(a, b)
4478 : call CheckRange(a:a, "Div")
4479 : call CheckRange(a:b, "Div")
4480 : if (a:b == 0)
4481 : throw "EXCEPT:MATHERR:ZERODIV"
4482 : endif
4483 : return a:a / a:b
4484 :endfunction
4485 :
4486 :function! Write(file)
4487 : try
Bram Moolenaar446cb832008-06-24 21:56:24 +00004488 : execute "write" fnameescape(a:file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 : catch /^Vim(write):/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004490 : throw "EXCEPT:IO(" .. getcwd() .. ", " .. a:file .. "):WRITEERR"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 : endtry
4492 :endfunction
4493 :
4494 :try
4495 :
Bram Moolenaar75ab5902022-04-18 15:36:40 +01004496 : " something with arithmetic and I/O
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 :
4498 :catch /^EXCEPT:MATHERR:RANGE/
4499 : let function = substitute(v:exception, '.*(\(\a\+\)).*', '\1', "")
4500 : echo "Range error in" function
4501 :
4502 :catch /^EXCEPT:MATHERR/ " catches OVERFLOW and ZERODIV
4503 : echo "Math error"
4504 :
4505 :catch /^EXCEPT:IO/
4506 : let dir = substitute(v:exception, '.*(\(.\+\),\s*.\+).*', '\1', "")
4507 : let file = substitute(v:exception, '.*(.\+,\s*\(.\+\)).*', '\1', "")
4508 : if file !~ '^/'
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004509 : let file = dir .. "/" .. file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 : endif
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004511 : echo 'I/O error for "' .. file .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 :
4513 :catch /^EXCEPT/
4514 : echo "Unspecified error"
4515 :
4516 :endtry
4517
4518The exceptions raised by Vim itself (on error or when pressing CTRL-C) use
4519a flat hierarchy: they are all in the "Vim" class. You cannot throw yourself
4520exceptions with the "Vim" prefix; they are reserved for Vim.
4521 Vim error exceptions are parameterized with the name of the command that
4522failed, if known. See |catch-errors|.
4523
4524
4525PECULIARITIES
4526 *except-compat*
4527The exception handling concept requires that the command sequence causing the
4528exception is aborted immediately and control is transferred to finally clauses
4529and/or a catch clause.
4530
4531In the Vim script language there are cases where scripts and functions
4532continue after an error: in functions without the "abort" flag or in a command
4533after ":silent!", control flow goes to the following line, and outside
4534functions, control flow goes to the line following the outermost ":endwhile"
4535or ":endif". On the other hand, errors should be catchable as exceptions
4536(thus, requiring the immediate abortion).
4537
4538This problem has been solved by converting errors to exceptions and using
4539immediate abortion (if not suppressed by ":silent!") only when a try
Bram Moolenaar58b85342016-08-14 19:54:54 +02004540conditional is active. This is no restriction since an (error) exception can
4541be caught only from an active try conditional. If you want an immediate
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542termination without catching the error, just use a try conditional without
4543catch clause. (You can cause cleanup code being executed before termination
4544by specifying a finally clause.)
4545
4546When no try conditional is active, the usual abortion and continuation
4547behavior is used instead of immediate abortion. This ensures compatibility of
4548scripts written for Vim 6.1 and earlier.
4549
4550However, when sourcing an existing script that does not use exception handling
4551commands (or when calling one of its functions) from inside an active try
4552conditional of a new script, you might change the control flow of the existing
4553script on error. You get the immediate abortion on error and can catch the
4554error in the new script. If however the sourced script suppresses error
4555messages by using the ":silent!" command (checking for errors by testing
Bram Moolenaar58b85342016-08-14 19:54:54 +02004556|v:errmsg| if appropriate), its execution path is not changed. The error is
4557not converted to an exception. (See |:silent|.) So the only remaining cause
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558where this happens is for scripts that don't care about errors and produce
4559error messages. You probably won't want to use such code from your new
4560scripts.
4561
4562 *except-syntax-err*
4563Syntax errors in the exception handling commands are never caught by any of
4564the ":catch" commands of the try conditional they belong to. Its finally
4565clauses, however, is executed.
4566 Example: >
4567
4568 :try
4569 : try
4570 : throw 4711
4571 : catch /\(/
4572 : echo "in catch with syntax error"
4573 : catch
4574 : echo "inner catch-all"
4575 : finally
4576 : echo "inner finally"
4577 : endtry
4578 :catch
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004579 : echo 'outer catch-all caught "' .. v:exception .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 : finally
4581 : echo "outer finally"
4582 :endtry
4583
4584This displays: >
4585 inner finally
4586 outer catch-all caught "Vim(catch):E54: Unmatched \("
4587 outer finally
4588The original exception is discarded and an error exception is raised, instead.
4589
4590 *except-single-line*
4591The ":try", ":catch", ":finally", and ":endtry" commands can be put on
4592a single line, but then syntax errors may make it difficult to recognize the
4593"catch" line, thus you better avoid this.
4594 Example: >
4595 :try | unlet! foo # | catch | endtry
4596raises an error exception for the trailing characters after the ":unlet!"
4597argument, but does not see the ":catch" and ":endtry" commands, so that the
4598error exception is discarded and the "E488: Trailing characters" message gets
4599displayed.
4600
4601 *except-several-errors*
4602When several errors appear in a single command, the first error message is
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +02004603usually the most specific one and therefore converted to the error exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 Example: >
4605 echo novar
4606causes >
4607 E121: Undefined variable: novar
4608 E15: Invalid expression: novar
4609The value of the error exception inside try conditionals is: >
4610 Vim(echo):E121: Undefined variable: novar
4611< *except-syntax-error*
4612But when a syntax error is detected after a normal error in the same command,
4613the syntax error is used for the exception being thrown.
4614 Example: >
4615 unlet novar #
4616causes >
4617 E108: No such variable: "novar"
4618 E488: Trailing characters
4619The value of the error exception inside try conditionals is: >
4620 Vim(unlet):E488: Trailing characters
4621This is done because the syntax error might change the execution path in a way
4622not intended by the user. Example: >
4623 try
4624 try | unlet novar # | catch | echo v:exception | endtry
4625 catch /.*/
4626 echo "outer catch:" v:exception
4627 endtry
4628This displays "outer catch: Vim(unlet):E488: Trailing characters", and then
4629a "E600: Missing :endtry" error message is given, see |except-single-line|.
4630
4631==============================================================================
46329. Examples *eval-examples*
4633
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004634Printing in Binary ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635>
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01004636 :" The function Nr2Bin() returns the binary string representation of a number.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004637 :func Nr2Bin(nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 : let n = a:nr
4639 : let r = ""
4640 : while n
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004641 : let r = '01'[n % 2] .. r
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004642 : let n = n / 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 : endwhile
4644 : return r
4645 :endfunc
4646
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004647 :" The function String2Bin() converts each character in a string to a
4648 :" binary string, separated with dashes.
4649 :func String2Bin(str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 : let out = ''
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004651 : for ix in range(strlen(a:str))
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004652 : let out = out .. '-' .. Nr2Bin(char2nr(a:str[ix]))
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004653 : endfor
4654 : return out[1:]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 :endfunc
4656
4657Example of its use: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004658 :echo Nr2Bin(32)
4659result: "100000" >
4660 :echo String2Bin("32")
4661result: "110011-110010"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662
4663
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004664Sorting lines ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004666This example sorts lines with a specific compare function. >
4667
4668 :func SortBuffer()
4669 : let lines = getline(1, '$')
4670 : call sort(lines, function("Strcmp"))
4671 : call setline(1, lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 :endfunction
4673
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004674As a one-liner: >
4675 :call setline(1, sort(getline(1, '$'), function("Strcmp")))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004678scanf() replacement ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 *sscanf*
4680There is no sscanf() function in Vim. If you need to extract parts from a
4681line, you can use matchstr() and substitute() to do it. This example shows
4682how to get the file name, line number and column number out of a line like
4683"foobar.txt, 123, 45". >
4684 :" Set up the match bit
4685 :let mx='\(\f\+\),\s*\(\d\+\),\s*\(\d\+\)'
4686 :"get the part matching the whole expression
4687 :let l = matchstr(line, mx)
4688 :"get each item out of the match
4689 :let file = substitute(l, mx, '\1', '')
4690 :let lnum = substitute(l, mx, '\2', '')
4691 :let col = substitute(l, mx, '\3', '')
4692
4693The input is in the variable "line", the results in the variables "file",
4694"lnum" and "col". (idea from Michael Geddes)
4695
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004696
4697getting the scriptnames in a Dictionary ~
4698 *scriptnames-dictionary*
Bram Moolenaardd60c362023-02-27 15:49:53 +00004699The `:scriptnames` command can be used to get a list of all script files that
4700have been sourced. There is also the `getscriptinfo()` function, but the
4701information returned is not exactly the same. In case you need to manipulate
Bram Moolenaar71badf92023-04-22 22:40:14 +01004702the list, this code can be used as a base: >
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01004703
Bram Moolenaar71badf92023-04-22 22:40:14 +01004704 # Create or update scripts dictionary, indexed by SNR, and return it.
4705 def Scripts(scripts: dict<string> = {}): dict<string>
4706 for info in getscriptinfo()
4707 if scripts->has_key(info.sid)
4708 continue
4709 endif
4710 scripts[info.sid] = info.name
4711 endfor
4712 return scripts
4713 enddef
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004714
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200471610. Vim script versions *vimscript-version* *vimscript-versions*
Bram Moolenaar911ead12019-04-21 00:03:35 +02004717 *scriptversion*
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004718Over time many features have been added to Vim script. This includes Ex
4719commands, functions, variable types, etc. Each individual feature can be
4720checked with the |has()| and |exists()| functions.
4721
4722Sometimes old syntax of functionality gets in the way of making Vim better.
4723When support is taken away this will break older Vim scripts. To make this
4724explicit the |:scriptversion| command can be used. When a Vim script is not
4725compatible with older versions of Vim this will give an explicit error,
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004726instead of failing in mysterious ways.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004727
Bram Moolenaara2baa732022-02-04 16:09:54 +00004728When using a legacy function, defined with `:function`, in |Vim9| script then
4729scriptversion 4 is used.
4730
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004731 *scriptversion-1* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004732 :scriptversion 1
4733< This is the original Vim script, same as not using a |:scriptversion|
4734 command. Can be used to go back to old syntax for a range of lines.
4735 Test for support with: >
4736 has('vimscript-1')
4737
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004738< *scriptversion-2* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004739 :scriptversion 2
Bram Moolenaar68e65602019-05-26 21:33:31 +02004740< String concatenation with "." is not supported, use ".." instead.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004741 This avoids the ambiguity using "." for Dict member access and
4742 floating point numbers. Now ".5" means the number 0.5.
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004743
4744 *scriptversion-3* >
Bram Moolenaar911ead12019-04-21 00:03:35 +02004745 :scriptversion 3
4746< All |vim-variable|s must be prefixed by "v:". E.g. "version" doesn't
4747 work as |v:version| anymore, it can be used as a normal variable.
4748 Same for some obvious names as "count" and others.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004749
Bram Moolenaar911ead12019-04-21 00:03:35 +02004750 Test for support with: >
4751 has('vimscript-3')
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004752<
4753 *scriptversion-4* >
4754 :scriptversion 4
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004755< Numbers with a leading zero are not recognized as octal. "0o" or "0O"
4756 is still recognized as octal. With the
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004757 previous version you get: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004758 echo 017 " displays 15 (octal)
4759 echo 0o17 " displays 15 (octal)
4760 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004761< with script version 4: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004762 echo 017 " displays 17 (decimal)
4763 echo 0o17 " displays 15 (octal)
4764 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004765< Also, it is possible to use single quotes inside numbers to make them
4766 easier to read: >
4767 echo 1'000'000
4768< The quotes must be surrounded by digits.
4769
4770 Test for support with: >
4771 has('vimscript-4')
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004772
4773==============================================================================
477411. No +eval feature *no-eval-feature*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775
4776When the |+eval| feature was disabled at compile time, none of the expression
4777evaluation commands are available. To prevent this from causing Vim scripts
4778to generate all kinds of errors, the ":if" and ":endif" commands are still
4779recognized, though the argument of the ":if" and everything between the ":if"
4780and the matching ":endif" is ignored. Nesting of ":if" blocks is allowed, but
4781only if the commands are at the start of the line. The ":else" command is not
4782recognized.
4783
4784Example of how to avoid executing commands when the |+eval| feature is
4785missing: >
4786
4787 :if 1
4788 : echo "Expression evaluation is compiled in"
4789 :else
4790 : echo "You will _never_ see this message"
4791 :endif
4792
Bram Moolenaar773a97c2019-06-06 20:39:55 +02004793To execute a command only when the |+eval| feature is disabled can be done in
4794two ways. The simplest is to exit the script (or Vim) prematurely: >
4795 if 1
4796 echo "commands executed with +eval"
4797 finish
4798 endif
4799 args " command executed without +eval
4800
4801If you do not want to abort loading the script you can use a trick, as this
4802example shows: >
Bram Moolenaar45d2cca2017-04-30 16:36:05 +02004803
4804 silent! while 0
4805 set history=111
4806 silent! endwhile
4807
4808When the |+eval| feature is available the command is skipped because of the
4809"while 0". Without the |+eval| feature the "while 0" is an error, which is
4810silently ignored, and the command is executed.
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +02004811
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812==============================================================================
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000481312. The sandbox *eval-sandbox* *sandbox*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814
Bram Moolenaar368373e2010-07-19 20:46:22 +02004815The 'foldexpr', 'formatexpr', 'includeexpr', 'indentexpr', 'statusline' and
4816'foldtext' options may be evaluated in a sandbox. This means that you are
4817protected from these expressions having nasty side effects. This gives some
4818safety for when these options are set from a modeline. It is also used when
4819the command from a tags file is executed and for CTRL-R = in the command line.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004820The sandbox is also used for the |:sandbox| command.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00004821 *E48*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822These items are not allowed in the sandbox:
4823 - changing the buffer text
Bram Moolenaarb477af22018-07-15 20:20:18 +02004824 - defining or changing mapping, autocommands, user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 - setting certain options (see |option-summary|)
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004826 - setting certain v: variables (see |v:var|) *E794*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 - executing a shell command
4828 - reading or writing a file
4829 - jumping to another buffer or editing a file
Bram Moolenaar4770d092006-01-12 23:22:24 +00004830 - executing Python, Perl, etc. commands
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004831This is not guaranteed 100% secure, but it should block most attacks.
4832
4833 *:san* *:sandbox*
Bram Moolenaar045e82d2005-07-08 22:25:33 +00004834:san[dbox] {cmd} Execute {cmd} in the sandbox. Useful to evaluate an
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004835 option that may have been set from a modeline, e.g.
4836 'foldexpr'.
4837
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004838 *sandbox-option*
4839A few options contain an expression. When this expression is evaluated it may
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00004840have to be done in the sandbox to avoid a security risk. But the sandbox is
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004841restrictive, thus this only happens when the option was set from an insecure
4842location. Insecure in this context are:
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004843- sourcing a .vimrc or .exrc in the current directory
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004844- while executing in the sandbox
4845- value coming from a modeline
Bram Moolenaarb477af22018-07-15 20:20:18 +02004846- executing a function that was defined in the sandbox
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004847
4848Note that when in the sandbox and saving an option value and restoring it, the
4849option will still be marked as it was set in the sandbox.
4850
4851==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200485213. Textlock *textlock*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004853
4854In a few situations it is not allowed to change the text in the buffer, jump
4855to another window and some other things that might confuse or break what Vim
4856is currently doing. This mostly applies to things that happen when Vim is
Bram Moolenaar58b85342016-08-14 19:54:54 +02004857actually doing something else. For example, evaluating the 'balloonexpr' may
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004858happen any moment the mouse cursor is resting at some position.
4859
4860This is not allowed when the textlock is active:
4861 - changing the buffer text
4862 - jumping to another buffer or window
4863 - editing another file
4864 - closing a window or quitting Vim
4865 - etc.
4866
Christian Brabandtda4e4332023-11-05 10:45:12 +01004867==============================================================================
486814. Vim script library *vim-script-library*
4869
4870Vim comes bundled with a Vim script library, that can be used by runtime,
4871script authors. Currently, it only includes very few functions, but it may
4872grow over time.
4873
h_east596a9f22023-11-21 21:24:23 +09004874The functions are available as |Vim9-script| as well as using legacy Vim
Christian Brabandtda4e4332023-11-05 10:45:12 +01004875script (to be used for non Vim 9.0 versions and Neovim).
4876
4877 *dist#vim* *dist#vim9*
h_east596a9f22023-11-21 21:24:23 +09004878The functions make use of the autoloaded prefix "dist#vim" (for legacy Vim
4879script and Neovim) and "dist#vim9" for Vim9 script.
Christian Brabandtda4e4332023-11-05 10:45:12 +01004880
4881The following functions are available:
4882
4883dist#vim#IsSafeExecutable(filetype, executable) ~
4884dist#vim9#IsSafeExecutable(filetype:string, executable:string): bool ~
4885
4886This function takes a filetype and an executable and checks whether it is safe
4887to execute the given executable. For security reasons users may not want to
4888have Vim execute random executables or may have forbidden to do so for
4889specific filetypes by setting the "<filetype>_exec" variable (|plugin_exec|).
4890
4891It returns |true| or |false| to indicate whether the plugin should run the given
zeertzjq61e984e2023-12-09 15:18:33 +08004892executable. It takes the following arguments:
Christian Brabandtda4e4332023-11-05 10:45:12 +01004893
4894 argument type ~
4895
4896 filetype string
4897 executable string
4898
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899
Bram Moolenaar91f84f62018-07-29 15:07:52 +02004900 vim:tw=78:ts=8:noet:ft=help:norl: