blob: 8cb353ff352886940182a3e73c3c296fc52a765b [file] [log] [blame]
h_east596a9f22023-11-21 21:24:23 +09001*eval.txt* For Vim version 9.0. Last change: 2023 Nov 20
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]
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000306 :let mylist += [7, 8]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000307
Bram Moolenaar34453202021-01-31 13:08:38 +0100308To prepend or append an item, turn the item into a list by putting [] around
309it. To change a list in-place, refer to |list-modification| below.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000310
311
312Sublist ~
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200313 *sublist*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000314A part of the List can be obtained by specifying the first and last index,
315separated by a colon in square brackets: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000316 :let shortlist = mylist[2:-1] " get List [3, "four"]
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000317
318Omitting the first index is similar to zero. Omitting the last index is
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000319similar to -1. >
Bram Moolenaar540d6e32005-01-09 21:20:18 +0000320 :let endlist = mylist[2:] " from item 2 to the end: [3, "four"]
321 :let shortlist = mylist[2:2] " List with one item: [3]
322 :let otherlist = mylist[:] " make a copy of the List
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000323
Bram Moolenaar6601b622021-01-13 21:47:15 +0100324Notice that the last index is inclusive. If you prefer using an exclusive
325index use the |slice()| method.
326
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000327If the first index is beyond the last item of the List or the second item is
328before the first item, the result is an empty list. There is no error
329message.
330
331If the second index is equal to or greater than the length of the list the
332length minus one is used: >
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000333 :let mylist = [0, 1, 2, 3]
334 :echo mylist[2:8] " result: [2, 3]
335
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000336NOTE: mylist[s:e] means using the variable "s:e" as index. Watch out for
Bram Moolenaar58b85342016-08-14 19:54:54 +0200337using a single letter variable before the ":". Insert a space when needed:
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000338mylist[s : e].
339
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +0000340
Bram Moolenaar13065c42005-01-08 16:08:21 +0000341List identity ~
Bram Moolenaard8b02732005-01-14 21:48:43 +0000342 *list-identity*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000343When variable "aa" is a list and you assign it to another variable "bb", both
344variables refer to the same list. Thus changing the list "aa" will also
345change "bb": >
346 :let aa = [1, 2, 3]
347 :let bb = aa
348 :call add(aa, 4)
349 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000350< [1, 2, 3, 4]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000351
352Making a copy of a list is done with the |copy()| function. Using [:] also
353works, as explained above. This creates a shallow copy of the list: Changing
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000354a list item in the list will also change the item in the copied list: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000355 :let aa = [[1, 'a'], 2, 3]
356 :let bb = copy(aa)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000357 :call add(aa, 4)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000358 :let aa[0][1] = 'aaa'
359 :echo aa
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000360< [[1, aaa], 2, 3, 4] >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000361 :echo bb
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000362< [[1, aaa], 2, 3]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000363
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000364To make a completely independent list use |deepcopy()|. This also makes a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000365copy of the values in the list, recursively. Up to a hundred levels deep.
Bram Moolenaar13065c42005-01-08 16:08:21 +0000366
367The operator "is" can be used to check if two variables refer to the same
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000368List. "isnot" does the opposite. In contrast "==" compares if two lists have
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000369the same value. >
370 :let alist = [1, 2, 3]
371 :let blist = [1, 2, 3]
372 :echo alist is blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000373< 0 >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000374 :echo alist == blist
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000375< 1
Bram Moolenaar13065c42005-01-08 16:08:21 +0000376
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000377Note about comparing lists: Two lists are considered equal if they have the
378same length and all items compare equal, as with using "==". There is one
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000379exception: When comparing a number with a string they are considered
380different. There is no automatic type conversion, as with using "==" on
381variables. Example: >
382 echo 4 == "4"
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000383< 1 >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000384 echo [4] == ["4"]
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000385< 0
386
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000387Thus comparing Lists is more strict than comparing numbers and strings. You
Bram Moolenaar446cb832008-06-24 21:56:24 +0000388can compare simple values this way too by putting them in a list: >
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000389
390 :let a = 5
391 :let b = "5"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000392 :echo a == b
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000393< 1 >
Bram Moolenaar446cb832008-06-24 21:56:24 +0000394 :echo [a] == [b]
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000395< 0
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000396
Bram Moolenaar13065c42005-01-08 16:08:21 +0000397
398List unpack ~
399
400To unpack the items in a list to individual variables, put the variables in
401square brackets, like list items: >
402 :let [var1, var2] = mylist
403
404When the number of variables does not match the number of items in the list
405this produces an error. To handle any extra items from the list append ";"
406and a variable name: >
407 :let [var1, var2; rest] = mylist
408
409This works like: >
410 :let var1 = mylist[0]
411 :let var2 = mylist[1]
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000412 :let rest = mylist[2:]
Bram Moolenaar13065c42005-01-08 16:08:21 +0000413
414Except that there is no error if there are only two items. "rest" will be an
415empty list then.
416
417
418List modification ~
419 *list-modification*
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000420To change a specific item of a list use |:let| this way: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000421 :let list[4] = "four"
422 :let listlist[0][3] = item
423
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000424To change part of a list you can specify the first and last item to be
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000425modified. The value must at least have the number of items in the range: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000426 :let list[3:5] = [3, 4, 5]
427
Bram Moolenaar13065c42005-01-08 16:08:21 +0000428Adding and removing items from a list is done with functions. Here are a few
429examples: >
430 :call insert(list, 'a') " prepend item 'a'
431 :call insert(list, 'a', 3) " insert item 'a' before list[3]
432 :call add(list, "new") " append String item
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000433 :call add(list, [1, 2]) " append a List as one new item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000434 :call extend(list, [1, 2]) " extend the list with two more items
435 :let i = remove(list, 3) " remove item 3
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000436 :unlet list[3] " idem
Bram Moolenaar13065c42005-01-08 16:08:21 +0000437 :let l = remove(list, 3, -1) " remove items 3 to last item
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000438 :unlet list[3 : ] " idem
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000439 :call filter(list, 'v:val !~ "x"') " remove items with an 'x'
Bram Moolenaar13065c42005-01-08 16:08:21 +0000440
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000441Changing the order of items in a list: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000442 :call sort(list) " sort a list alphabetically
443 :call reverse(list) " reverse the order of items
Bram Moolenaar327aa022014-03-25 18:24:23 +0100444 :call uniq(sort(list)) " sort and remove duplicates
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000445
Bram Moolenaar13065c42005-01-08 16:08:21 +0000446
447For loop ~
448
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100449The |:for| loop executes commands for each item in a List, String or Blob.
450A variable is set to each item in sequence. Example with a List: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000451 :for item in mylist
452 : call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000453 :endfor
454
455This works like: >
456 :let index = 0
457 :while index < len(mylist)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000458 : let item = mylist[index]
459 : :call Doit(item)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000460 : let index = index + 1
461 :endwhile
462
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000463If all you want to do is modify each item in the list then the |map()|
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000464function will be a simpler method than a for loop.
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000465
Bram Moolenaar58b85342016-08-14 19:54:54 +0200466Just like the |:let| command, |:for| also accepts a list of variables. This
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100467requires the argument to be a List of Lists. >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000468 :for [lnum, col] in [[1, 3], [2, 8], [3, 0]]
469 : call Doit(lnum, col)
470 :endfor
471
472This works like a |:let| command is done for each list item. Again, the types
473must remain the same to avoid an error.
474
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000475It is also possible to put remaining items in a List variable: >
Bram Moolenaar13065c42005-01-08 16:08:21 +0000476 :for [i, j; rest] in listlist
477 : call Doit(i, j)
478 : if !empty(rest)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000479 : echo "remainder: " .. string(rest)
Bram Moolenaar13065c42005-01-08 16:08:21 +0000480 : endif
481 :endfor
482
Bram Moolenaar74e54fc2021-03-26 20:41:29 +0100483For a Blob one byte at a time is used.
484
485For a String one character, including any composing characters, is used as a
486String. Example: >
487 for c in text
488 echo 'This character is ' .. c
489 endfor
490
Bram Moolenaar13065c42005-01-08 16:08:21 +0000491
492List functions ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000493 *E714*
Bram Moolenaar13065c42005-01-08 16:08:21 +0000494Functions that are useful with a List: >
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000495 :let r = call(funcname, list) " call a function with an argument list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000496 :if empty(list) " check if list is empty
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000497 :let l = len(list) " number of items in list
498 :let big = max(list) " maximum value in list
499 :let small = min(list) " minimum value in list
Bram Moolenaar9588a0f2005-01-08 21:45:39 +0000500 :let xs = count(list, 'x') " count nr of times 'x' appears in list
501 :let i = index(list, 'x') " index of first 'x' in list
Bram Moolenaar13065c42005-01-08 16:08:21 +0000502 :let lines = getline(1, 10) " get ten text lines from buffer
503 :call append('$', lines) " append text lines in buffer
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +0000504 :let list = split("a b c") " create list from items in a string
505 :let string = join(list, ', ') " create string from list items
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000506 :let s = string(list) " String representation of list
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000507 :call map(list, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaar13065c42005-01-08 16:08:21 +0000508
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000509Don't forget that a combination of features can make things simple. For
510example, to add up all the numbers in a list: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000511 :exe 'let sum = ' .. join(nrlist, '+')
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000512
Bram Moolenaar13065c42005-01-08 16:08:21 +0000513
Bram Moolenaard8b02732005-01-14 21:48:43 +00005141.4 Dictionaries ~
Bram Moolenaard8968242019-01-15 22:51:57 +0100515 *dict* *Dict* *Dictionaries* *Dictionary*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000516A Dictionary is an associative array: Each entry has a key and a value. The
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000517entry can be located with the key. The entries are stored without a specific
518ordering.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000519
520
521Dictionary creation ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000522 *E720* *E721* *E722* *E723*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100523A Dictionary is created with a comma-separated list of entries in curly
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000524braces. Each entry has a key and a value, separated by a colon. Each key can
525only appear once. Examples: >
Bram Moolenaard8b02732005-01-14 21:48:43 +0000526 :let mydict = {1: 'one', 2: 'two', 3: 'three'}
527 :let emptydict = {}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000528< *E713* *E716* *E717*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000529A key is always a String. You can use a Number, it will be converted to a
530String automatically. Thus the String '4' and the number 4 will find the same
Bram Moolenaar58b85342016-08-14 19:54:54 +0200531entry. Note that the String '04' and the Number 04 are different, since the
Bram Moolenaard899e512022-05-07 21:54:03 +0100532Number will be converted to the String '4', leading zeros are dropped. The
533empty string can also be used as a key.
Bram Moolenaar5da36052021-12-27 15:39:57 +0000534
Bram Moolenaard799daa2022-06-20 11:17:32 +0100535In |Vim9| script a literal key can be used if it consists only of alphanumeric
Bram Moolenaar5da36052021-12-27 15:39:57 +0000536characters, underscore and dash, see |vim9-literal-dict|.
Bram Moolenaar56c860c2019-08-17 20:09:31 +0200537 *literal-Dict* *#{}*
Bram Moolenaar5da36052021-12-27 15:39:57 +0000538To avoid having to put quotes around every key the #{} form can be used in
539legacy script. This does require the key to consist only of ASCII letters,
540digits, '-' and '_'. Example: >
Bram Moolenaar10455d42019-11-21 15:36:18 +0100541 :let mydict = #{zero: 0, one_key: 1, two-key: 2, 333: 3}
Bram Moolenaar4c6d9042019-07-16 22:04:02 +0200542Note that 333 here is the string "333". Empty keys are not possible with #{}.
Bram Moolenaard899e512022-05-07 21:54:03 +0100543In |Vim9| script the #{} form cannot be used because it can be confused with
544the start of a comment.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000545
Bram Moolenaar58b85342016-08-14 19:54:54 +0200546A value can be any expression. Using a Dictionary for a value creates a
Bram Moolenaard8b02732005-01-14 21:48:43 +0000547nested Dictionary: >
548 :let nestdict = {1: {11: 'a', 12: 'b'}, 2: {21: 'c'}}
549
550An extra comma after the last entry is ignored.
551
552
553Accessing entries ~
554
555The normal way to access an entry is by putting the key in square brackets: >
556 :let val = mydict["one"]
557 :let mydict["four"] = 4
558
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000559You can add new entries to an existing Dictionary this way, unlike Lists.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000560
561For keys that consist entirely of letters, digits and underscore the following
562form can be used |expr-entry|: >
563 :let val = mydict.one
564 :let mydict.four = 4
565
566Since an entry can be any type, also a List and a Dictionary, the indexing and
567key lookup can be repeated: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000568 :echo dict.key[idx].key
Bram Moolenaard8b02732005-01-14 21:48:43 +0000569
570
571Dictionary to List conversion ~
572
Bram Moolenaar58b85342016-08-14 19:54:54 +0200573You may want to loop over the entries in a dictionary. For this you need to
Bram Moolenaard8b02732005-01-14 21:48:43 +0000574turn the Dictionary into a List and pass it to |:for|.
575
576Most often you want to loop over the keys, using the |keys()| function: >
577 :for key in keys(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000578 : echo key .. ': ' .. mydict[key]
Bram Moolenaard8b02732005-01-14 21:48:43 +0000579 :endfor
580
581The List of keys is unsorted. You may want to sort them first: >
582 :for key in sort(keys(mydict))
583
584To loop over the values use the |values()| function: >
585 :for v in values(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000586 : echo "value: " .. v
Bram Moolenaard8b02732005-01-14 21:48:43 +0000587 :endfor
588
589If you want both the key and the value use the |items()| function. It returns
Bram Moolenaard47d5222018-12-09 20:43:55 +0100590a List in which each item is a List with two items, the key and the value: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000591 :for [key, value] in items(mydict)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000592 : echo key .. ': ' .. value
Bram Moolenaard8b02732005-01-14 21:48:43 +0000593 :endfor
594
595
596Dictionary identity ~
Bram Moolenaar7c626922005-02-07 22:01:03 +0000597 *dict-identity*
Bram Moolenaard8b02732005-01-14 21:48:43 +0000598Just like Lists you need to use |copy()| and |deepcopy()| to make a copy of a
599Dictionary. Otherwise, assignment results in referring to the same
600Dictionary: >
601 :let onedict = {'a': 1, 'b': 2}
602 :let adict = onedict
603 :let adict['a'] = 11
604 :echo onedict['a']
605 11
606
Bram Moolenaarf3bd51a2005-06-14 22:11:18 +0000607Two Dictionaries compare equal if all the key-value pairs compare equal. For
608more info see |list-identity|.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000609
610
611Dictionary modification ~
612 *dict-modification*
613To change an already existing entry of a Dictionary, or to add a new entry,
614use |:let| this way: >
615 :let dict[4] = "four"
616 :let dict['one'] = item
617
Bram Moolenaar9cd15162005-01-16 22:02:49 +0000618Removing an entry from a Dictionary is done with |remove()| or |:unlet|.
619Three ways to remove the entry with key "aaa" from dict: >
620 :let i = remove(dict, 'aaa')
621 :unlet dict.aaa
622 :unlet dict['aaa']
Bram Moolenaard8b02732005-01-14 21:48:43 +0000623
624Merging a Dictionary with another is done with |extend()|: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000625 :call extend(adict, bdict)
626This extends adict with all entries from bdict. Duplicate keys cause entries
627in adict to be overwritten. An optional third argument can change this.
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000628Note that the order of entries in a Dictionary is irrelevant, thus don't
629expect ":echo adict" to show the items from bdict after the older entries in
630adict.
Bram Moolenaard8b02732005-01-14 21:48:43 +0000631
632Weeding out entries from a Dictionary can be done with |filter()|: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000633 :call filter(dict, 'v:val =~ "x"')
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000634This removes all entries from "dict" with a value not matching 'x'.
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200635This can also be used to remove all entries: >
636 call filter(dict, 0)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000637
Bram Moolenaar86b48162022-12-06 18:20:10 +0000638In some situations it is not allowed to remove or add entries to a Dictionary.
639Especially when iterating over all the entries. You will get *E1313* or
640another error in that case.
641
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000642
643Dictionary function ~
Bram Moolenaar26402cb2013-02-20 21:26:00 +0100644 *Dictionary-function* *self* *E725* *E862*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000645When a function is defined with the "dict" attribute it can be used in a
Bram Moolenaar58b85342016-08-14 19:54:54 +0200646special way with a dictionary. Example: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000647 :function Mylen() dict
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000648 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000649 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000650 :let mydict = {'data': [0, 1, 2, 3], 'len': function("Mylen")}
651 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000652
653This is like a method in object oriented programming. The entry in the
654Dictionary is a |Funcref|. The local variable "self" refers to the dictionary
Bram Moolenaar86b48162022-12-06 18:20:10 +0000655the function was invoked from. When using |Vim9| script you can use classes
656and objects, see `:class`.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000657
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000658It is also possible to add a function without the "dict" attribute as a
659Funcref to a Dictionary, but the "self" variable is not available then.
660
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000661 *numbered-function* *anonymous-function*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000662To avoid the extra name for the function it can be defined and directly
663assigned to a Dictionary in this way: >
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000664 :let mydict = {'data': [0, 1, 2, 3]}
Bram Moolenaar5a5f4592015-04-13 12:43:06 +0200665 :function mydict.len()
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000666 : return len(self.data)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000667 :endfunction
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000668 :echo mydict.len()
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000669
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000670The function will then get a number and the value of dict.len is a |Funcref|
Bram Moolenaar58b85342016-08-14 19:54:54 +0200671that references this function. The function can only be used through a
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000672|Funcref|. It will automatically be deleted when there is no |Funcref|
673remaining that refers to it.
674
675It is not necessary to use the "dict" attribute for a numbered function.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000676
Bram Moolenaar1affd722010-08-04 17:49:30 +0200677If you get an error for a numbered function, you can find out what it is with
678a trick. Assuming the function is 42, the command is: >
Bram Moolenaar34cc7d82021-09-21 20:09:51 +0200679 :function g:42
Bram Moolenaar1affd722010-08-04 17:49:30 +0200680
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000681
682Functions for Dictionaries ~
Bram Moolenaar3a3a7232005-01-17 22:16:15 +0000683 *E715*
684Functions that can be used with a Dictionary: >
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000685 :if has_key(dict, 'foo') " TRUE if dict has entry with key "foo"
686 :if empty(dict) " TRUE if dict is empty
687 :let l = len(dict) " number of items in dict
688 :let big = max(dict) " maximum value in dict
689 :let small = min(dict) " minimum value in dict
690 :let xs = count(dict, 'x') " count nr of times 'x' appears in dict
691 :let s = string(dict) " String representation of dict
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000692 :call map(dict, '">> " .. v:val') " prepend ">> " to each item
Bram Moolenaard8b02732005-01-14 21:48:43 +0000693
694
Bram Moolenaard8968242019-01-15 22:51:57 +01006951.5 Blobs ~
696 *blob* *Blob* *Blobs* *E978*
Bram Moolenaaraff74912019-03-30 18:11:49 +0100697A Blob is a binary object. It can be used to read an image from a file and
698send it over a channel, for example.
699
700A Blob mostly behaves like a |List| of numbers, where each number has the
701value of an 8-bit byte, from 0 to 255.
Bram Moolenaard8968242019-01-15 22:51:57 +0100702
703
704Blob creation ~
705
706A Blob can be created with a |blob-literal|: >
707 :let b = 0zFF00ED015DAF
Bram Moolenaar0d17f0d2019-01-22 22:20:38 +0100708Dots can be inserted between bytes (pair of hex characters) for readability,
709they don't change the value: >
710 :let b = 0zFF00.ED01.5DAF
Bram Moolenaard8968242019-01-15 22:51:57 +0100711
712A blob can be read from a file with |readfile()| passing the {type} argument
713set to "B", for example: >
714 :let b = readfile('image.png', 'B')
715
716A blob can be read from a channel with the |ch_readblob()| function.
717
718
719Blob index ~
720 *blob-index* *E979*
721A byte in the Blob can be accessed by putting the index in square brackets
722after the Blob. Indexes are zero-based, thus the first byte has index zero. >
723 :let myblob = 0z00112233
724 :let byte = myblob[0] " get the first byte: 0x00
725 :let byte = myblob[2] " get the third byte: 0x22
726
727A negative index is counted from the end. Index -1 refers to the last byte in
728the Blob, -2 to the last but one byte, etc. >
729 :let last = myblob[-1] " get the last byte: 0x33
730
731To avoid an error for an invalid index use the |get()| function. When an item
732is not available it returns -1 or the default value you specify: >
733 :echo get(myblob, idx)
734 :echo get(myblob, idx, 999)
735
736
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100737Blob iteration ~
738
739The |:for| loop executes commands for each byte of a Blob. The loop variable is
740set to each byte in the Blob. Example: >
741 :for byte in 0z112233
742 : call Doit(byte)
743 :endfor
744This calls Doit() with 0x11, 0x22 and 0x33.
745
746
Bram Moolenaard8968242019-01-15 22:51:57 +0100747Blob concatenation ~
748
749Two blobs can be concatenated with the "+" operator: >
750 :let longblob = myblob + 0z4455
751 :let myblob += 0z6677
752
753To change a blob in-place see |blob-modification| below.
754
755
756Part of a blob ~
757
758A part of the Blob can be obtained by specifying the first and last index,
759separated by a colon in square brackets: >
760 :let myblob = 0z00112233
Bram Moolenaard09091d2019-01-17 16:07:22 +0100761 :let shortblob = myblob[1:2] " get 0z1122
Bram Moolenaard8968242019-01-15 22:51:57 +0100762 :let shortblob = myblob[2:-1] " get 0z2233
763
764Omitting the first index is similar to zero. Omitting the last index is
765similar to -1. >
766 :let endblob = myblob[2:] " from item 2 to the end: 0z2233
767 :let shortblob = myblob[2:2] " Blob with one byte: 0z22
768 :let otherblob = myblob[:] " make a copy of the Blob
769
Bram Moolenaard09091d2019-01-17 16:07:22 +0100770If the first index is beyond the last byte of the Blob or the second index is
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100771before the first index, the result is an empty Blob. There is no error
Bram Moolenaard8968242019-01-15 22:51:57 +0100772message.
773
774If the second index is equal to or greater than the length of the list the
775length minus one is used: >
776 :echo myblob[2:8] " result: 0z2233
777
778
779Blob modification ~
Bram Moolenaara2baa732022-02-04 16:09:54 +0000780 *blob-modification* *E1182* *E1184*
Bram Moolenaard8968242019-01-15 22:51:57 +0100781To change a specific byte of a blob use |:let| this way: >
782 :let blob[4] = 0x44
783
784When the index is just one beyond the end of the Blob, it is appended. Any
785higher index is an error.
786
787To change a sequence of bytes the [:] notation can be used: >
788 let blob[1:3] = 0z445566
Bram Moolenaard09091d2019-01-17 16:07:22 +0100789The length of the replaced bytes must be exactly the same as the value
Bram Moolenaard8968242019-01-15 22:51:57 +0100790provided. *E972*
791
792To change part of a blob you can specify the first and last byte to be
Bram Moolenaard09091d2019-01-17 16:07:22 +0100793modified. The value must have the same number of bytes in the range: >
794 :let blob[3:5] = 0z334455
Bram Moolenaard8968242019-01-15 22:51:57 +0100795
796You can also use the functions |add()|, |remove()| and |insert()|.
797
798
799Blob identity ~
800
801Blobs can be compared for equality: >
802 if blob == 0z001122
803And for equal identity: >
804 if blob is otherblob
805< *blob-identity* *E977*
806When variable "aa" is a Blob and you assign it to another variable "bb", both
807variables refer to the same Blob. Then the "is" operator returns true.
808
809When making a copy using [:] or |copy()| the values are the same, but the
810identity is different: >
811 :let blob = 0z112233
812 :let blob2 = blob
813 :echo blob == blob2
814< 1 >
815 :echo blob is blob2
816< 1 >
817 :let blob3 = blob[:]
818 :echo blob == blob3
819< 1 >
820 :echo blob is blob3
821< 0
822
Bram Moolenaard09091d2019-01-17 16:07:22 +0100823Making a copy of a Blob is done with the |copy()| function. Using [:] also
Bram Moolenaard8968242019-01-15 22:51:57 +0100824works, as explained above.
825
826
8271.6 More about variables ~
Bram Moolenaar13065c42005-01-08 16:08:21 +0000828 *more-variables*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829If you need to know the type of a variable or expression, use the |type()|
830function.
831
832When the '!' flag is included in the 'viminfo' option, global variables that
833start with an uppercase letter, and don't contain a lowercase letter, are
834stored in the viminfo file |viminfo-file|.
835
836When the 'sessionoptions' option contains "global", global variables that
837start with an uppercase letter and contain at least one lowercase letter are
838stored in the session file |session-file|.
839
840variable name can be stored where ~
841my_var_6 not
842My_Var_6 session file
843MY_VAR_6 viminfo file
844
845
Bram Moolenaar5da36052021-12-27 15:39:57 +0000846In legacy script it is possible to form a variable name with curly braces, see
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847|curly-braces-names|.
848
849==============================================================================
8502. Expression syntax *expression-syntax*
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000851 *E1143*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852Expression syntax summary, from least to most significant:
853
Bram Moolenaar50ba5262016-09-22 22:33:02 +0200854|expr1| expr2
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200855 expr2 ? expr1 : expr1 if-then-else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200857|expr2| expr3
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200858 expr3 || expr3 ... logical OR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200860|expr3| expr4
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200861 expr4 && expr4 ... logical AND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200863|expr4| expr5
864 expr5 == expr5 equal
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 expr5 != expr5 not equal
866 expr5 > expr5 greater than
867 expr5 >= expr5 greater than or equal
868 expr5 < expr5 smaller than
869 expr5 <= expr5 smaller than or equal
870 expr5 =~ expr5 regexp matches
871 expr5 !~ expr5 regexp doesn't match
872
873 expr5 ==? expr5 equal, ignoring case
874 expr5 ==# expr5 equal, match case
875 etc. As above, append ? for ignoring case, # for
876 matching case
877
Bram Moolenaar5e66b422019-01-24 21:58:10 +0100878 expr5 is expr5 same |List|, |Dictionary| or |Blob| instance
879 expr5 isnot expr5 different |List|, |Dictionary| or |Blob|
880 instance
Bram Moolenaarde8866b2005-01-06 23:24:37 +0000881
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100882|expr5| expr6 << expr6 bitwise left shift
883 expr6 >> expr6 bitwise right shift
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200885|expr6| expr7
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100886 expr7 + expr7 ... number addition, list or blob concatenation
887 expr7 - expr7 ... number subtraction
888 expr7 . expr7 ... string concatenation
889 expr7 .. expr7 ... string concatenation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200891|expr7| expr8
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100892 expr8 * expr8 ... number multiplication
893 expr8 / expr8 ... number division
894 expr8 % expr8 ... number modulo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
Bram Moolenaar89bcfda2016-08-30 23:26:57 +0200896|expr8| expr9
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100897 <type>expr9 type check and conversion (|Vim9| only)
Bram Moolenaar2fda12f2005-01-15 22:14:15 +0000898
Bram Moolenaar5da36052021-12-27 15:39:57 +0000899|expr9| expr10
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100900 ! expr9 logical NOT
901 - expr9 unary minus
902 + expr9 unary plus
Bram Moolenaar5da36052021-12-27 15:39:57 +0000903
Yegappan Lakshmanana061f342022-05-22 19:13:49 +0100904|expr10| expr11
905 expr10[expr1] byte of a String or item of a |List|
906 expr10[expr1 : expr1] substring of a String or sublist of a |List|
907 expr10.name entry in a |Dictionary|
908 expr10(expr1, ...) function call with |Funcref| variable
909 expr10->name(expr1, ...) |method| call
910
911|expr11| number number constant
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000912 "string" string constant, backslash is special
Bram Moolenaard8b02732005-01-14 21:48:43 +0000913 'string' string constant, ' is doubled
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000914 [expr1, ...] |List|
915 {expr1: expr1, ...} |Dictionary|
Bram Moolenaar5da36052021-12-27 15:39:57 +0000916 #{key: expr1, ...} legacy |Dictionary|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 &option option value
918 (expr1) nested expression
919 variable internal variable
920 va{ria}ble internal variable with curly braces
921 $VAR environment variable
922 @r contents of register 'r'
923 function(expr1, ...) function call
924 func{ti}on(expr1, ...) function call with curly braces
Bram Moolenaar5da36052021-12-27 15:39:57 +0000925 {args -> expr1} legacy lambda expression
926 (args) => expr1 Vim9 lambda expression
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927
928
Bram Moolenaar0f248b02019-04-04 15:36:05 +0200929"..." indicates that the operations in this level can be concatenated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930Example: >
931 &nu || &list && &shell == "csh"
932
933All expressions within one level are parsed from left to right.
934
Bram Moolenaarf10911e2022-01-29 22:20:48 +0000935Expression nesting is limited to 1000 levels deep (300 when build with MSVC)
936to avoid running out of stack and crashing. *E1169*
937
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000939expr1 *expr1* *ternary* *falsy-operator* *??* *E109*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940-----
941
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000942The ternary operator: expr2 ? expr1 : expr1
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200943The falsy operator: expr2 ?? expr1
944
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000945Ternary operator ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946
Bram Moolenaar5da36052021-12-27 15:39:57 +0000947In legacy script the expression before the '?' is evaluated to a number. If
948it evaluates to |TRUE|, the result is the value of the expression between the
949'?' and ':', otherwise the result is the value of the expression after the
950':'.
951
952In |Vim9| script the first expression must evaluate to a boolean, see
953|vim9-boolean|.
954
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955Example: >
956 :echo lnum == 1 ? "top" : lnum
957
958Since the first expression is an "expr2", it cannot contain another ?:. The
959other two expressions can, thus allow for recursive use of ?:.
960Example: >
961 :echo lnum == 1 ? "top" : lnum == 1000 ? "last" : lnum
962
963To keep this readable, using |line-continuation| is suggested: >
964 :echo lnum == 1
965 :\ ? "top"
966 :\ : lnum == 1000
967 :\ ? "last"
968 :\ : lnum
969
Bram Moolenaaref2f6562007-05-06 13:32:59 +0000970You should always put a space before the ':', otherwise it can be mistaken for
971use in a variable such as "a:1".
972
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200973Falsy operator ~
974
975This is also known as the "null coalescing operator", but that's too
976complicated, thus we just call it the falsy operator.
977
978The expression before the '??' is evaluated. If it evaluates to
979|truthy|, this is used as the result. Otherwise the expression after the '??'
980is evaluated and used as the result. This is most useful to have a default
981value for an expression that may result in zero or empty: >
982 echo theList ?? 'list is empty'
983 echo GetName() ?? 'unknown'
984
985These are similar, but not equal: >
986 expr2 ?? expr1
987 expr2 ? expr2 : expr1
Bram Moolenaar5da36052021-12-27 15:39:57 +0000988In the second line "expr2" is evaluated twice. And in |Vim9| script the type
989of expr2 before "?" must be a boolean.
Bram Moolenaar92f26c22020-10-03 20:17:30 +0200990
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991
992expr2 and expr3 *expr2* *expr3*
993---------------
994
Bram Moolenaar04186092016-08-29 21:55:35 +0200995expr3 || expr3 .. logical OR *expr-barbar*
996expr4 && expr4 .. logical AND *expr-&&*
997
Bram Moolenaar5da36052021-12-27 15:39:57 +0000998The "||" and "&&" operators take one argument on each side.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999
Bram Moolenaar5da36052021-12-27 15:39:57 +00001000In legacy script the arguments are (converted to) Numbers.
1001
1002In |Vim9| script the values must be boolean, see |vim9-boolean|. Use "!!" to
1003convert any type to a boolean.
1004
1005The result is:
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001006 input output ~
1007n1 n2 n1 || n2 n1 && n2 ~
1008|FALSE| |FALSE| |FALSE| |FALSE|
1009|FALSE| |TRUE| |TRUE| |FALSE|
1010|TRUE| |FALSE| |TRUE| |FALSE|
1011|TRUE| |TRUE| |TRUE| |TRUE|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012
1013The operators can be concatenated, for example: >
1014
1015 &nu || &list && &shell == "csh"
1016
1017Note that "&&" takes precedence over "||", so this has the meaning of: >
1018
1019 &nu || (&list && &shell == "csh")
1020
1021Once the result is known, the expression "short-circuits", that is, further
1022arguments are not evaluated. This is like what happens in C. For example: >
1023
1024 let a = 1
1025 echo a || b
1026
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001027This is valid even if there is no variable called "b" because "a" is |TRUE|,
1028so the result must be |TRUE|. Similarly below: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 echo exists("b") && b == "yes"
1031
1032This is valid whether "b" has been defined or not. The second clause will
1033only be evaluated if "b" has been defined.
1034
1035
Bram Moolenaara2baa732022-02-04 16:09:54 +00001036expr4 *expr4* *E1153*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037-----
1038
1039expr5 {cmp} expr5
1040
Bram Moolenaar5da36052021-12-27 15:39:57 +00001041Compare two expr5 expressions. In legacy script the result is a 0 if it
1042evaluates to false, or 1 if it evaluates to true. In |Vim9| script the result
1043is |true| or |false|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044
Bram Moolenaar446cb832008-06-24 21:56:24 +00001045 *expr-==* *expr-!=* *expr->* *expr->=*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 *expr-<* *expr-<=* *expr-=~* *expr-!~*
1047 *expr-==#* *expr-!=#* *expr->#* *expr->=#*
1048 *expr-<#* *expr-<=#* *expr-=~#* *expr-!~#*
1049 *expr-==?* *expr-!=?* *expr->?* *expr->=?*
1050 *expr-<?* *expr-<=?* *expr-=~?* *expr-!~?*
Bram Moolenaar251e1912011-06-19 05:09:16 +02001051 *expr-is* *expr-isnot* *expr-is#* *expr-isnot#*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001052 *expr-is?* *expr-isnot?* *E1072*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 use 'ignorecase' match case ignore case ~
1054equal == ==# ==?
1055not equal != !=# !=?
1056greater than > ># >?
1057greater than or equal >= >=# >=?
1058smaller than < <# <?
1059smaller than or equal <= <=# <=?
1060regexp matches =~ =~# =~?
1061regexp doesn't match !~ !~# !~?
Bram Moolenaar251e1912011-06-19 05:09:16 +02001062same instance is is# is?
1063different instance isnot isnot# isnot?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064
1065Examples:
1066"abc" ==# "Abc" evaluates to 0
1067"abc" ==? "Abc" evaluates to 1
1068"abc" == "Abc" evaluates to 1 if 'ignorecase' is set, 0 otherwise
Bram Moolenaar5da36052021-12-27 15:39:57 +00001069NOTE: In |Vim9| script 'ignorecase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070
Bram Moolenaar13065c42005-01-08 16:08:21 +00001071 *E691* *E692*
Bram Moolenaar01164a62017-11-02 22:58:42 +01001072A |List| can only be compared with a |List| and only "equal", "not equal",
1073"is" and "isnot" can be used. This compares the values of the list,
1074recursively. Ignoring case means case is ignored when comparing item values.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001075
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001076 *E735* *E736*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001077A |Dictionary| can only be compared with a |Dictionary| and only "equal", "not
Bram Moolenaar01164a62017-11-02 22:58:42 +01001078equal", "is" and "isnot" can be used. This compares the key/values of the
1079|Dictionary| recursively. Ignoring case means case is ignored when comparing
1080item values.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001081
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +02001082 *E694*
Bram Moolenaare18dbe82016-07-02 21:42:23 +02001083A |Funcref| can only be compared with a |Funcref| and only "equal", "not
1084equal", "is" and "isnot" can be used. Case is never ignored. Whether
1085arguments or a Dictionary are bound (with a partial) matters. The
1086Dictionaries must also be equal (or the same, in case of "is") and the
1087arguments must be equal (or the same).
1088
1089To compare Funcrefs to see if they refer to the same function, ignoring bound
1090Dictionary and arguments, use |get()| to get the function name: >
1091 if get(Part1, 'name') == get(Part2, 'name')
1092 " Part1 and Part2 refer to the same function
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001093< *E1037*
Bram Moolenaar5e66b422019-01-24 21:58:10 +01001094Using "is" or "isnot" with a |List|, |Dictionary| or |Blob| checks whether
1095the expressions are referring to the same |List|, |Dictionary| or |Blob|
1096instance. A copy of a |List| is different from the original |List|. When
1097using "is" without a |List|, |Dictionary| or |Blob|, it is equivalent to
1098using "equal", using "isnot" equivalent to using "not equal". Except that
1099a different type means the values are different: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001100 echo 4 == '4'
1101 1
1102 echo 4 is '4'
1103 0
1104 echo 0 is []
1105 0
1106"is#"/"isnot#" and "is?"/"isnot?" can be used to match and ignore case.
Bram Moolenaare1f3fd12022-08-15 18:51:32 +01001107In |Vim9| script this doesn't work, two strings are never identical.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001108
Bram Moolenaar5da36052021-12-27 15:39:57 +00001109In legacy script, when comparing a String with a Number, the String is
1110converted to a Number, and the comparison is done on Numbers. This means
1111that: >
Bram Moolenaar86edef62016-03-13 18:07:30 +01001112 echo 0 == 'x'
1113 1
1114because 'x' converted to a Number is zero. However: >
1115 echo [0] == ['x']
1116 0
1117Inside a List or Dictionary this conversion is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118
Bram Moolenaar5da36052021-12-27 15:39:57 +00001119In |Vim9| script the types must match.
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121When comparing two Strings, this is done with strcmp() or stricmp(). This
1122results in the mathematical difference (comparing byte values), not
1123necessarily the alphabetical difference in the local language.
1124
Bram Moolenaar446cb832008-06-24 21:56:24 +00001125When using the operators with a trailing '#', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001126'ignorecase' is off, the comparing is done with strcmp(): case matters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128When using the operators with a trailing '?', or the short version and
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001129'ignorecase' is set, the comparing is done with stricmp(): case is ignored.
1130
1131'smartcase' is not used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132
1133The "=~" and "!~" operators match the lefthand argument with the righthand
1134argument, which is used as a pattern. See |pattern| for what a pattern is.
1135This matching is always done like 'magic' was set and 'cpoptions' is empty, no
1136matter what the actual value of 'magic' or 'cpoptions' is. This makes scripts
1137portable. To avoid backslashes in the regexp pattern to be doubled, use a
1138single-quote string, see |literal-string|.
1139Since a string is considered to be a single line, a multi-line pattern
1140(containing \n, backslash-n) will not match. However, a literal NL character
1141can be matched like an ordinary character. Examples:
1142 "foo\nbar" =~ "\n" evaluates to 1
1143 "foo\nbar" =~ "\\n" evaluates to 0
1144
1145
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001146expr5 *expr5* *bitwise-shift*
1147-----
1148expr6 << expr6 bitwise left shift *expr-<<*
1149expr6 >> expr6 bitwise right shift *expr->>*
1150 *E1282* *E1283*
1151The "<<" and ">>" operators can be used to perform bitwise left or right shift
1152of the left operand by the number of bits specified by the right operand. The
Bram Moolenaar338bf582022-05-22 20:16:32 +01001153operands are used as positive numbers. When shifting right with ">>" the
Bram Moolenaard592deb2022-06-17 15:42:40 +01001154topmost bit (sometimes called the sign bit) is cleared. If the right operand
Bram Moolenaar338bf582022-05-22 20:16:32 +01001155(shift amount) is more than the maximum number of bits in a number
1156(|v:numbersize|) the result is zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001158
1159expr6 and expr7 *expr6* *expr7* *E1036* *E1051*
1160---------------
1161expr7 + expr7 Number addition, |List| or |Blob| concatenation *expr-+*
1162expr7 - expr7 Number subtraction *expr--*
1163expr7 . expr7 String concatenation *expr-.*
1164expr7 .. expr7 String concatenation *expr-..*
1165
1166For |Lists| only "+" is possible and then both expr7 must be a list. The
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001167result is a new list with the two lists Concatenated.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001168
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001169For String concatenation ".." is preferred, since "." is ambiguous, it is also
1170used for |Dict| member access and floating point numbers.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001171In |Vim9| script and when |vimscript-version| is 2 or higher, using "." is not
1172allowed.
1173
1174In |Vim9| script the arguments of ".." are converted to String for simple
1175types: Number, Float, Special and Bool. For other types |string()| should be
1176used.
Bram Moolenaar0f248b02019-04-04 15:36:05 +02001177
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001178expr8 * expr8 Number multiplication *expr-star*
1179expr8 / expr8 Number division *expr-/*
1180expr8 % expr8 Number modulo *expr-%*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181
Bram Moolenaar5da36052021-12-27 15:39:57 +00001182In legacy script, for all operators except "." and "..", Strings are converted
1183to Numbers.
1184
Bram Moolenaard6e256c2011-12-14 15:32:50 +01001185For bitwise operators see |and()|, |or()| and |xor()|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186
Bram Moolenaar5da36052021-12-27 15:39:57 +00001187Note the difference between "+" and ".." in legacy script:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 "123" + "456" = 579
Bram Moolenaar5da36052021-12-27 15:39:57 +00001189 "123" .. "456" = "123456"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190
Bram Moolenaar5da36052021-12-27 15:39:57 +00001191Since '..' has the same precedence as '+' and '-', you need to read: >
1192 1 .. 90 + 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001193As: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001194 (1 .. 90) + 90.0
1195That works in legacy script, since the String "190" is automatically converted
1196to the Number 190, which can be added to the Float 90.0. However: >
1197 1 .. 90 * 90.0
Bram Moolenaar446cb832008-06-24 21:56:24 +00001198Should be read as: >
Bram Moolenaar5da36052021-12-27 15:39:57 +00001199 1 .. (90 * 90.0)
1200Since '..' has lower precedence than '*'. This does NOT work, since this
Bram Moolenaar446cb832008-06-24 21:56:24 +00001201attempts to concatenate a Float and a String.
1202
1203When dividing a Number by zero the result depends on the value:
1204 0 / 0 = -0x80000000 (like NaN for Float)
1205 >0 / 0 = 0x7fffffff (like positive infinity)
1206 <0 / 0 = -0x7fffffff (like negative infinity)
1207 (before Vim 7.2 it was always 0x7fffffff)
Bram Moolenaara2baa732022-02-04 16:09:54 +00001208In |Vim9| script dividing a number by zero is an error. *E1154*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001209
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001210When 64-bit Number support is enabled:
1211 0 / 0 = -0x8000000000000000 (like NaN for Float)
1212 >0 / 0 = 0x7fffffffffffffff (like positive infinity)
1213 <0 / 0 = -0x7fffffffffffffff (like negative infinity)
1214
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215When the righthand side of '%' is zero, the result is 0.
1216
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001217None of these work for |Funcref|s.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001218
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001219".", ".." and "%" do not work for Float. *E804* *E1035*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001220
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001222expr8 *expr8*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223-----
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001224<type>expr9
Bram Moolenaar5da36052021-12-27 15:39:57 +00001225
1226This is only available in |Vim9| script, see |type-casting|.
1227
1228
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001229expr9 *expr9*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001230-----
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001231! expr9 logical NOT *expr-!*
1232- expr9 unary minus *expr-unary--*
1233+ expr9 unary plus *expr-unary-+*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234
Bram Moolenaare381d3d2016-07-07 14:50:41 +02001235For '!' |TRUE| becomes |FALSE|, |FALSE| becomes |TRUE| (one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236For '-' the sign of the number is changed.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001237For '+' the number is unchanged. Note: "++" has no effect.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238
Bram Moolenaar5da36052021-12-27 15:39:57 +00001239In legacy script a String will be converted to a Number first. Note that if
1240the string does not start with a digit you likely don't get what you expect.
1241
1242In |Vim9| script an error is given when "-" or "+" is used and the type is not
1243a number.
1244
1245In |Vim9| script "!" can be used for any type and the result is always a
1246boolean. Use "!!" to convert any type to a boolean, according to whether the
1247value is |falsy|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248
Bram Moolenaar58b85342016-08-14 19:54:54 +02001249These three can be repeated and mixed. Examples:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 !-1 == 0
1251 !!8 == 1
1252 --9 == 9
1253
1254
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001255expr10 *expr10*
1256------
1257This expression is either |expr11| or a sequence of the alternatives below,
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001258in any order. E.g., these are all possible:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001259 expr10[expr1].name
1260 expr10.name[expr1]
1261 expr10(expr1, ...)[expr1].name
1262 expr10->(expr1, ...)[expr1]
Bram Moolenaarac92e252019-08-03 21:58:38 +02001263Evaluation is always from left to right.
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001264
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001265expr10[expr1] item of String or |List| *expr-[]* *E111*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001266 *E909* *subscript* *E1062*
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001267In legacy Vim script:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001268If expr10 is a Number or String this results in a String that contains the
1269expr1'th single byte from expr10. expr10 is used as a String (a number is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001270automatically converted to a String), expr1 as a Number. This doesn't
Bram Moolenaar207f0092020-08-30 17:20:20 +02001271recognize multibyte encodings, see `byteidx()` for an alternative, or use
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001272`split()` to turn the string into a list of characters. Example, to get the
1273byte under the cursor: >
Bram Moolenaar61660ea2006-04-07 21:40:07 +00001274 :let c = getline(".")[col(".") - 1]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275
Bram Moolenaara2baa732022-02-04 16:09:54 +00001276In |Vim9| script: *E1147* *E1148*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001277If expr10 is a String this results in a String that contains the expr1'th
1278single character (including any composing characters) from expr10. To use byte
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001279indexes use |strpart()|.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001280
1281Index zero gives the first byte or character. Careful: text column numbers
1282start with one!
1283
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284If the length of the String is less than the index, the result is an empty
Bram Moolenaar85084ef2016-01-17 22:26:33 +01001285String. A negative index always results in an empty string (reason: backward
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001286compatibility). Use [-1:] to get the last byte or character.
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001287In Vim9 script a negative index is used like with a list: count from the end.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001288
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001289If expr10 is a |List| then it results the item at index expr1. See |list-index|
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001290for possible index values. If the index is out of range this results in an
Bram Moolenaar58b85342016-08-14 19:54:54 +02001291error. Example: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001292 :let item = mylist[-1] " get last item
1293
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001294Generally, if a |List| index is equal to or higher than the length of the
1295|List|, or more negative than the length of the |List|, this results in an
1296error.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001297
Bram Moolenaard8b02732005-01-14 21:48:43 +00001298
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01001299expr10[expr1a : expr1b] substring or |sublist| *expr-[:]* *substring*
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001300
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001301If expr10 is a String this results in the substring with the bytes or
1302characters from expr1a to and including expr1b. expr10 is used as a String,
Bram Moolenaar207f0092020-08-30 17:20:20 +02001303expr1a and expr1b are used as a Number.
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001304
1305In legacy Vim script the indexes are byte indexes. This doesn't recognize
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001306multibyte encodings, see |byteidx()| for computing the indexes. If expr10 is
Bram Moolenaare3c37d82020-08-15 18:39:05 +02001307a Number it is first converted to a String.
1308
Bram Moolenaar02b4d9b2021-03-14 19:46:45 +01001309In Vim9 script the indexes are character indexes and include composing
1310characters. To use byte indexes use |strpart()|. To use character indexes
1311without including composing characters use |strcharpart()|.
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001312
Bram Moolenaar6601b622021-01-13 21:47:15 +01001313The item at index expr1b is included, it is inclusive. For an exclusive index
1314use the |slice()| function.
1315
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001316If expr1a is omitted zero is used. If expr1b is omitted the length of the
1317string minus one is used.
1318
1319A negative number can be used to measure from the end of the string. -1 is
1320the last character, -2 the last but one, etc.
1321
1322If an index goes out of range for the string characters are omitted. If
1323expr1b is smaller than expr1a the result is an empty string.
1324
1325Examples: >
1326 :let c = name[-1:] " last byte of a string
Bram Moolenaar207f0092020-08-30 17:20:20 +02001327 :let c = name[0:-1] " the whole string
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001328 :let c = name[-2:-2] " last but one byte of a string
1329 :let s = line(".")[4:] " from the fifth byte to the end
1330 :let s = s[:-3] " remove last two bytes
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001331<
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001332 *slice*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001333If expr10 is a |List| this results in a new |List| with the items indicated by
Bram Moolenaar58b85342016-08-14 19:54:54 +02001334the indexes expr1a and expr1b. This works like with a String, as explained
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001335just above. Also see |sublist| below. Examples: >
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00001336 :let l = mylist[:3] " first four items
1337 :let l = mylist[4:4] " List with one item
1338 :let l = mylist[:] " shallow copy of a List
1339
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001340If expr10 is a |Blob| this results in a new |Blob| with the bytes in the
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001341indexes expr1a and expr1b, inclusive. Examples: >
1342 :let b = 0zDEADBEEF
1343 :let bs = b[1:2] " 0zADBE
Bram Moolenaard09091d2019-01-17 16:07:22 +01001344 :let bs = b[:] " copy of 0zDEADBEEF
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001345
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001346Using expr10[expr1] or expr10[expr1a : expr1b] on a |Funcref| results in an
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001347error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348
Bram Moolenaarda440d22016-01-16 21:27:23 +01001349Watch out for confusion between a namespace and a variable followed by a colon
1350for a sublist: >
1351 mylist[n:] " uses variable n
1352 mylist[s:] " uses namespace s:, error!
1353
Bram Moolenaard8b02732005-01-14 21:48:43 +00001354
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001355expr10.name entry in a |Dictionary| *expr-entry*
Bram Moolenaara2baa732022-02-04 16:09:54 +00001356 *E1203* *E1229*
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001357If expr10 is a |Dictionary| and it is followed by a dot, then the following
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001358name will be used as a key in the |Dictionary|. This is just like:
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001359expr10[name].
Bram Moolenaard8b02732005-01-14 21:48:43 +00001360
1361The name must consist of alphanumeric characters, just like a variable name,
1362but it may start with a number. Curly braces cannot be used.
1363
1364There must not be white space before or after the dot.
1365
1366Examples: >
1367 :let dict = {"one": 1, 2: "two"}
Bram Moolenaar68e65602019-05-26 21:33:31 +02001368 :echo dict.one " shows "1"
1369 :echo dict.2 " shows "two"
1370 :echo dict .2 " error because of space before the dot
Bram Moolenaard8b02732005-01-14 21:48:43 +00001371
1372Note that the dot is also used for String concatenation. To avoid confusion
1373always put spaces around the dot for String concatenation.
1374
1375
Bram Moolenaar938ae282023-02-20 20:44:55 +00001376expr10(expr1, ...) |Funcref| function call *E1085*
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001377
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001378When expr10 is a |Funcref| type variable, invoke the function it refers to.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001379
1380
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001381expr10->name([args]) method call *method* *->*
1382expr10->{lambda}([args])
Bram Moolenaara2baa732022-02-04 16:09:54 +00001383 *E260* *E276* *E1265*
Bram Moolenaar25e42232019-08-04 15:04:10 +02001384For methods that are also available as global functions this is the same as: >
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001385 name(expr10 [, args])
1386There can also be methods specifically for the type of "expr10".
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00001387
Bram Moolenaar51841322019-08-08 21:10:01 +02001388This allows for chaining, passing the value that one method returns to the
1389next method: >
Bram Moolenaar25e42232019-08-04 15:04:10 +02001390 mylist->filter(filterexpr)->map(mapexpr)->sort()->join()
1391<
Bram Moolenaar22a0c0c2019-08-09 23:25:08 +02001392Example of using a lambda: >
Bram Moolenaar02b31112019-08-31 22:16:38 +02001393 GetPercentage()->{x -> x * 100}()->printf('%d%%')
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001394<
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001395When using -> the |expr9| operators will be applied first, thus: >
Bram Moolenaar93cf85f2019-08-17 21:36:28 +02001396 -1.234->string()
1397Is equivalent to: >
1398 (-1.234)->string()
1399And NOT: >
1400 -(1.234->string())
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001401
1402What comes after "->" can be a name, a simple expression (not containing any
Bram Moolenaar944697a2022-02-20 19:48:20 +00001403parenthesis), or any expression in parentheses: >
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001404 base->name(args)
1405 base->some.name(args)
1406 base->alist[idx](args)
1407 base->(getFuncRef())(args)
1408Note that in the last call the base is passed to the function resulting from
Bram Moolenaar2ecbe532022-07-29 21:36:21 +01001409"(getFuncRef())", inserted before "args". *E1275*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001410
Bram Moolenaar51841322019-08-08 21:10:01 +02001411 *E274*
1412"->name(" must not contain white space. There can be white space before the
1413"->" and after the "(", thus you can split the lines like this: >
1414 mylist
1415 \ ->filter(filterexpr)
1416 \ ->map(mapexpr)
1417 \ ->sort()
1418 \ ->join()
Bram Moolenaar56c860c2019-08-17 20:09:31 +02001419
1420When using the lambda form there must be no white space between the } and the
1421(.
1422
Bram Moolenaar25e42232019-08-04 15:04:10 +02001423
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01001424 *expr11*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425number
1426------
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01001427number number constant *expr-number*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001429 *0x* *hex-number* *0o* *octal-number* *binary-number*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001430Decimal, Hexadecimal (starting with 0x or 0X), Binary (starting with 0b or 0B)
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02001431and Octal (starting with 0, 0o or 0O).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432
Bram Moolenaar338bf582022-05-22 20:16:32 +01001433Assuming 64 bit numbers are used (see |v:numbersize|) an unsigned number is
1434truncated to 0x7fffffffffffffff or 9223372036854775807. You can use -1 to get
14350xffffffffffffffff.
1436
Bram Moolenaar446cb832008-06-24 21:56:24 +00001437 *floating-point-format*
1438Floating point numbers can be written in two forms:
1439
1440 [-+]{N}.{M}
Bram Moolenaar8a94d872015-01-25 13:02:57 +01001441 [-+]{N}.{M}[eE][-+]{exp}
Bram Moolenaar446cb832008-06-24 21:56:24 +00001442
1443{N} and {M} are numbers. Both {N} and {M} must be present and can only
Bram Moolenaar6aa57292021-08-14 21:25:52 +02001444contain digits, except that in |Vim9| script in {N} single quotes between
1445digits are ignored.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001446[-+] means there is an optional plus or minus sign.
1447{exp} is the exponent, power of 10.
Bram Moolenaar58b85342016-08-14 19:54:54 +02001448Only a decimal point is accepted, not a comma. No matter what the current
Bram Moolenaar446cb832008-06-24 21:56:24 +00001449locale is.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001450
1451Examples:
1452 123.456
1453 +0.0001
1454 55.0
1455 -0.123
1456 1.234e03
1457 1.0E-6
1458 -3.1416e+88
1459
1460These are INVALID:
1461 3. empty {M}
1462 1e40 missing .{M}
1463
1464Rationale:
1465Before floating point was introduced, the text "123.456" was interpreted as
1466the two numbers "123" and "456", both converted to a string and concatenated,
1467resulting in the string "123456". Since this was considered pointless, and we
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001468could not find it intentionally being used in Vim scripts, this backwards
Bram Moolenaar446cb832008-06-24 21:56:24 +00001469incompatibility was accepted in favor of being able to use the normal notation
1470for floating point numbers.
1471
Bram Moolenaard47d5222018-12-09 20:43:55 +01001472 *float-pi* *float-e*
1473A few useful values to copy&paste: >
1474 :let pi = 3.14159265359
1475 :let e = 2.71828182846
1476Or, if you don't want to write them in as floating-point literals, you can
1477also use functions, like the following: >
1478 :let pi = acos(-1.0)
1479 :let e = exp(1.0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001480<
Bram Moolenaar446cb832008-06-24 21:56:24 +00001481 *floating-point-precision*
1482The precision and range of floating points numbers depends on what "double"
1483means in the library Vim was compiled with. There is no way to change this at
1484runtime.
1485
1486The default for displaying a |Float| is to use 6 decimal places, like using
1487printf("%g", f). You can select something else when using the |printf()|
1488function. Example: >
1489 :echo printf('%.15e', atan(1))
1490< 7.853981633974483e-01
1491
1492
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493
Bram Moolenaar979243b2015-06-26 19:35:49 +02001494string *string* *String* *expr-string* *E114*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495------
1496"string" string constant *expr-quote*
1497
1498Note that double quotes are used.
1499
1500A string constant accepts these special characters:
1501\... three-digit octal number (e.g., "\316")
1502\.. two-digit octal number (must be followed by non-digit)
1503\. one-digit octal number (must be followed by non-digit)
1504\x.. byte specified with two hex numbers (e.g., "\x1f")
1505\x. byte specified with one hex number (must be followed by non-hex char)
1506\X.. same as \x..
1507\X. same as \x.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001508\u.... character specified with up to 4 hex numbers, stored according to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 current value of 'encoding' (e.g., "\u02a4")
Bram Moolenaar541f92d2015-06-19 13:27:23 +02001510\U.... same as \u but allows up to 8 hex numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511\b backspace <BS>
1512\e escape <Esc>
Bram Moolenaar6e649222021-10-04 21:32:54 +01001513\f formfeed 0x0C
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514\n newline <NL>
1515\r return <CR>
1516\t tab <Tab>
1517\\ backslash
1518\" double quote
Bram Moolenaar00a927d2010-05-14 23:24:24 +02001519\<xxx> Special key named "xxx". e.g. "\<C-W>" for CTRL-W. This is for use
Bram Moolenaar58b85342016-08-14 19:54:54 +02001520 in mappings, the 0x80 byte is escaped.
1521 To use the double quote character it must be escaped: "<M-\">".
Bram Moolenaar6e649222021-10-04 21:32:54 +01001522 Don't use <Char-xxxx> to get a UTF-8 character, use \uxxxx as
Bram Moolenaar58b85342016-08-14 19:54:54 +02001523 mentioned above.
Bram Moolenaarfccd93f2020-05-31 22:06:51 +02001524\<*xxx> Like \<xxx> but prepends a modifier instead of including it in the
1525 character. E.g. "\<C-w>" is one character 0x17 while "\<*C-w>" is four
Bram Moolenaarebe9d342020-05-30 21:52:54 +02001526 bytes: 3 for the CTRL modifier and then character "W".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001528Note that "\xff" is stored as the byte 255, which may be invalid in some
1529encodings. Use "\u00ff" to store character 255 according to the current value
1530of 'encoding'.
1531
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532Note that "\000" and "\x00" force the end of the string.
1533
1534
Bram Moolenaard8968242019-01-15 22:51:57 +01001535blob-literal *blob-literal* *E973*
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001536------------
1537
1538Hexadecimal starting with 0z or 0Z, with an arbitrary number of bytes.
1539The sequence must be an even number of hex characters. Example: >
1540 :let b = 0zFF00ED015DAF
1541
1542
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543literal-string *literal-string* *E115*
1544---------------
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001545'string' string constant *expr-'*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546
1547Note that single quotes are used.
1548
Bram Moolenaar58b85342016-08-14 19:54:54 +02001549This string is taken as it is. No backslashes are removed or have a special
Bram Moolenaard8b02732005-01-14 21:48:43 +00001550meaning. The only exception is that two quotes stand for one quote.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001551
1552Single quoted strings are useful for patterns, so that backslashes do not need
Bram Moolenaar58b85342016-08-14 19:54:54 +02001553to be doubled. These two commands are equivalent: >
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001554 if a =~ "\\s*"
1555 if a =~ '\s*'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556
1557
Bram Moolenaarb59ae592022-11-23 23:46:31 +00001558interpolated-string *$quote* *interpolated-string*
LemonBoy2eaef102022-05-06 13:14:50 +01001559--------------------
1560$"string" interpolated string constant *expr-$quote*
1561$'string' interpolated literal string constant *expr-$'*
1562
1563Interpolated strings are an extension of the |string| and |literal-string|,
1564allowing the inclusion of Vim script expressions (see |expr1|). Any
1565expression returning a value can be enclosed between curly braces. The value
1566is converted to a string. All the text and results of the expressions
1567are concatenated to make a new string.
Bram Moolenaar2ecbe532022-07-29 21:36:21 +01001568 *E1278* *E1279*
LemonBoy2eaef102022-05-06 13:14:50 +01001569To include an opening brace '{' or closing brace '}' in the string content
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001570double it. For double quoted strings using a backslash also works. A single
1571closing brace '}' will result in an error.
LemonBoy2eaef102022-05-06 13:14:50 +01001572
1573Examples: >
1574 let your_name = input("What's your name? ")
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001575< What's your name? Peter ~
1576>
1577 echo
LemonBoy2eaef102022-05-06 13:14:50 +01001578 echo $"Hello, {your_name}!"
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01001579< Hello, Peter! ~
1580>
1581 echo $"The square root of {{9}} is {sqrt(9)}"
1582< The square root of {9} is 3.0 ~
1583
Christian Brabandt67672ef2023-04-24 21:09:54 +01001584 *string-offset-encoding*
1585A string consists of multiple characters. How the characters are stored
1586depends on 'encoding'. Most common is UTF-8, which uses one byte for ASCII
1587characters, two bytes for other latin characters and more bytes for other
1588characters.
1589
1590A string offset can count characters or bytes. Other programs may use
1591UTF-16 encoding (16-bit words) and an offset of UTF-16 words. Some functions
1592use byte offsets, usually for UTF-8 encoding. Other functions use character
1593offsets, in which case the encoding doesn't matter.
1594
1595The different offsets for the string "a©😊" are below:
1596
1597 UTF-8 offsets:
1598 [0]: 61, [1]: C2, [2]: A9, [3]: F0, [4]: 9F, [5]: 98, [6]: 8A
1599 UTF-16 offsets:
1600 [0]: 0061, [1]: 00A9, [2]: D83D, [3]: DE0A
1601 UTF-32 (character) offsets:
1602 [0]: 00000061, [1]: 000000A9, [2]: 0001F60A
1603
1604You can use the "g8" and "ga" commands on a character to see the
1605decimal/hex/octal values.
1606
1607The functions |byteidx()|, |utf16idx()| and |charidx()| can be used to convert
1608between these indices. The functions |strlen()|, |strutf16len()| and
1609|strcharlen()| return the number of bytes, UTF-16 code units and characters in
1610a string respectively.
LemonBoy2eaef102022-05-06 13:14:50 +01001611
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612option *expr-option* *E112* *E113*
1613------
1614&option option value, local value if possible
1615&g:option global option value
1616&l:option local option value
1617
1618Examples: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001619 echo "tabstop is " .. &tabstop
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 if &insertmode
1621
1622Any option name can be used here. See |options|. When using the local value
1623and there is no buffer-local or window-local value, the global value is used
1624anyway.
1625
1626
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001627register *expr-register* *@r*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628--------
1629@r contents of register 'r'
1630
1631The result is the contents of the named register, as a single string.
1632Newlines are inserted where required. To get the contents of the unnamed
Bram Moolenaar58b85342016-08-14 19:54:54 +02001633register use @" or @@. See |registers| for an explanation of the available
Bram Moolenaare7566042005-06-17 22:00:15 +00001634registers.
1635
1636When using the '=' register you get the expression itself, not what it
1637evaluates to. Use |eval()| to evaluate it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
1639
Bram Moolenaara2baa732022-02-04 16:09:54 +00001640nesting *expr-nesting* *E110*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641-------
1642(expr1) nested expression
1643
1644
1645environment variable *expr-env*
1646--------------------
1647$VAR environment variable
1648
1649The String value of any environment variable. When it is not defined, the
1650result is an empty string.
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001651
1652The functions `getenv()` and `setenv()` can also be used and work for
1653environment variables with non-alphanumeric names.
1654The function `environ()` can be used to get a Dict with all environment
1655variables.
1656
1657
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 *expr-env-expand*
1659Note that there is a difference between using $VAR directly and using
1660expand("$VAR"). Using it directly will only expand environment variables that
1661are known inside the current Vim session. Using expand() will first try using
1662the environment variables known inside the current Vim session. If that
1663fails, a shell will be used to expand the variable. This can be slow, but it
1664does expand all variables that the shell knows about. Example: >
Bram Moolenaar34401cc2014-08-29 15:12:19 +02001665 :echo $shell
1666 :echo expand("$shell")
1667The first one probably doesn't echo anything, the second echoes the $shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668variable (if your shell supports it).
1669
1670
Bram Moolenaarf10911e2022-01-29 22:20:48 +00001671internal variable *expr-variable* *E1015* *E1089*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672-----------------
1673variable internal variable
1674See below |internal-variables|.
1675
1676
Bram Moolenaar05159a02005-02-26 23:04:13 +00001677function call *expr-function* *E116* *E118* *E119* *E120*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678-------------
1679function(expr1, ...) function call
1680See below |functions|.
1681
1682
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001683lambda expression *expr-lambda* *lambda*
1684-----------------
Bram Moolenaar938ae282023-02-20 20:44:55 +00001685{args -> expr1} legacy lambda expression *E451*
Bram Moolenaar5da36052021-12-27 15:39:57 +00001686(args) => expr1 |Vim9| lambda expression
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001687
1688A lambda expression creates a new unnamed function which returns the result of
Bram Moolenaar42ebd062016-07-17 13:35:14 +02001689evaluating |expr1|. Lambda expressions differ from |user-functions| in
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001690the following ways:
1691
16921. The body of the lambda expression is an |expr1| and not a sequence of |Ex|
1693 commands.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +020016942. The prefix "a:" should not be used for arguments. E.g.: >
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001695 :let F = {arg1, arg2 -> arg1 - arg2}
1696 :echo F(5, 2)
1697< 3
1698
1699The arguments are optional. Example: >
1700 :let F = {-> 'error function'}
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001701 :echo F('ignored')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001702< error function
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001703
Bram Moolenaar5da36052021-12-27 15:39:57 +00001704The |Vim9| lambda does not only use a different syntax, it also adds type
1705checking and can be split over multiple lines, see |vim9-lambda|.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001706
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001707 *closure*
1708Lambda expressions can access outer scope variables and arguments. This is
Bram Moolenaar50ba5262016-09-22 22:33:02 +02001709often called a closure. Example where "i" and "a:arg" are used in a lambda
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001710while they already exist in the function scope. They remain valid even after
1711the function returns: >
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001712 :function Foo(arg)
1713 : let i = 3
1714 : return {x -> x + i - a:arg}
1715 :endfunction
1716 :let Bar = Foo(4)
1717 :echo Bar(6)
1718< 5
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001719
Bram Moolenaar388a5d42020-05-26 21:20:45 +02001720Note that the variables must exist in the outer scope before the lambda is
Bram Moolenaar6bb2cdf2018-02-24 19:53:53 +01001721defined for this to work. See also |:func-closure|.
1722
1723Lambda and closure support can be checked with: >
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001724 if has('lambda')
Bram Moolenaar069c1e72016-07-15 21:25:08 +02001725
1726Examples for using a lambda expression with |sort()|, |map()| and |filter()|: >
1727 :echo map([1, 2, 3], {idx, val -> val + 1})
1728< [2, 3, 4] >
1729 :echo sort([3,7,2,1,4], {a, b -> a - b})
1730< [1, 2, 3, 4, 7]
1731
1732The lambda expression is also useful for Channel, Job and timer: >
1733 :let timer = timer_start(500,
1734 \ {-> execute("echo 'Handler called'", "")},
1735 \ {'repeat': 3})
1736< Handler called
1737 Handler called
1738 Handler called
1739
Bram Moolenaar90df4b92021-07-07 20:26:08 +02001740Note that it is possible to cause memory to be used and not freed if the
1741closure is referenced by the context it depends on: >
1742 function Function()
1743 let x = 0
1744 let F = {-> x}
1745 endfunction
1746The closure uses "x" from the function scope, and "F" in that same scope
1747refers to the closure. This cycle results in the memory not being freed.
1748Recommendation: don't do this.
1749
1750Notice how execute() is used to execute an Ex command. That's ugly though.
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001751In Vim9 script you can use a command block, see |inline-function|.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001752
Bram Moolenaar71b6d332022-09-10 13:13:14 +01001753Although you can use the loop variable of a `for` command, it must still exist
1754when the closure is called, otherwise you get an error. *E1302*
1755
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001756Lambda expressions have internal names like '<lambda>42'. If you get an error
1757for a lambda expression, you can find what it is with the following command: >
Bram Moolenaar6f02b002021-01-10 20:22:54 +01001758 :function <lambda>42
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001759See also: |numbered-function|
1760
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761==============================================================================
Bram Moolenaar6f4754b2022-01-23 12:07:04 +000017623. Internal variable *internal-variables* *E461* *E1001*
Bram Moolenaar4a748032010-09-30 21:47:56 +02001763
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764An internal variable name can be made up of letters, digits and '_'. But it
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001765cannot start with a digit. In legacy script it is also possible to use curly
Bram Moolenaar5da36052021-12-27 15:39:57 +00001766braces, see |curly-braces-names|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001768In legacy script an internal variable is created with the ":let" command
Bram Moolenaar5da36052021-12-27 15:39:57 +00001769|:let|. An internal variable is explicitly destroyed with the ":unlet"
1770command |:unlet|.
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00001771Using a name that is not an internal variable or refers to a variable that has
1772been destroyed results in an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
Bram Moolenaar5da36052021-12-27 15:39:57 +00001774In |Vim9| script `:let` is not used and variables work differently, see |:var|.
1775
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001776 *variable-scope*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777There are several name spaces for variables. Which one is to be used is
1778specified by what is prepended:
1779
Bram Moolenaar5da36052021-12-27 15:39:57 +00001780 (nothing) In a function: local to the function;
1781 in a legacy script: global;
1782 in a |Vim9| script: local to the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783|buffer-variable| b: Local to the current buffer.
1784|window-variable| w: Local to the current window.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001785|tabpage-variable| t: Local to the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786|global-variable| g: Global.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001787|local-variable| l: Local to a function (only in a legacy function)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788|script-variable| s: Local to a |:source|'ed Vim script.
Bram Moolenaar5da36052021-12-27 15:39:57 +00001789|function-argument| a: Function argument (only in a legacy function).
Bram Moolenaar75b81562014-04-06 14:09:13 +02001790|vim-variable| v: Global, predefined by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001792The scope name by itself can be used as a |Dictionary|. For example, to
1793delete all script-local variables: >
Bram Moolenaar8f999f12005-01-25 22:12:55 +00001794 :for k in keys(s:)
1795 : unlet s:[k]
1796 :endfor
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001797
Bram Moolenaar5da36052021-12-27 15:39:57 +00001798Note: in Vim9 script variables can also be local to a block of commands, see
1799|vim9-scopes|.
Bram Moolenaar531da592013-05-06 05:58:55 +02001800 *buffer-variable* *b:var* *b:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801A variable name that is preceded with "b:" is local to the current buffer.
1802Thus you can have several "b:foo" variables, one for each buffer.
1803This kind of variable is deleted when the buffer is wiped out or deleted with
1804|:bdelete|.
1805
1806One local buffer variable is predefined:
Bram Moolenaarbf884932013-04-05 22:26:15 +02001807 *b:changedtick* *changetick*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808b:changedtick The total number of changes to the current buffer. It is
1809 incremented for each change. An undo command is also a change
Bram Moolenaarc024b462019-06-08 18:07:21 +02001810 in this case. Resetting 'modified' when writing the buffer is
1811 also counted.
1812 This can be used to perform an action only when the buffer has
1813 changed. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 :if my_changedtick != b:changedtick
Bram Moolenaar446cb832008-06-24 21:56:24 +00001815 : let my_changedtick = b:changedtick
1816 : call My_Update()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 :endif
Bram Moolenaar3df01732017-02-17 22:47:16 +01001818< You cannot change or delete the b:changedtick variable.
Bram Moolenaar71badf92023-04-22 22:40:14 +01001819 If you need more information about the change see
1820 |listener_add()|.
Bram Moolenaar3df01732017-02-17 22:47:16 +01001821
Bram Moolenaar531da592013-05-06 05:58:55 +02001822 *window-variable* *w:var* *w:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823A variable name that is preceded with "w:" is local to the current window. It
1824is deleted when the window is closed.
1825
Bram Moolenaarad3b3662013-05-17 18:14:19 +02001826 *tabpage-variable* *t:var* *t:*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001827A variable name that is preceded with "t:" is local to the current tab page,
1828It is deleted when the tab page is closed. {not available when compiled
Bram Moolenaardb84e452010-08-15 13:50:43 +02001829without the |+windows| feature}
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001830
Bram Moolenaar531da592013-05-06 05:58:55 +02001831 *global-variable* *g:var* *g:*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001832Inside functions and in |Vim9| script global variables are accessed with "g:".
1833Omitting this will access a variable local to a function or script. "g:"
1834can also be used in any other place if you like.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835
Bram Moolenaar531da592013-05-06 05:58:55 +02001836 *local-variable* *l:var* *l:*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837Inside functions local variables are accessed without prepending anything.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001838But you can also prepend "l:" if you like. However, without prepending "l:"
1839you may run into reserved variable names. For example "count". By itself it
1840refers to "v:count". Using "l:count" you can have a local variable with the
1841same name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842
1843 *script-variable* *s:var*
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001844In a legacy Vim script variables starting with "s:" can be used. They cannot
1845be accessed from outside of the scripts, thus are local to the script.
1846In |Vim9| script the "s:" prefix can be omitted, variables are script-local by
1847default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848
1849They can be used in:
1850- commands executed while the script is sourced
1851- functions defined in the script
1852- autocommands defined in the script
1853- functions and autocommands defined in functions and autocommands which were
1854 defined in the script (recursively)
1855- user defined commands defined in the script
1856Thus not in:
1857- other scripts sourced from this one
1858- mappings
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001859- menus
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860- etc.
1861
Bram Moolenaaref2f6562007-05-06 13:32:59 +00001862Script variables can be used to avoid conflicts with global variable names.
1863Take this example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864
1865 let s:counter = 0
1866 function MyCounter()
1867 let s:counter = s:counter + 1
1868 echo s:counter
1869 endfunction
1870 command Tick call MyCounter()
1871
1872You can now invoke "Tick" from any script, and the "s:counter" variable in
1873that script will not be changed, only the "s:counter" in the script where
1874"Tick" was defined is used.
1875
1876Another example that does the same: >
1877
1878 let s:counter = 0
1879 command Tick let s:counter = s:counter + 1 | echo s:counter
1880
1881When calling a function and invoking a user-defined command, the context for
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001882script variables is set to the script where the function or command was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883defined.
1884
1885The script variables are also available when a function is defined inside a
1886function that is defined in a script. Example: >
1887
1888 let s:counter = 0
1889 function StartCounting(incr)
1890 if a:incr
1891 function MyCounter()
1892 let s:counter = s:counter + 1
1893 endfunction
1894 else
1895 function MyCounter()
1896 let s:counter = s:counter - 1
1897 endfunction
1898 endif
1899 endfunction
1900
1901This defines the MyCounter() function either for counting up or counting down
1902when calling StartCounting(). It doesn't matter from where StartCounting() is
1903called, the s:counter variable will be accessible in MyCounter().
1904
1905When the same script is sourced again it will use the same script variables.
1906They will remain valid as long as Vim is running. This can be used to
1907maintain a counter: >
1908
1909 if !exists("s:counter")
1910 let s:counter = 1
1911 echo "script executed for the first time"
1912 else
1913 let s:counter = s:counter + 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001914 echo "script executed " .. s:counter .. " times now"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 endif
1916
1917Note that this means that filetype plugins don't get a different set of script
1918variables for each buffer. Use local buffer variables instead |b:var|.
1919
1920
Bram Moolenaard47d5222018-12-09 20:43:55 +01001921PREDEFINED VIM VARIABLES *vim-variable* *v:var* *v:*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001922 *E963* *E1063*
Bram Moolenaard47d5222018-12-09 20:43:55 +01001923Some variables can be set by the user, but the type cannot be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001925 *v:argv* *argv-variable*
1926v:argv The command line arguments Vim was invoked with. This is a
1927 list of strings. The first item is the Vim command.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00001928 See |v:progpath| for the command with full path.
Bram Moolenaar69bf6342019-10-29 04:16:57 +01001929
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001930 *v:beval_col* *beval_col-variable*
1931v:beval_col The number of the column, over which the mouse pointer is.
1932 This is the byte index in the |v:beval_lnum| line.
1933 Only valid while evaluating the 'balloonexpr' option.
1934
1935 *v:beval_bufnr* *beval_bufnr-variable*
1936v:beval_bufnr The number of the buffer, over which the mouse pointer is. Only
1937 valid while evaluating the 'balloonexpr' option.
1938
1939 *v:beval_lnum* *beval_lnum-variable*
1940v:beval_lnum The number of the line, over which the mouse pointer is. Only
1941 valid while evaluating the 'balloonexpr' option.
1942
1943 *v:beval_text* *beval_text-variable*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001944v:beval_text The text under or after the mouse pointer. Usually a word as
1945 it is useful for debugging a C program. 'iskeyword' applies,
1946 but a dot and "->" before the position is included. When on a
1947 ']' the text before it is used, including the matching '[' and
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001948 word before it. When on a Visual area within one line the
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +02001949 highlighted text is used. Also see |<cexpr>|.
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001950 Only valid while evaluating the 'balloonexpr' option.
1951
1952 *v:beval_winnr* *beval_winnr-variable*
1953v:beval_winnr The number of the window, over which the mouse pointer is. Only
Bram Moolenaar00654022011-02-25 14:42:19 +01001954 valid while evaluating the 'balloonexpr' option. The first
1955 window has number zero (unlike most other places where a
1956 window gets a number).
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001957
Bram Moolenaar511972d2016-06-04 18:09:59 +02001958 *v:beval_winid* *beval_winid-variable*
Bram Moolenaar7571d552016-08-18 22:54:46 +02001959v:beval_winid The |window-ID| of the window, over which the mouse pointer
1960 is. Otherwise like v:beval_winnr.
Bram Moolenaar511972d2016-06-04 18:09:59 +02001961
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001962 *v:char* *char-variable*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001963v:char Argument for evaluating 'formatexpr' and used for the typed
Bram Moolenaar945e2db2010-06-05 17:43:32 +02001964 character when using <expr> in an abbreviation |:map-<expr>|.
Bram Moolenaare6ae6222013-05-21 21:01:10 +02001965 It is also used by the |InsertCharPre| and |InsertEnter| events.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001966
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 *v:charconvert_from* *charconvert_from-variable*
1968v:charconvert_from
1969 The name of the character encoding of a file to be converted.
1970 Only valid while evaluating the 'charconvert' option.
1971
1972 *v:charconvert_to* *charconvert_to-variable*
1973v:charconvert_to
1974 The name of the character encoding of a file after conversion.
1975 Only valid while evaluating the 'charconvert' option.
1976
1977 *v:cmdarg* *cmdarg-variable*
1978v:cmdarg This variable is used for two purposes:
1979 1. The extra arguments given to a file read/write command.
1980 Currently these are "++enc=" and "++ff=". This variable is
1981 set before an autocommand event for a file read/write
1982 command is triggered. There is a leading space to make it
1983 possible to append this variable directly after the
Bram Moolenaar58b85342016-08-14 19:54:54 +02001984 read/write command. Note: The "+cmd" argument isn't
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 included here, because it will be executed anyway.
1986 2. When printing a PostScript file with ":hardcopy" this is
1987 the argument for the ":hardcopy" command. This can be used
1988 in 'printexpr'.
1989
1990 *v:cmdbang* *cmdbang-variable*
1991v:cmdbang Set like v:cmdarg for a file read/write command. When a "!"
1992 was used the value is 1, otherwise it is 0. Note that this
1993 can only be used in autocommands. For user commands |<bang>|
1994 can be used.
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +02001995 *v:collate* *collate-variable*
1996v:collate The current locale setting for collation order of the runtime
1997 environment. This allows Vim scripts to be aware of the
1998 current locale encoding. Technical: it's the value of
1999 LC_COLLATE. When not using a locale the value is "C".
2000 This variable can not be set directly, use the |:language|
2001 command.
2002 See |multi-lang|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003
Bram Moolenaar76db9e02022-11-09 21:21:04 +00002004 *v:colornames*
Drew Vogele30d1022021-10-24 20:35:07 +01002005v:colornames A dictionary that maps color names to hex color strings. These
2006 color names can be used with the |highlight-guifg|,
2007 |highlight-guibg|, and |highlight-guisp| parameters. Updating
2008 an entry in v:colornames has no immediate effect on the syntax
2009 highlighting. The highlight commands (probably in a
2010 colorscheme script) need to be re-evaluated in order to use
2011 the updated color values. For example: >
2012
2013 :let v:colornames['fuscia'] = '#cf3ab4'
2014 :let v:colornames['mauve'] = '#915f6d'
2015 :highlight Normal guifg=fuscia guibg=mauve
2016<
2017 This cannot be used to override the |cterm-colors| but it can
2018 be used to override other colors. For example, the X11 colors
2019 defined in the `colors/lists/default.vim` (previously defined
2020 in |rgb.txt|). When defining new color names in a plugin, the
2021 recommended practice is to set a color entry only when it does
2022 not already exist. For example: >
2023
2024 :call extend(v:colornames, {
2025 \ 'fuscia': '#cf3ab4',
2026 \ 'mauve': '#915f6d,
2027 \ }, 'keep')
2028<
Bram Moolenaar113cb512021-11-07 20:27:04 +00002029 Using |extend()| with the 'keep' option updates each color only
Drew Vogele30d1022021-10-24 20:35:07 +01002030 if it did not exist in |v:colornames|. Doing so allows the
2031 user to choose the precise color value for a common name
2032 by setting it in their |.vimrc|.
2033
2034 It is possible to remove entries from this dictionary but
Drew Vogela0fca172021-11-13 10:50:01 +00002035 doing so is NOT recommended, because it is disruptive to
Drew Vogele30d1022021-10-24 20:35:07 +01002036 other scripts. It is also unlikely to achieve the desired
Bram Moolenaar113cb512021-11-07 20:27:04 +00002037 result because the |:colorscheme| and |:highlight| commands will
Drew Vogele30d1022021-10-24 20:35:07 +01002038 both automatically load all `colors/lists/default.vim` color
2039 scripts.
2040
Bram Moolenaar42a45122015-07-10 17:56:23 +02002041 *v:completed_item* *completed_item-variable*
2042v:completed_item
2043 |Dictionary| containing the |complete-items| for the most
2044 recently completed word after |CompleteDone|. The
2045 |Dictionary| is empty if the completion failed.
Shougo Matsushita61021aa2022-07-27 14:40:00 +01002046 Note: Plugins can modify the value to emulate the builtin
2047 |CompleteDone| event behavior.
Bram Moolenaar42a45122015-07-10 17:56:23 +02002048
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 *v:count* *count-variable*
2050v:count The count given for the last Normal mode command. Can be used
Bram Moolenaar58b85342016-08-14 19:54:54 +02002051 to get the count before a mapping. Read-only. Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002052 :map _x :<C-U>echo "the count is " .. v:count<CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053< Note: The <C-U> is required to remove the line range that you
2054 get when typing ':' after a count.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01002055 When there are two counts, as in "3d2w", they are multiplied,
2056 just like what happens in the command, "d6w" for the example.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002057 Also used for evaluating the 'formatexpr' option.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002058 "count" also works, for backwards compatibility, unless
2059 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060
2061 *v:count1* *count1-variable*
2062v:count1 Just like "v:count", but defaults to one when no count is
2063 used.
2064
2065 *v:ctype* *ctype-variable*
2066v:ctype The current locale setting for characters of the runtime
2067 environment. This allows Vim scripts to be aware of the
2068 current locale encoding. Technical: it's the value of
2069 LC_CTYPE. When not using a locale the value is "C".
2070 This variable can not be set directly, use the |:language|
2071 command.
2072 See |multi-lang|.
2073
2074 *v:dying* *dying-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002075v:dying Normally zero. When a deadly signal is caught it's set to
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 one. When multiple signals are caught the number increases.
2077 Can be used in an autocommand to check if Vim didn't
2078 terminate normally. {only works on Unix}
2079 Example: >
2080 :au VimLeave * if v:dying | echo "\nAAAAaaaarrrggghhhh!!!\n" | endif
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02002081< Note: if another deadly signal is caught when v:dying is one,
2082 VimLeave autocommands will not be executed.
2083
Bram Moolenaarf0068c52020-11-30 17:42:10 +01002084 *v:exiting* *exiting-variable*
2085v:exiting Vim exit code. Normally zero, non-zero when something went
2086 wrong. The value is v:null before invoking the |VimLeavePre|
2087 and |VimLeave| autocmds. See |:q|, |:x| and |:cquit|.
2088 Example: >
2089 :au VimLeave * echo "Exit value is " .. v:exiting
2090<
Bram Moolenaar37f4cbd2019-08-23 20:58:45 +02002091 *v:echospace* *echospace-variable*
2092v:echospace Number of screen cells that can be used for an `:echo` message
2093 in the last screen line before causing the |hit-enter-prompt|.
2094 Depends on 'showcmd', 'ruler' and 'columns'. You need to
2095 check 'cmdheight' for whether there are full-width lines
2096 available above the last line.
2097
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 *v:errmsg* *errmsg-variable*
2099v:errmsg Last given error message. It's allowed to set this variable.
2100 Example: >
2101 :let v:errmsg = ""
2102 :silent! next
2103 :if v:errmsg != ""
2104 : ... handle error
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002105< "errmsg" also works, for backwards compatibility, unless
2106 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
Bram Moolenaar65a54642018-04-28 16:56:53 +02002108 *v:errors* *errors-variable* *assert-return*
Bram Moolenaar683fa182015-11-30 21:38:24 +01002109v:errors Errors found by assert functions, such as |assert_true()|.
Bram Moolenaar43345542015-11-29 17:35:35 +01002110 This is a list of strings.
2111 The assert functions append an item when an assert fails.
Bram Moolenaar65a54642018-04-28 16:56:53 +02002112 The return value indicates this: a one is returned if an item
2113 was added to v:errors, otherwise zero is returned.
Bram Moolenaar43345542015-11-29 17:35:35 +01002114 To remove old results make it empty: >
2115 :let v:errors = []
2116< If v:errors is set to anything but a list it is made an empty
2117 list by the assert function.
2118
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01002119 *v:event* *event-variable*
2120v:event Dictionary containing information about the current
Bram Moolenaar560979e2020-02-04 22:53:05 +01002121 |autocommand|. See the specific event for what it puts in
2122 this dictionary.
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +02002123 The dictionary is emptied when the |autocommand| finishes,
2124 please refer to |dict-identity| for how to get an independent
2125 copy of it. Use |deepcopy()| if you want to keep the
2126 information after the event triggers. Example: >
2127 au TextYankPost * let g:foo = deepcopy(v:event)
2128<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 *v:exception* *exception-variable*
2130v:exception The value of the exception most recently caught and not
2131 finished. See also |v:throwpoint| and |throw-variables|.
2132 Example: >
2133 :try
2134 : throw "oops"
2135 :catch /.*/
Bram Moolenaar54775062019-07-31 21:07:14 +02002136 : echo "caught " .. v:exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 :endtry
2138< Output: "caught oops".
2139
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002140 *v:false* *false-variable*
2141v:false A Number with value zero. Used to put "false" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002142 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002143 When used as a string this evaluates to "v:false". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002144 echo v:false
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002145< v:false ~
2146 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002147 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002148 In |Vim9| script "false" can be used which has a boolean type.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002149
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002150 *v:fcs_reason* *fcs_reason-variable*
2151v:fcs_reason The reason why the |FileChangedShell| event was triggered.
2152 Can be used in an autocommand to decide what to do and/or what
2153 to set v:fcs_choice to. Possible values:
2154 deleted file no longer exists
2155 conflict file contents, mode or timestamp was
2156 changed and buffer is modified
2157 changed file contents has changed
2158 mode mode of file changed
2159 time only file timestamp changed
2160
2161 *v:fcs_choice* *fcs_choice-variable*
2162v:fcs_choice What should happen after a |FileChangedShell| event was
2163 triggered. Can be used in an autocommand to tell Vim what to
2164 do with the affected buffer:
2165 reload Reload the buffer (does not work if
2166 the file was deleted).
Rob Pilling8196e942022-02-11 15:12:10 +00002167 edit Reload the buffer and detect the
2168 values for options such as
2169 'fileformat', 'fileencoding', 'binary'
2170 (does not work if the file was
2171 deleted).
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002172 ask Ask the user what to do, as if there
2173 was no autocommand. Except that when
2174 only the timestamp changed nothing
2175 will happen.
2176 <empty> Nothing, the autocommand should do
2177 everything that needs to be done.
2178 The default is empty. If another (invalid) value is used then
2179 Vim behaves like it is empty, there is no warning message.
2180
Bram Moolenaar4c295022021-05-02 17:19:11 +02002181 *v:fname* *fname-variable*
Bram Moolenaar90df4b92021-07-07 20:26:08 +02002182v:fname When evaluating 'includeexpr': the file name that was
2183 detected. Empty otherwise.
Bram Moolenaar4c295022021-05-02 17:19:11 +02002184
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 *v:fname_in* *fname_in-variable*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002186v:fname_in The name of the input file. Valid while evaluating:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 option used for ~
2188 'charconvert' file to be converted
2189 'diffexpr' original file
2190 'patchexpr' original file
2191 'printexpr' file to be printed
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002192 And set to the swap file name for |SwapExists|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
2194 *v:fname_out* *fname_out-variable*
2195v:fname_out The name of the output file. Only valid while
2196 evaluating:
2197 option used for ~
2198 'charconvert' resulting converted file (*)
2199 'diffexpr' output of diff
2200 'patchexpr' resulting patched file
2201 (*) When doing conversion for a write command (e.g., ":w
Bram Moolenaar58b85342016-08-14 19:54:54 +02002202 file") it will be equal to v:fname_in. When doing conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 for a read command (e.g., ":e file") it will be a temporary
2204 file and different from v:fname_in.
2205
2206 *v:fname_new* *fname_new-variable*
2207v:fname_new The name of the new version of the file. Only valid while
2208 evaluating 'diffexpr'.
2209
2210 *v:fname_diff* *fname_diff-variable*
2211v:fname_diff The name of the diff (patch) file. Only valid while
2212 evaluating 'patchexpr'.
2213
2214 *v:folddashes* *folddashes-variable*
2215v:folddashes Used for 'foldtext': dashes representing foldlevel of a closed
2216 fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002217 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218
2219 *v:foldlevel* *foldlevel-variable*
2220v:foldlevel Used for 'foldtext': foldlevel of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002221 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222
2223 *v:foldend* *foldend-variable*
2224v:foldend Used for 'foldtext': last line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002225 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226
2227 *v:foldstart* *foldstart-variable*
2228v:foldstart Used for 'foldtext': first line of closed fold.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002229 Read-only in the |sandbox|. |fold-foldtext|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230
Bram Moolenaar817a8802013-11-09 01:44:43 +01002231 *v:hlsearch* *hlsearch-variable*
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002232v:hlsearch Variable that indicates whether search highlighting is on.
Bram Moolenaar76440e22014-11-27 19:14:49 +01002233 Setting it makes sense only if 'hlsearch' is enabled which
2234 requires |+extra_search|. Setting this variable to zero acts
Bram Moolenaar705ada12016-01-24 17:56:50 +01002235 like the |:nohlsearch| command, setting it to one acts like >
Bram Moolenaar817a8802013-11-09 01:44:43 +01002236 let &hlsearch = &hlsearch
Bram Moolenaar86ae7202015-07-10 19:31:35 +02002237< Note that the value is restored when returning from a
2238 function. |function-search-undo|.
2239
Bram Moolenaar843ee412004-06-30 16:16:41 +00002240 *v:insertmode* *insertmode-variable*
2241v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand
2242 events. Values:
2243 i Insert mode
2244 r Replace mode
2245 v Virtual Replace mode
2246
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002247 *v:key* *key-variable*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002248v:key Key of the current item of a |Dictionary|. Only valid while
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002249 evaluating the expression used with |map()| and |filter()|.
2250 Read-only.
2251
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 *v:lang* *lang-variable*
2253v:lang The current locale setting for messages of the runtime
2254 environment. This allows Vim scripts to be aware of the
2255 current language. Technical: it's the value of LC_MESSAGES.
2256 The value is system dependent.
2257 This variable can not be set directly, use the |:language|
2258 command.
2259 It can be different from |v:ctype| when messages are desired
2260 in a different language than what is used for character
2261 encoding. See |multi-lang|.
2262
2263 *v:lc_time* *lc_time-variable*
2264v:lc_time The current locale setting for time messages of the runtime
2265 environment. This allows Vim scripts to be aware of the
2266 current language. Technical: it's the value of LC_TIME.
2267 This variable can not be set directly, use the |:language|
2268 command. See |multi-lang|.
2269
2270 *v:lnum* *lnum-variable*
Bram Moolenaar368373e2010-07-19 20:46:22 +02002271v:lnum Line number for the 'foldexpr' |fold-expr|, 'formatexpr' and
2272 'indentexpr' expressions, tab page number for 'guitablabel'
2273 and 'guitabtooltip'. Only valid while one of these
2274 expressions is being evaluated. Read-only when in the
2275 |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276
naohiro ono56200ee2022-01-01 14:59:44 +00002277 *v:maxcol* *maxcol-variable*
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00002278v:maxcol Maximum line length. Depending on where it is used it can be
Bram Moolenaar944697a2022-02-20 19:48:20 +00002279 screen columns, characters or bytes. The value currently is
2280 2147483647 on all systems.
naohiro ono56200ee2022-01-01 14:59:44 +00002281
Bram Moolenaar219b8702006-11-01 14:32:36 +00002282 *v:mouse_win* *mouse_win-variable*
2283v:mouse_win Window number for a mouse click obtained with |getchar()|.
2284 First window has number 1, like with |winnr()|. The value is
2285 zero when there was no mouse button click.
2286
Bram Moolenaar511972d2016-06-04 18:09:59 +02002287 *v:mouse_winid* *mouse_winid-variable*
2288v:mouse_winid Window ID for a mouse click obtained with |getchar()|.
2289 The value is zero when there was no mouse button click.
2290
Bram Moolenaar219b8702006-11-01 14:32:36 +00002291 *v:mouse_lnum* *mouse_lnum-variable*
2292v:mouse_lnum Line number for a mouse click obtained with |getchar()|.
2293 This is the text line number, not the screen line number. The
2294 value is zero when there was no mouse button click.
2295
2296 *v:mouse_col* *mouse_col-variable*
2297v:mouse_col Column number for a mouse click obtained with |getchar()|.
2298 This is the screen column number, like with |virtcol()|. The
2299 value is zero when there was no mouse button click.
2300
Bram Moolenaard09091d2019-01-17 16:07:22 +01002301 *v:none* *none-variable* *None*
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002302v:none An empty String. Used to put an empty item in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002303 |json_encode()|.
Bram Moolenaar2547aa92020-07-26 17:00:44 +02002304 This can also be used as a function argument to use the
2305 default value, see |none-function_argument|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002306 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002307 When used as a string this evaluates to "v:none". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002308 echo v:none
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002309< v:none ~
2310 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002311 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002312 Note that using `== v:none` and `!= v:none` will often give
2313 an error. Instead, use `is v:none` and `isnot v:none` .
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002314
2315 *v:null* *null-variable*
2316v:null An empty String. Used to put "null" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002317 |json_encode()|.
Bram Moolenaar705ada12016-01-24 17:56:50 +01002318 When used as a number this evaluates to zero.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002319 When used as a string this evaluates to "v:null". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002320 echo v:null
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002321< v:null ~
2322 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002323 value. Read-only.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00002324 In |Vim9| script `null` can be used without "v:".
2325 In some places `v:null` and `null` can be used for a List,
2326 Dict, Job, etc. that is not set. That is slightly different
2327 than an empty List, Dict, etc.
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002328
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002329 *v:numbermax* *numbermax-variable*
2330v:numbermax Maximum value of a number.
2331
Bram Moolenaare0e39172021-01-25 21:14:57 +01002332 *v:numbermin* *numbermin-variable*
Bram Moolenaar2346a632021-06-13 19:02:49 +02002333v:numbermin Minimum value of a number (negative).
Bram Moolenaar57d5a012021-01-21 21:42:31 +01002334
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002335 *v:numbersize* *numbersize-variable*
2336v:numbersize Number of bits in a Number. This is normally 64, but on some
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01002337 systems it may be 32.
Bram Moolenaarf9706e92020-02-22 14:27:04 +01002338
Bram Moolenaard812df62008-11-09 12:46:09 +00002339 *v:oldfiles* *oldfiles-variable*
2340v:oldfiles List of file names that is loaded from the |viminfo| file on
2341 startup. These are the files that Vim remembers marks for.
2342 The length of the List is limited by the ' argument of the
2343 'viminfo' option (default is 100).
Bram Moolenaar8d043172014-01-23 14:24:41 +01002344 When the |viminfo| file is not used the List is empty.
Bram Moolenaard812df62008-11-09 12:46:09 +00002345 Also see |:oldfiles| and |c_#<|.
2346 The List can be modified, but this has no effect on what is
2347 stored in the |viminfo| file later. If you use values other
2348 than String this will cause trouble.
Bram Moolenaardb84e452010-08-15 13:50:43 +02002349 {only when compiled with the |+viminfo| feature}
Bram Moolenaard812df62008-11-09 12:46:09 +00002350
Bram Moolenaar53744302015-07-17 17:38:22 +02002351 *v:option_new*
2352v:option_new New value of the option. Valid while executing an |OptionSet|
2353 autocommand.
2354 *v:option_old*
2355v:option_old Old value of the option. Valid while executing an |OptionSet|
Bram Moolenaard7c96872019-06-15 17:12:48 +02002356 autocommand. Depending on the command used for setting and the
2357 kind of option this is either the local old value or the
2358 global old value.
2359 *v:option_oldlocal*
2360v:option_oldlocal
2361 Old local value of the option. Valid while executing an
2362 |OptionSet| autocommand.
2363 *v:option_oldglobal*
2364v:option_oldglobal
2365 Old global value of the option. Valid while executing an
2366 |OptionSet| autocommand.
Bram Moolenaar53744302015-07-17 17:38:22 +02002367 *v:option_type*
2368v:option_type Scope of the set command. Valid while executing an
2369 |OptionSet| autocommand. Can be either "global" or "local"
Bram Moolenaard7c96872019-06-15 17:12:48 +02002370 *v:option_command*
2371v:option_command
2372 Command used to set the option. Valid while executing an
2373 |OptionSet| autocommand.
2374 value option was set via ~
2375 "setlocal" |:setlocal| or ":let l:xxx"
2376 "setglobal" |:setglobal| or ":let g:xxx"
2377 "set" |:set| or |:let|
2378 "modeline" |modeline|
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002379 *v:operator* *operator-variable*
2380v:operator The last operator given in Normal mode. This is a single
2381 character except for commands starting with <g> or <z>,
2382 in which case it is two characters. Best used alongside
2383 |v:prevcount| and |v:register|. Useful if you want to cancel
2384 Operator-pending mode and then use the operator, e.g.: >
2385 :omap O <Esc>:call MyMotion(v:operator)<CR>
2386< The value remains set until another operator is entered, thus
2387 don't expect it to be empty.
2388 v:operator is not set for |:delete|, |:yank| or other Ex
2389 commands.
2390 Read-only.
2391
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 *v:prevcount* *prevcount-variable*
2393v:prevcount The count given for the last but one Normal mode command.
2394 This is the v:count value of the previous command. Useful if
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00002395 you want to cancel Visual or Operator-pending mode and then
2396 use the count, e.g.: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 :vmap % <Esc>:call MyFilter(v:prevcount)<CR>
2398< Read-only.
2399
Bram Moolenaar05159a02005-02-26 23:04:13 +00002400 *v:profiling* *profiling-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002401v:profiling Normally zero. Set to one after using ":profile start".
Bram Moolenaar05159a02005-02-26 23:04:13 +00002402 See |profiling|.
2403
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 *v:progname* *progname-variable*
2405v:progname Contains the name (with path removed) with which Vim was
Bram Moolenaard38b0552012-04-25 19:07:41 +02002406 invoked. Allows you to do special initialisations for |view|,
2407 |evim| etc., or any other name you might symlink to Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 Read-only.
2409
Bram Moolenaara1706c92014-04-01 19:55:49 +02002410 *v:progpath* *progpath-variable*
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002411v:progpath Contains the command with which Vim was invoked, in a form
2412 that when passed to the shell will run the same Vim executable
2413 as the current one (if $PATH remains unchanged).
2414 Useful if you want to message a Vim server using a
Bram Moolenaara1706c92014-04-01 19:55:49 +02002415 |--remote-expr|.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02002416 To get the full path use: >
2417 echo exepath(v:progpath)
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002418< If the command has a relative path it will be expanded to the
2419 full path, so that it still works after `:cd`. Thus starting
2420 "./vim" results in "/home/user/path/to/vim/src/vim".
2421 On Linux and other systems it will always be the full path.
2422 On Mac it may just be "vim" and using exepath() as mentioned
2423 above should be used to get the full path.
Bram Moolenaar08cab962017-03-04 14:37:18 +01002424 On MS-Windows the executable may be called "vim.exe", but the
2425 ".exe" is not added to v:progpath.
Bram Moolenaara1706c92014-04-01 19:55:49 +02002426 Read-only.
2427
h_eastba77bbb2023-10-03 04:47:13 +09002428 *v:python3_version* *python3-version-variable*
Yee Cheng Chinc13b3d12023-08-20 21:18:38 +02002429v:python3_version
2430 Version of Python 3 that Vim was built against. When
2431 Python is loaded dynamically (|python-dynamic|), this version
2432 should exactly match the Python library up to the minor
2433 version (e.g. 3.10.2 and 3.10.3 are compatible as the minor
2434 version is "10", whereas 3.9.4 and 3.10.3 are not compatible).
2435 When |python-stable-abi| is used, this will be the minimum Python
2436 version that you can use instead. (e.g. if v:python3_version
2437 indicates 3.9, you can use 3.9, 3.10, or anything above).
2438
2439 This number is encoded as a hex number following Python ABI
2440 versioning conventions. Do the following to have a
2441 human-readable full version in hex: >
2442 echo printf("%08X", v:python3_version)
2443< You can obtain only the minor version by doing: >
2444 echo and(v:python3_version>>16,0xff)
2445< Read-only.
2446
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 *v:register* *register-variable*
Bram Moolenaard58e9292011-02-09 17:07:58 +01002448v:register The name of the register in effect for the current normal mode
Bram Moolenaard38b0552012-04-25 19:07:41 +02002449 command (regardless of whether that command actually used a
2450 register). Or for the currently executing normal mode mapping
2451 (use this in custom commands that take a register).
2452 If none is supplied it is the default register '"', unless
2453 'clipboard' contains "unnamed" or "unnamedplus", then it is
2454 '*' or '+'.
Bram Moolenaard58e9292011-02-09 17:07:58 +01002455 Also see |getreg()| and |setreg()|
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002457 *v:scrollstart* *scrollstart-variable*
2458v:scrollstart String describing the script or function that caused the
2459 screen to scroll up. It's only set when it is empty, thus the
2460 first reason is remembered. It is set to "Unknown" for a
2461 typed command.
2462 This can be used to find out why your script causes the
2463 hit-enter prompt.
2464
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 *v:servername* *servername-variable*
Bram Moolenaarc2ce52c2017-08-01 18:35:38 +02002466v:servername The resulting registered |client-server-name| if any.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 Read-only.
2468
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002469
Bram Moolenaar446cb832008-06-24 21:56:24 +00002470v:searchforward *v:searchforward* *searchforward-variable*
2471 Search direction: 1 after a forward search, 0 after a
2472 backward search. It is reset to forward when directly setting
2473 the last search pattern, see |quote/|.
2474 Note that the value is restored when returning from a
2475 function. |function-search-undo|.
2476 Read-write.
2477
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 *v:shell_error* *shell_error-variable*
2479v:shell_error Result of the last shell command. When non-zero, the last
2480 shell command had an error. When zero, there was no problem.
2481 This only works when the shell returns the error code to Vim.
2482 The value -1 is often used when the command could not be
2483 executed. Read-only.
2484 Example: >
2485 :!mv foo bar
2486 :if v:shell_error
2487 : echo 'could not rename "foo" to "bar"!'
2488 :endif
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002489< "shell_error" also works, for backwards compatibility, unless
2490 |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491
Bram Moolenaar113cb512021-11-07 20:27:04 +00002492 *v:sizeofint* *sizeofint-variable*
2493v:sizeofint Number of bytes in an int. Depends on how Vim was compiled.
2494 This is only useful for deciding whether a test will give the
2495 expected result.
2496
2497 *v:sizeoflong* *sizeoflong-variable*
2498v:sizeoflong Number of bytes in a long. Depends on how Vim was compiled.
2499 This is only useful for deciding whether a test will give the
2500 expected result.
2501
2502 *v:sizeofpointer* *sizeofpointer-variable*
2503v:sizeofpointer Number of bytes in a pointer. Depends on how Vim was compiled.
2504 This is only useful for deciding whether a test will give the
2505 expected result.
2506
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 *v:statusmsg* *statusmsg-variable*
2508v:statusmsg Last given status message. It's allowed to set this variable.
2509
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002510 *v:swapname* *swapname-variable*
2511v:swapname Only valid when executing |SwapExists| autocommands: Name of
2512 the swap file found. Read-only.
2513
2514 *v:swapchoice* *swapchoice-variable*
2515v:swapchoice |SwapExists| autocommands can set this to the selected choice
2516 for handling an existing swap file:
2517 'o' Open read-only
2518 'e' Edit anyway
2519 'r' Recover
2520 'd' Delete swapfile
2521 'q' Quit
2522 'a' Abort
Bram Moolenaar58b85342016-08-14 19:54:54 +02002523 The value should be a single-character string. An empty value
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00002524 results in the user being asked, as would happen when there is
2525 no SwapExists autocommand. The default is empty.
2526
Bram Moolenaarb3480382005-12-11 21:33:32 +00002527 *v:swapcommand* *swapcommand-variable*
Bram Moolenaar4770d092006-01-12 23:22:24 +00002528v:swapcommand Normal mode command to be executed after a file has been
Bram Moolenaarb3480382005-12-11 21:33:32 +00002529 opened. Can be used for a |SwapExists| autocommand to have
Bram Moolenaar58b85342016-08-14 19:54:54 +02002530 another Vim open the file and jump to the right place. For
Bram Moolenaarb3480382005-12-11 21:33:32 +00002531 example, when jumping to a tag the value is ":tag tagname\r".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002532 For ":edit +cmd file" the value is ":cmd\r".
Bram Moolenaarb3480382005-12-11 21:33:32 +00002533
Bram Moolenaard823fa92016-08-12 16:29:27 +02002534 *v:t_TYPE* *v:t_bool* *t_bool-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002535v:t_bool Value of |Boolean| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002536 *v:t_channel* *t_channel-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002537v:t_channel Value of |Channel| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002538 *v:t_dict* *t_dict-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002539v:t_dict Value of |Dictionary| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002540 *v:t_float* *t_float-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002541v:t_float Value of |Float| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002542 *v:t_func* *t_func-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002543v:t_func Value of |Funcref| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002544 *v:t_job* *t_job-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002545v:t_job Value of |Job| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002546 *v:t_list* *t_list-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002547v:t_list Value of |List| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002548 *v:t_none* *t_none-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002549v:t_none Value of |None| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002550 *v:t_number* *t_number-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002551v:t_number Value of |Number| type. Read-only. See: |type()|
Bram Moolenaard823fa92016-08-12 16:29:27 +02002552 *v:t_string* *t_string-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002553v:t_string Value of |String| type. Read-only. See: |type()|
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002554 *v:t_blob* *t_blob-variable*
Bram Moolenaard09091d2019-01-17 16:07:22 +01002555v:t_blob Value of |Blob| type. Read-only. See: |type()|
Bram Moolenaarc0c2c262023-01-12 21:08:53 +00002556 *v:t_class* *t_class-variable*
2557v:t_class Value of |class| type. Read-only. See: |type()|
2558 *v:t_object* *t_object-variable*
2559v:t_object Value of |object| type. Read-only. See: |type()|
Bram Moolenaarf562e722016-07-19 17:25:25 +02002560
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 *v:termresponse* *termresponse-variable*
2562v:termresponse The escape sequence returned by the terminal for the |t_RV|
Bram Moolenaar58b85342016-08-14 19:54:54 +02002563 termcap entry. It is set when Vim receives an escape sequence
Bram Moolenaarb4230122019-05-30 18:40:53 +02002564 that starts with ESC [ or CSI, then '>' or '?' and ends in a
2565 'c', with only digits and ';' in between.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 When this option is set, the TermResponse autocommand event is
2567 fired, so that you can react to the response from the
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02002568 terminal. You can use |terminalprops()| to see what Vim
2569 figured out about the terminal.
Bram Moolenaarb4230122019-05-30 18:40:53 +02002570 The response from a new xterm is: "<Esc>[> Pp ; Pv ; Pc c". Pp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 is the terminal type: 0 for vt100 and 1 for vt220. Pv is the
2572 patch level (since this was introduced in patch 95, it's
Bram Moolenaarfa3b7232021-12-24 13:18:38 +00002573 always 95 or higher). Pc is always zero.
2574 If Pv is 141 or higher then Vim will try to request terminal
2575 codes. This only works with xterm |xterm-codes|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 {only when compiled with |+termresponse| feature}
2577
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002578 *v:termblinkresp*
2579v:termblinkresp The escape sequence returned by the terminal for the |t_RC|
2580 termcap entry. This is used to find out whether the terminal
2581 cursor is blinking. This is used by |term_getcursor()|.
2582
2583 *v:termstyleresp*
2584v:termstyleresp The escape sequence returned by the terminal for the |t_RS|
2585 termcap entry. This is used to find out what the shape of the
2586 cursor is. This is used by |term_getcursor()|.
2587
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002588 *v:termrbgresp*
2589v:termrbgresp The escape sequence returned by the terminal for the |t_RB|
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002590 termcap entry. This is used to find out what the terminal
2591 background color is, see 'background'.
2592
Bram Moolenaar65e4c4f2017-10-14 23:24:25 +02002593 *v:termrfgresp*
2594v:termrfgresp The escape sequence returned by the terminal for the |t_RF|
2595 termcap entry. This is used to find out what the terminal
2596 foreground color is.
2597
Bram Moolenaarf3af54e2017-08-30 14:53:06 +02002598 *v:termu7resp*
2599v:termu7resp The escape sequence returned by the terminal for the |t_u7|
2600 termcap entry. This is used to find out what the terminal
2601 does with ambiguous width characters, see 'ambiwidth'.
2602
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002603 *v:testing* *testing-variable*
Bram Moolenaar8e8df252016-05-25 21:23:21 +02002604v:testing Must be set before using `test_garbagecollect_now()`.
Bram Moolenaar036986f2017-03-16 17:41:02 +01002605 Also, when set certain error messages won't be shown for 2
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01002606 seconds. (e.g. "'dictionary' option is empty")
Bram Moolenaarebf7dfa2016-04-14 12:46:51 +02002607
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 *v:this_session* *this_session-variable*
2609v:this_session Full filename of the last loaded or saved session file. See
2610 |:mksession|. It is allowed to set this variable. When no
2611 session file has been saved, this variable is empty.
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002612 "this_session" also works, for backwards compatibility, unless
2613 |scriptversion| is 3 or higher
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614
2615 *v:throwpoint* *throwpoint-variable*
2616v:throwpoint The point where the exception most recently caught and not
Bram Moolenaar58b85342016-08-14 19:54:54 +02002617 finished was thrown. Not set when commands are typed. See
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 also |v:exception| and |throw-variables|.
2619 Example: >
2620 :try
2621 : throw "oops"
2622 :catch /.*/
2623 : echo "Exception from" v:throwpoint
2624 :endtry
2625< Output: "Exception from test.vim, line 2"
2626
Bram Moolenaar520e1e42016-01-23 19:46:28 +01002627 *v:true* *true-variable*
2628v:true A Number with value one. Used to put "true" in JSON. See
Bram Moolenaar6463ca22016-02-13 17:04:46 +01002629 |json_encode()|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002630 When used as a string this evaluates to "v:true". >
Bram Moolenaar705ada12016-01-24 17:56:50 +01002631 echo v:true
Bram Moolenaarc95a3022016-06-12 23:01:46 +02002632< v:true ~
2633 That is so that eval() can parse the string back to the same
Bram Moolenaardf48fb42016-07-22 21:50:18 +02002634 value. Read-only.
Bram Moolenaar5da36052021-12-27 15:39:57 +00002635 In |Vim9| script "true" can be used which has a boolean type.
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002636 *v:val* *val-variable*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002637v:val Value of the current item of a |List| or |Dictionary|. Only
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002638 valid while evaluating the expression used with |map()| and
Bram Moolenaar2fda12f2005-01-15 22:14:15 +00002639 |filter()|. Read-only.
2640
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 *v:version* *version-variable*
2642v:version Version number of Vim: Major version number times 100 plus
Bram Moolenaar9b283522019-06-17 22:19:33 +02002643 minor version number. Version 5.0 is 500. Version 5.1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 is 501. Read-only. "version" also works, for backwards
Bram Moolenaard2e716e2019-04-20 14:39:52 +02002645 compatibility, unless |scriptversion| is 3 or higher.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 Use |has()| to check if a certain patch was included, e.g.: >
Bram Moolenaar6716d9a2014-04-02 12:12:08 +02002647 if has("patch-7.4.123")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648< Note that patch numbers are specific to the version, thus both
2649 version 5.0 and 5.1 may have a patch 123, but these are
2650 completely different.
2651
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002652 *v:versionlong* *versionlong-variable*
Bram Moolenaar9b283522019-06-17 22:19:33 +02002653v:versionlong Like v:version, but also including the patchlevel in the last
2654 four digits. Version 8.1 with patch 123 has value 8010123.
2655 This can be used like this: >
2656 if v:versionlong >= 8010123
Bram Moolenaar37df9a42019-06-14 14:39:51 +02002657< However, if there are gaps in the list of patches included
2658 this will not work well. This can happen if a recent patch
2659 was included into an older version, e.g. for a security fix.
2660 Use the has() function to make sure the patch is actually
2661 included.
2662
Bram Moolenaar14735512016-03-26 21:00:08 +01002663 *v:vim_did_enter* *vim_did_enter-variable*
2664v:vim_did_enter Zero until most of startup is done. It is set to one just
2665 before |VimEnter| autocommands are triggered.
2666
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 *v:warningmsg* *warningmsg-variable*
2668v:warningmsg Last given warning message. It's allowed to set this variable.
2669
Bram Moolenaar727c8762010-10-20 19:17:48 +02002670 *v:windowid* *windowid-variable*
2671v:windowid When any X11 based GUI is running or when running in a
2672 terminal and Vim connects to the X server (|-X|) this will be
Bram Moolenaar264e9fd2010-10-27 12:33:17 +02002673 set to the window ID.
2674 When an MS-Windows GUI is running this will be set to the
2675 window handle.
2676 Otherwise the value is zero.
Bram Moolenaar7571d552016-08-18 22:54:46 +02002677 Note: for windows inside Vim use |winnr()| or |win_getid()|,
2678 see |window-ID|.
Bram Moolenaar727c8762010-10-20 19:17:48 +02002679
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680==============================================================================
26814. Builtin Functions *functions*
2682
2683See |function-list| for a list grouped by what the function is used for.
2684
Bram Moolenaar1cae5a02021-12-27 21:28:34 +00002685The alphabetic list of all builtin functions and details are in a separate
2686help file: |builtin-functions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687
2688==============================================================================
26895. Defining functions *user-functions*
2690
2691New functions can be defined. These can be called just like builtin
Bram Moolenaar0daafaa2022-09-04 17:45:43 +01002692functions. The function takes arguments, executes a sequence of Ex commands
2693and can return a value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694
Bram Moolenaar0daafaa2022-09-04 17:45:43 +01002695You can find most information about defining functions in |userfunc.txt|.
2696For Vim9 functions, which execute much faster, support type checking and more,
2697see |vim9.txt|.
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002698
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699==============================================================================
27006. Curly braces names *curly-braces-names*
2701
Bram Moolenaar84f72352012-03-11 15:57:40 +01002702In most places where you can use a variable, you can use a "curly braces name"
2703variable. This is a regular variable name with one or more expressions
2704wrapped in braces {} like this: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 my_{adjective}_variable
2706
Bram Moolenaar5da36052021-12-27 15:39:57 +00002707This only works in legacy Vim script, not in |Vim9| script.
2708
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709When Vim encounters this, it evaluates the expression inside the braces, puts
2710that in place of the expression, and re-interprets the whole as a variable
2711name. So in the above example, if the variable "adjective" was set to
2712"noisy", then the reference would be to "my_noisy_variable", whereas if
2713"adjective" was set to "quiet", then it would be to "my_quiet_variable".
2714
2715One application for this is to create a set of variables governed by an option
Bram Moolenaar58b85342016-08-14 19:54:54 +02002716value. For example, the statement >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 echo my_{&background}_message
2718
2719would output the contents of "my_dark_message" or "my_light_message" depending
2720on the current value of 'background'.
2721
2722You can use multiple brace pairs: >
2723 echo my_{adverb}_{adjective}_message
2724..or even nest them: >
2725 echo my_{ad{end_of_word}}_message
2726where "end_of_word" is either "verb" or "jective".
2727
2728However, the expression inside the braces must evaluate to a valid single
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002729variable name, e.g. this is invalid: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 :let foo='a + b'
2731 :echo c{foo}d
2732.. since the result of expansion is "ca + bd", which is not a variable name.
2733
2734 *curly-braces-function-names*
2735You can call and define functions by an evaluated name in a similar way.
2736Example: >
2737 :let func_end='whizz'
2738 :call my_func_{func_end}(parameter)
2739
2740This would call the function "my_func_whizz(parameter)".
2741
Bram Moolenaar84f72352012-03-11 15:57:40 +01002742This does NOT work: >
2743 :let i = 3
2744 :let @{i} = '' " error
2745 :echo @{i} " error
2746
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747==============================================================================
27487. Commands *expression-commands*
2749
Bram Moolenaar5da36052021-12-27 15:39:57 +00002750Note: in |Vim9| script `:let` is not used. `:var` is used for variable
2751declarations and assignments do not use a command. |vim9-declaration|
Bram Moolenaar65e0d772020-06-14 17:29:55 +02002752
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753:let {var-name} = {expr1} *:let* *E18*
2754 Set internal variable {var-name} to the result of the
2755 expression {expr1}. The variable will get the type
2756 from the {expr}. If {var-name} didn't exist yet, it
2757 is created.
2758
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002759:let {var-name}[{idx}] = {expr1} *E689* *E1141*
Bram Moolenaar13065c42005-01-08 16:08:21 +00002760 Set a list item to the result of the expression
2761 {expr1}. {var-name} must refer to a list and {idx}
2762 must be a valid index in that list. For nested list
2763 the index can be repeated.
Bram Moolenaar446cb832008-06-24 21:56:24 +00002764 This cannot be used to add an item to a |List|.
Bram Moolenaar58b85342016-08-14 19:54:54 +02002765 This cannot be used to set a byte in a String. You
Bram Moolenaar446cb832008-06-24 21:56:24 +00002766 can do that like this: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002767 :let var = var[0:2] .. 'X' .. var[4:]
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01002768< When {var-name} is a |Blob| then {idx} can be the
2769 length of the blob, in which case one byte is
2770 appended.
2771
Bram Moolenaara2baa732022-02-04 16:09:54 +00002772 *E711* *E719* *E1165* *E1166* *E1183*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002773:let {var-name}[{idx1}:{idx2}] = {expr1} *E708* *E709* *E710*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002774 Set a sequence of items in a |List| to the result of
2775 the expression {expr1}, which must be a list with the
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00002776 correct number of items.
2777 {idx1} can be omitted, zero is used instead.
2778 {idx2} can be omitted, meaning the end of the list.
2779 When the selected range of items is partly past the
2780 end of the list, items will be added.
2781
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00002782 *:let+=* *:let-=* *:letstar=* *:let/=* *:let%=*
2783 *:let.=* *:let..=* *E734* *E985* *E1019*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002784:let {var} += {expr1} Like ":let {var} = {var} + {expr1}".
2785:let {var} -= {expr1} Like ":let {var} = {var} - {expr1}".
Bram Moolenaarff697e62019-02-12 22:28:33 +01002786:let {var} *= {expr1} Like ":let {var} = {var} * {expr1}".
2787:let {var} /= {expr1} Like ":let {var} = {var} / {expr1}".
2788:let {var} %= {expr1} Like ":let {var} = {var} % {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002789:let {var} .= {expr1} Like ":let {var} = {var} . {expr1}".
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02002790:let {var} ..= {expr1} Like ":let {var} = {var} .. {expr1}".
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002791 These fail if {var} was not set yet and when the type
2792 of {var} and {expr1} don't fit the operator.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02002793 `.=` is not supported with Vim script version 2 and
2794 later, see |vimscript-version|.
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002795
2796
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797:let ${env-name} = {expr1} *:let-environment* *:let-$*
2798 Set environment variable {env-name} to the result of
2799 the expression {expr1}. The type is always String.
Bram Moolenaar56c860c2019-08-17 20:09:31 +02002800
2801 On some systems making an environment variable empty
2802 causes it to be deleted. Many systems do not make a
2803 difference between an environment variable that is not
2804 set and an environment variable that is empty.
2805
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002806:let ${env-name} .= {expr1}
2807 Append {expr1} to the environment variable {env-name}.
2808 If the environment variable didn't exist yet this
2809 works like "=".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810
2811:let @{reg-name} = {expr1} *:let-register* *:let-@*
2812 Write the result of the expression {expr1} in register
2813 {reg-name}. {reg-name} must be a single letter, and
2814 must be the name of a writable register (see
2815 |registers|). "@@" can be used for the unnamed
2816 register, "@/" for the search pattern.
2817 If the result of {expr1} ends in a <CR> or <NL>, the
2818 register will be linewise, otherwise it will be set to
2819 characterwise.
2820 This can be used to clear the last search pattern: >
2821 :let @/ = ""
2822< This is different from searching for an empty string,
2823 that would match everywhere.
2824
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002825:let @{reg-name} .= {expr1}
Bram Moolenaar58b85342016-08-14 19:54:54 +02002826 Append {expr1} to register {reg-name}. If the
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002827 register was empty it's like setting it to {expr1}.
2828
Bram Moolenaaref2f6562007-05-06 13:32:59 +00002829:let &{option-name} = {expr1} *:let-option* *:let-&*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 Set option {option-name} to the result of the
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002831 expression {expr1}. A String or Number value is
2832 always converted to the type of the option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 For an option local to a window or buffer the effect
2834 is just like using the |:set| command: both the local
Bram Moolenaara5fac542005-10-12 20:58:49 +00002835 value and the global value are changed.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002836 Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +00002837 :let &path = &path .. ',/usr/local/include'
Bram Moolenaar3df01732017-02-17 22:47:16 +01002838< This also works for terminal codes in the form t_xx.
2839 But only for alphanumerical names. Example: >
2840 :let &t_k1 = "\<Esc>[234;"
2841< When the code does not exist yet it will be created as
2842 a terminal key code, there is no error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002844:let &{option-name} .= {expr1}
2845 For a string option: Append {expr1} to the value.
2846 Does not insert a comma like |:set+=|.
2847
2848:let &{option-name} += {expr1}
2849:let &{option-name} -= {expr1}
2850 For a number or boolean option: Add or subtract
2851 {expr1}.
2852
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853:let &l:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002854:let &l:{option-name} .= {expr1}
2855:let &l:{option-name} += {expr1}
2856:let &l:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 Like above, but only set the local value of an option
2858 (if there is one). Works like |:setlocal|.
2859
2860:let &g:{option-name} = {expr1}
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002861:let &g:{option-name} .= {expr1}
2862:let &g:{option-name} += {expr1}
2863:let &g:{option-name} -= {expr1}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 Like above, but only set the global value of an option
2865 (if there is one). Works like |:setglobal|.
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002866 *E1093*
Bram Moolenaar13065c42005-01-08 16:08:21 +00002867:let [{name1}, {name2}, ...] = {expr1} *:let-unpack* *E687* *E688*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002868 {expr1} must evaluate to a |List|. The first item in
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002869 the list is assigned to {name1}, the second item to
2870 {name2}, etc.
2871 The number of names must match the number of items in
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002872 the |List|.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002873 Each name can be one of the items of the ":let"
2874 command as mentioned above.
2875 Example: >
2876 :let [s, item] = GetItem(s)
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002877< Detail: {expr1} is evaluated first, then the
2878 assignments are done in sequence. This matters if
2879 {name2} depends on {name1}. Example: >
2880 :let x = [0, 1]
2881 :let i = 0
2882 :let [i, x[i]] = [1, 2]
2883 :echo x
2884< The result is [0, 2].
2885
2886:let [{name1}, {name2}, ...] .= {expr1}
2887:let [{name1}, {name2}, ...] += {expr1}
2888:let [{name1}, {name2}, ...] -= {expr1}
2889 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002890 |List| item.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002891
Bram Moolenaard1caa942020-04-10 22:10:56 +02002892:let [{name}, ..., ; {lastname}] = {expr1} *E452*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002893 Like |:let-unpack| above, but the |List| may have more
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002894 items than there are names. A list of the remaining
2895 items is assigned to {lastname}. If there are no
2896 remaining items {lastname} is set to an empty list.
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002897 Example: >
2898 :let [a, b; rest] = ["aval", "bval", 3, 4]
2899<
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00002900:let [{name}, ..., ; {lastname}] .= {expr1}
2901:let [{name}, ..., ; {lastname}] += {expr1}
2902:let [{name}, ..., ; {lastname}] -= {expr1}
2903 Like above, but append/add/subtract the value for each
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002904 |List| item.
Bram Moolenaar4a748032010-09-30 21:47:56 +02002905
Bram Moolenaar24582002019-07-21 14:14:26 +02002906 *:let=<<* *:let-heredoc*
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002907 *E990* *E991* *E172* *E221* *E1145*
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002908:let {var-name} =<< [trim] [eval] {endmarker}
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002909text...
2910text...
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002911{endmarker}
Bram Moolenaare46a4402020-06-30 20:38:27 +02002912 Set internal variable {var-name} to a |List|
2913 containing the lines of text bounded by the string
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002914 {endmarker}.
2915
2916 If "eval" is not specified, then each line of text is
Bram Moolenaard899e512022-05-07 21:54:03 +01002917 used as a |literal-string|, except that single quotes
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01002918 does not need to be doubled.
Bram Moolenaard899e512022-05-07 21:54:03 +01002919 If "eval" is specified, then any Vim expression in the
2920 form {expr} is evaluated and the result replaces the
Bram Moolenaarb59ae592022-11-23 23:46:31 +00002921 expression, like with |interpolated-string|.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002922 Example where $HOME is expanded: >
2923 let lines =<< trim eval END
2924 some text
Bram Moolenaard899e512022-05-07 21:54:03 +01002925 See the file {$HOME}/.vimrc
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002926 more text
2927 END
2928< There can be multiple Vim expressions in a single line
2929 but an expression cannot span multiple lines. If any
2930 expression evaluation fails, then the assignment fails.
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002931
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002932 {endmarker} must not contain white space.
2933 {endmarker} cannot start with a lower case character.
2934 The last line should end only with the {endmarker}
2935 string without any other character. Watch out for
2936 white space after {endmarker}!
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002937
Bram Moolenaare7eb9272019-06-24 00:58:07 +02002938 Without "trim" any white space characters in the lines
2939 of text are preserved. If "trim" is specified before
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002940 {endmarker}, then indentation is stripped so you can
2941 do: >
Bram Moolenaare7eb9272019-06-24 00:58:07 +02002942 let text =<< trim END
2943 if ok
2944 echo 'done'
2945 endif
2946 END
2947< Results in: ["if ok", " echo 'done'", "endif"]
2948 The marker must line up with "let" and the indentation
2949 of the first line is removed from all the text lines.
2950 Specifically: all the leading indentation exactly
2951 matching the leading indentation of the first
2952 non-empty text line is stripped from the input lines.
2953 All leading indentation exactly matching the leading
2954 indentation before `let` is stripped from the line
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002955 containing {endmarker}. Note that the difference
2956 between space and tab matters here.
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002957
2958 If {var-name} didn't exist yet, it is created.
2959 Cannot be followed by another command, but can be
2960 followed by a comment.
2961
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002962 To avoid line continuation to be applied, consider
2963 adding 'C' to 'cpoptions': >
2964 set cpo+=C
2965 let var =<< END
2966 \ leading backslash
2967 END
2968 set cpo-=C
2969<
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002970 Examples: >
2971 let var1 =<< END
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002972 Sample text 1
2973 Sample text 2
2974 Sample text 3
2975 END
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002976
2977 let data =<< trim DATA
Bram Moolenaar2e693a82019-10-16 22:35:02 +02002978 1 2 3 4
2979 5 6 7 8
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002980 DATA
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002981
2982 let code =<< trim eval CODE
Bram Moolenaard899e512022-05-07 21:54:03 +01002983 let v = {10 + 20}
2984 let h = "{$HOME}"
2985 let s = "{Str1()} abc {Str2()}"
2986 let n = {MyFunc(3, 4)}
Yegappan Lakshmananefbfa862022-04-17 12:47:40 +01002987 CODE
Bram Moolenaarf5842c52019-05-19 18:41:26 +02002988<
Bram Moolenaar4a748032010-09-30 21:47:56 +02002989 *E121*
Bram Moolenaar58b85342016-08-14 19:54:54 +02002990:let {var-name} .. List the value of variable {var-name}. Multiple
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00002991 variable names may be given. Special names recognized
2992 here: *E738*
Bram Moolenaarca003e12006-03-17 23:19:38 +00002993 g: global variables
2994 b: local buffer variables
2995 w: local window variables
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002996 t: local tab page variables
Bram Moolenaarca003e12006-03-17 23:19:38 +00002997 s: script-local variables
2998 l: local function variables
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00002999 v: Vim variables.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003000 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00003002:let List the values of all variables. The type of the
3003 variable is indicated before the value:
3004 <nothing> String
3005 # Number
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003006 * Funcref
Bram Moolenaar65e0d772020-06-14 17:29:55 +02003007 This does not work in Vim9 script. |vim9-declaration|
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003009:unl[et][!] {name} ... *:unlet* *:unl* *E108* *E795* *E1081*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003010 Remove the internal variable {name}. Several variable
3011 names can be given, they are all removed. The name
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003012 may also be a |List| or |Dictionary| item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 With [!] no error message is given for non-existing
3014 variables.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003015 One or more items from a |List| can be removed: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003016 :unlet list[3] " remove fourth item
3017 :unlet list[3:] " remove fourth item to last
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003018< One item from a |Dictionary| can be removed at a time: >
Bram Moolenaar9cd15162005-01-16 22:02:49 +00003019 :unlet dict['two']
3020 :unlet dict.two
Bram Moolenaarc236c162008-07-13 17:41:49 +00003021< This is especially useful to clean up used global
3022 variables and script-local variables (these are not
3023 deleted when the script ends). Function-local
3024 variables are automatically deleted when the function
3025 ends.
Bram Moolenaar1b5f03e2023-01-09 20:12:45 +00003026 In |Vim9| script variables declared in a function or
3027 script cannot be removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028
Bram Moolenaar137374f2018-05-13 15:59:50 +02003029:unl[et] ${env-name} ... *:unlet-environment* *:unlet-$*
3030 Remove environment variable {env-name}.
3031 Can mix {name} and ${env-name} in one :unlet command.
3032 No error message is given for a non-existing
3033 variable, also without !.
3034 If the system does not support deleting an environment
Bram Moolenaar9937a052019-06-15 15:45:06 +02003035 variable, it is made empty.
Bram Moolenaar137374f2018-05-13 15:59:50 +02003036
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003037 *:cons* *:const* *E1018*
Bram Moolenaar9937a052019-06-15 15:45:06 +02003038:cons[t] {var-name} = {expr1}
3039:cons[t] [{name1}, {name2}, ...] = {expr1}
Bram Moolenaar9937a052019-06-15 15:45:06 +02003040:cons[t] [{name}, ..., ; {lastname}] = {expr1}
3041:cons[t] {var-name} =<< [trim] {marker}
3042text...
3043text...
3044{marker}
3045 Similar to |:let|, but additionally lock the variable
3046 after setting the value. This is the same as locking
3047 the variable with |:lockvar| just after |:let|, thus: >
3048 :const x = 1
3049< is equivalent to: >
3050 :let x = 1
Bram Moolenaar021bda52020-08-17 21:07:22 +02003051 :lockvar! x
Bram Moolenaara187c432020-09-16 21:08:28 +02003052< NOTE: in Vim9 script `:const` works differently, see
3053 |vim9-const|
3054 This is useful if you want to make sure the variable
Bram Moolenaar021bda52020-08-17 21:07:22 +02003055 is not modified. If the value is a List or Dictionary
3056 literal then the items also cannot be changed: >
3057 const ll = [1, 2, 3]
3058 let ll[1] = 5 " Error!
Bram Moolenaar6e649222021-10-04 21:32:54 +01003059< Nested references are not locked: >
Bram Moolenaar021bda52020-08-17 21:07:22 +02003060 let lvar = ['a']
3061 const lconst = [0, lvar]
3062 let lconst[0] = 2 " Error!
3063 let lconst[1][0] = 'b' " OK
3064< *E995*
Bram Moolenaar9b283522019-06-17 22:19:33 +02003065 |:const| does not allow to for changing a variable: >
Bram Moolenaar9937a052019-06-15 15:45:06 +02003066 :let x = 1
3067 :const x = 2 " Error!
Bram Moolenaar1c196e72019-06-16 15:41:58 +02003068< *E996*
3069 Note that environment variables, option values and
3070 register values cannot be used here, since they cannot
3071 be locked.
3072
Bram Moolenaar85850f32019-07-19 22:05:51 +02003073:cons[t]
3074:cons[t] {var-name}
3075 If no argument is given or only {var-name} is given,
3076 the behavior is the same as |:let|.
3077
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003078:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
3079 Lock the internal variable {name}. Locking means that
3080 it can no longer be changed (until it is unlocked).
3081 A locked variable can be deleted: >
3082 :lockvar v
Bram Moolenaardad44732021-03-31 20:07:33 +02003083 :let v = 'asdf' " fails!
3084 :unlet v " works
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003085< *E741* *E940* *E1118* *E1119* *E1120* *E1121* *E1122*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003086 If you try to change a locked variable you get an
Bram Moolenaare7877fe2017-02-20 22:35:33 +01003087 error message: "E741: Value is locked: {name}".
3088 If you try to lock or unlock a built-in variable you
3089 get an error message: "E940: Cannot lock or unlock
3090 variable {name}".
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003091
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003092 [depth] is relevant when locking a |List| or
3093 |Dictionary|. It specifies how deep the locking goes:
Bram Moolenaara187c432020-09-16 21:08:28 +02003094 0 Lock the variable {name} but not its
3095 value.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003096 1 Lock the |List| or |Dictionary| itself,
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003097 cannot add or remove items, but can
3098 still change their values.
3099 2 Also lock the values, cannot change
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003100 the items. If an item is a |List| or
3101 |Dictionary|, cannot add or remove
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003102 items, but can still change the
3103 values.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003104 3 Like 2 but for the |List| /
3105 |Dictionary| in the |List| /
3106 |Dictionary|, one level deeper.
3107 The default [depth] is 2, thus when {name} is a |List|
3108 or |Dictionary| the values cannot be changed.
Bram Moolenaara187c432020-09-16 21:08:28 +02003109
3110 Example with [depth] 0: >
3111 let mylist = [1, 2, 3]
3112 lockvar 0 mylist
Bram Moolenaar6e649222021-10-04 21:32:54 +01003113 let mylist[0] = 77 " OK
Bram Moolenaar10e8ff92023-06-10 21:40:39 +01003114 call add(mylist, 4) " OK
Bram Moolenaara187c432020-09-16 21:08:28 +02003115 let mylist = [7, 8, 9] " Error!
3116< *E743*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003117 For unlimited depth use [!] and omit [depth].
3118 However, there is a maximum depth of 100 to catch
3119 loops.
3120
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003121 Note that when two variables refer to the same |List|
3122 and you lock one of them, the |List| will also be
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003123 locked when used through the other variable.
3124 Example: >
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003125 :let l = [0, 1, 2, 3]
3126 :let cl = l
3127 :lockvar l
3128 :let cl[1] = 99 " won't work!
3129< You may want to make a copy of a list to avoid this.
3130 See |deepcopy()|.
3131
Yegappan Lakshmanancd39b692023-10-02 12:50:45 -07003132 *E1391* *E1392*
3133 Locking and unlocking object and class variables is
3134 currently NOT supported.
3135
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003136
Bram Moolenaara2baa732022-02-04 16:09:54 +00003137:unlo[ckvar][!] [depth] {name} ... *:unlockvar* *:unlo* *E1246*
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00003138 Unlock the internal variable {name}. Does the
3139 opposite of |:lockvar|.
3140
Bram Moolenaard13166e2022-11-18 21:49:57 +00003141 If {name} does not exist:
3142 - In |Vim9| script an error is given.
3143 - In legacy script this is silently ignored.
3144
Bram Moolenaar61da1bf2019-06-06 12:14:49 +02003145:if {expr1} *:if* *:end* *:endif* *:en* *E171* *E579* *E580*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003146:en[dif] Execute the commands until the next matching `:else`
3147 or `:endif` if {expr1} evaluates to non-zero.
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003148 Although the short forms work, it is recommended to
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003149 always use `:endif` to avoid confusion and to make
3150 auto-indenting work properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151
3152 From Vim version 4.5 until 5.0, every Ex command in
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003153 between the `:if` and `:endif` is ignored. These two
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 commands were just to allow for future expansions in a
Bram Moolenaar85084ef2016-01-17 22:26:33 +01003155 backward compatible way. Nesting was allowed. Note
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003156 that any `:else` or `:elseif` was ignored, the `else`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 part was not executed either.
3158
3159 You can use this to remain compatible with older
3160 versions: >
3161 :if version >= 500
3162 : version-5-specific-commands
3163 :endif
3164< The commands still need to be parsed to find the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003165 `endif`. Sometimes an older Vim has a problem with a
3166 new command. For example, `:silent` is recognized as
3167 a `:substitute` command. In that case `:execute` can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 avoid problems: >
3169 :if version >= 600
3170 : execute "silent 1,$delete"
3171 :endif
3172<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003173 In |Vim9| script `:endif` cannot be shortened, to
3174 improve script readability.
3175 NOTE: The `:append` and `:insert` commands don't work
3176 properly in between `:if` and `:endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177
3178 *:else* *:el* *E581* *E583*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003179:el[se] Execute the commands until the next matching `:else`
3180 or `:endif` if they previously were not being
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 executed.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003182 In |Vim9| script `:else` cannot be shortened, to
3183 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184
3185 *:elseif* *:elsei* *E582* *E584*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003186:elsei[f] {expr1} Short for `:else` `:if`, with the addition that there
3187 is no extra `:endif`.
3188 In |Vim9| script `:elseif` cannot be shortened, to
3189 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190
3191:wh[ile] {expr1} *:while* *:endwhile* *:wh* *:endw*
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00003192 *E170* *E585* *E588* *E733*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003193:endw[hile] Repeat the commands between `:while` and `:endwhile`,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 as long as {expr1} evaluates to non-zero.
3195 When an error is detected from a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003196 loop, execution continues after the `endwhile`.
Bram Moolenaar12805862005-01-05 22:16:17 +00003197 Example: >
3198 :let lnum = 1
3199 :while lnum <= line("$")
3200 :call FixLine(lnum)
3201 :let lnum = lnum + 1
3202 :endwhile
3203<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003204 In |Vim9| script `:while` and `:endwhile` cannot be
3205 shortened, to improve script readability.
3206 NOTE: The `:append` and `:insert` commands don't work
3207 properly inside a `:while` and `:for` loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003209:for {var} in {object} *:for* *E690* *E732*
Bram Moolenaar12805862005-01-05 22:16:17 +00003210:endfo[r] *:endfo* *:endfor*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003211 Repeat the commands between `:for` and `:endfor` for
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01003212 each item in {object}. {object} can be a |List|,
3213 a |Blob| or a |String|. *E1177*
Bram Moolenaar5da36052021-12-27 15:39:57 +00003214
3215 Variable {var} is set to the value of each item.
3216 In |Vim9| script the loop variable must not have been
3217 declared yet, unless when it is a
3218 global/window/tab/buffer variable.
3219
3220 When an error is detected for a command inside the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003221 loop, execution continues after the `endfor`.
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003222 Changing {object} inside the loop affects what items
3223 are used. Make a copy if this is unwanted: >
Bram Moolenaarde8866b2005-01-06 23:24:37 +00003224 :for item in copy(mylist)
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003225<
Bram Moolenaar5da36052021-12-27 15:39:57 +00003226 When {object} is a |List| and not making a copy, in
3227 legacy script Vim stores a reference to the next item
3228 in the |List| before executing the commands with the
3229 current item. Thus the current item can be removed
3230 without effect. Removing any later item means it will
3231 not be found. Thus the following example works (an
3232 inefficient way to make a |List| empty): >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003233 for item in mylist
3234 call remove(mylist, 0)
3235 endfor
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003236< Note that reordering the |List| (e.g., with sort() or
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003237 reverse()) may have unexpected effects.
Bram Moolenaar5da36052021-12-27 15:39:57 +00003238 In |Vim9| script the index is used. If an item before
3239 the current one is deleted the next item will be
3240 skipped.
Bram Moolenaar12805862005-01-05 22:16:17 +00003241
Bram Moolenaar5e66b422019-01-24 21:58:10 +01003242 When {object} is a |Blob|, Vim always makes a copy to
3243 iterate over. Unlike with |List|, modifying the
3244 |Blob| does not affect the iteration.
3245
Bram Moolenaar9b03d3e2022-08-30 20:26:34 +01003246 When {object} is a |String| each item is a string with
3247 one character, plus any combining characters.
3248
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003249 In |Vim9| script `:endfor` cannot be shortened, to
3250 improve script readability.
3251
Bram Moolenaar12805862005-01-05 22:16:17 +00003252:for [{var1}, {var2}, ...] in {listlist}
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003253:endfo[r] *E1140*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003254 Like `:for` above, but each item in {listlist} must be
Bram Moolenaar12805862005-01-05 22:16:17 +00003255 a list, of which each item is assigned to {var1},
3256 {var2}, etc. Example: >
3257 :for [lnum, col] in [[1, 3], [2, 5], [3, 8]]
3258 :echo getline(lnum)[col]
3259 :endfor
3260<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 *:continue* *:con* *E586*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003262:con[tinue] When used inside a `:while` or `:for` loop, jumps back
Bram Moolenaar12805862005-01-05 22:16:17 +00003263 to the start of the loop.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003264 If it is used after a `:try` inside the loop but
3265 before the matching `:finally` (if present), the
3266 commands following the `:finally` up to the matching
3267 `:endtry` are executed first. This process applies to
3268 all nested `:try`s inside the loop. The outermost
3269 `:endtry` then jumps back to the start of the loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003271 In |Vim9| script `:cont` is the shortest form, to
3272 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 *:break* *:brea* *E587*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003274:brea[k] When used inside a `:while` or `:for` loop, skips to
3275 the command after the matching `:endwhile` or
3276 `:endfor`.
3277 If it is used after a `:try` inside the loop but
3278 before the matching `:finally` (if present), the
3279 commands following the `:finally` up to the matching
3280 `:endtry` are executed first. This process applies to
3281 all nested `:try`s inside the loop. The outermost
3282 `:endtry` then jumps to the command after the loop.
3283
3284 In |Vim9| script `:break` cannot be shortened, to
3285 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003287:try *:try* *:endt* *:endtry*
3288 *E600* *E601* *E602* *E1032*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289:endt[ry] Change the error handling for the commands between
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003290 `:try` and `:endtry` including everything being
3291 executed across `:source` commands, function calls,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 or autocommand invocations.
3293
3294 When an error or interrupt is detected and there is
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003295 a `:finally` command following, execution continues
3296 after the `:finally`. Otherwise, or when the
3297 `:endtry` is reached thereafter, the next
3298 (dynamically) surrounding `:try` is checked for
3299 a corresponding `:finally` etc. Then the script
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003300 processing is terminated. Whether a function
3301 definition has an "abort" argument does not matter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 Example: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003303 try | call Unknown() | finally | echomsg "cleanup" | endtry
3304 echomsg "not reached"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305<
3306 Moreover, an error or interrupt (dynamically) inside
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003307 `:try` and `:endtry` is converted to an exception. It
3308 can be caught as if it were thrown by a `:throw`
3309 command (see `:catch`). In this case, the script
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 processing is not terminated.
3311
3312 The value "Vim:Interrupt" is used for an interrupt
3313 exception. An error in a Vim command is converted
3314 to a value of the form "Vim({command}):{errmsg}",
3315 other errors are converted to a value of the form
3316 "Vim:{errmsg}". {command} is the full command name,
3317 and {errmsg} is the message that is displayed if the
3318 error exception is not caught, always beginning with
3319 the error number.
3320 Examples: >
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003321 try | sleep 100 | catch /^Vim:Interrupt$/ | endtry
3322 try | edit | catch /^Vim(edit):E\d\+/ | echo "error" | endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003324 In |Vim9| script `:endtry` cannot be shortened, to
3325 improve script readability.
3326
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003327 *:cat* *:catch*
3328 *E603* *E604* *E605* *E654* *E1033*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003329:cat[ch] /{pattern}/ The following commands until the next `:catch`,
3330 `:finally`, or `:endtry` that belongs to the same
3331 `:try` as the `:catch` are executed when an exception
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 matching {pattern} is being thrown and has not yet
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003333 been caught by a previous `:catch`. Otherwise, these
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 commands are skipped.
3335 When {pattern} is omitted all errors are caught.
3336 Examples: >
Bram Moolenaar647e24b2019-03-17 16:39:46 +01003337 :catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C)
3338 :catch /^Vim\%((\a\+)\)\=:E/ " catch all Vim errors
3339 :catch /^Vim\%((\a\+)\)\=:/ " catch errors and interrupts
3340 :catch /^Vim(write):/ " catch all errors in :write
3341 :catch /^Vim\%((\a\+)\)\=:E123:/ " catch error E123
3342 :catch /my-exception/ " catch user exception
3343 :catch /.*/ " catch everything
3344 :catch " same as /.*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345<
3346 Another character can be used instead of / around the
3347 {pattern}, so long as it does not have a special
3348 meaning (e.g., '|' or '"') and doesn't occur inside
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00003349 {pattern}. *E1067*
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02003350 Information about the exception is available in
3351 |v:exception|. Also see |throw-variables|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 NOTE: It is not reliable to ":catch" the TEXT of
3353 an error message because it may vary in different
3354 locales.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003355 In |Vim9| script `:catch` cannot be shortened, to
3356 improve script readability.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357
3358 *:fina* *:finally* *E606* *E607*
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003359:fina[lly] The following commands until the matching `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 are executed whenever the part between the matching
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003361 `:try` and the `:finally` is left: either by falling
3362 through to the `:finally` or by a `:continue`,
3363 `:break`, `:finish`, or `:return`, or by an error or
3364 interrupt or exception (see `:throw`).
3365
3366 In |Vim9| script `:finally` cannot be shortened, to
3367 improve script readability and avoid confusion with
3368 `:final`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369
Bram Moolenaarf10911e2022-01-29 22:20:48 +00003370 *:th* *:throw* *E608* *E1129*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371:th[row] {expr1} The {expr1} is evaluated and thrown as an exception.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003372 If the ":throw" is used after a `:try` but before the
3373 first corresponding `:catch`, commands are skipped
3374 until the first `:catch` matching {expr1} is reached.
3375 If there is no such `:catch` or if the ":throw" is
3376 used after a `:catch` but before the `:finally`, the
3377 commands following the `:finally` (if present) up to
3378 the matching `:endtry` are executed. If the `:throw`
3379 is after the `:finally`, commands up to the `:endtry`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 are skipped. At the ":endtry", this process applies
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003381 again for the next dynamically surrounding `:try`
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 (which may be found in a calling function or sourcing
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003383 script), until a matching `:catch` has been found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 If the exception is not caught, the command processing
3385 is terminated.
3386 Example: >
3387 :try | throw "oops" | catch /^oo/ | echo "caught" | endtry
Bram Moolenaar662db672011-03-22 14:05:35 +01003388< Note that "catch" may need to be on a separate line
3389 for when an error causes the parsing to skip the whole
3390 line and not see the "|" that separates the commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003392 In |Vim9| script `:throw` cannot be shortened, to
3393 improve script readability.
3394
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 *:ec* *:echo*
3396:ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The
3397 first {expr1} starts on a new line.
3398 Also see |:comment|.
3399 Use "\n" to start a new line. Use "\r" to move the
3400 cursor to the first column.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003401 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 Cannot be followed by a comment.
3403 Example: >
3404 :echo "the value of 'shell' is" &shell
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003405< *:echo-redraw*
3406 A later redraw may make the message disappear again.
3407 And since Vim mostly postpones redrawing until it's
3408 finished with a sequence of commands this happens
3409 quite often. To avoid that a command from before the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003410 `:echo` causes a redraw afterwards (redraws are often
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003411 postponed until you type something), force a redraw
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003412 with the `:redraw` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 :new | redraw | echo "there is a new window"
3414<
3415 *:echon*
3416:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
3417 |:comment|.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003418 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 Cannot be followed by a comment.
3420 Example: >
3421 :echon "the value of 'shell' is " &shell
3422<
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003423 Note the difference between using `:echo`, which is a
3424 Vim command, and `:!echo`, which is an external shell
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 command: >
3426 :!echo % --> filename
3427< The arguments of ":!" are expanded, see |:_%|. >
3428 :!echo "%" --> filename or "filename"
3429< Like the previous example. Whether you see the double
3430 quotes or not depends on your 'shell'. >
3431 :echo % --> nothing
3432< The '%' is an illegal character in an expression. >
3433 :echo "%" --> %
3434< This just echoes the '%' character. >
3435 :echo expand("%") --> filename
3436< This calls the expand() function to expand the '%'.
3437
3438 *:echoh* *:echohl*
3439:echoh[l] {name} Use the highlight group {name} for the following
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003440 `:echo`, `:echon` and `:echomsg` commands. Also used
3441 for the `input()` prompt. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 :echohl WarningMsg | echo "Don't panic!" | echohl None
3443< Don't forget to set the group back to "None",
3444 otherwise all following echo's will be highlighted.
3445
3446 *:echom* *:echomsg*
3447:echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
3448 message in the |message-history|.
3449 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003450 `:echo` command. But unprintable characters are
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 displayed, not interpreted.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003452 The parsing works slightly different from `:echo`,
3453 more like `:execute`. All the expressions are first
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003454 evaluated and concatenated before echoing anything.
Bram Moolenaar461a7fc2018-12-22 13:28:07 +01003455 If expressions does not evaluate to a Number or
3456 String, string() is used to turn it into a string.
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003457 Uses the highlighting set by the `:echohl` command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 Example: >
3459 :echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see."
Bram Moolenaaref2f6562007-05-06 13:32:59 +00003460< See |:echo-redraw| to avoid the message disappearing
3461 when the screen is redrawn.
Bram Moolenaar37fef162022-08-29 18:16:32 +01003462
3463 *:echow* *:echowin* *:echowindow*
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003464:[N]echow[indow] {expr1} ..
Bram Moolenaar37fef162022-08-29 18:16:32 +01003465 Like |:echomsg| but when the messages popup window is
3466 available the message is displayed there. This means
3467 it will show for three seconds and avoid a
Bram Moolenaar9b03d3e2022-08-30 20:26:34 +01003468 |hit-enter| prompt. If you want to hide it before
3469 that, press Esc in Normal mode (when it would
Bram Moolenaar71b6d332022-09-10 13:13:14 +01003470 otherwise beep). If it disappears too soon you can
3471 use `:messages` to see the text.
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01003472 When [N] is given then the window will show up for
3473 this number of seconds. The last `:echowindow` with a
3474 count matters, it is used once only.
Bram Moolenaar37fef162022-08-29 18:16:32 +01003475 The message window is available when Vim was compiled
3476 with the +timer and the +popupwin features.
3477
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 *:echoe* *:echoerr*
3479:echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
3480 message in the |message-history|. When used in a
3481 script or function the line number will be added.
3482 Spaces are placed between the arguments as with the
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003483 `:echomsg` command. When used inside a try conditional,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 the message is raised as an error exception instead
3485 (see |try-echoerr|).
3486 Example: >
3487 :echoerr "This script just failed!"
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003488< If you just want a highlighted message use `:echohl`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 And to get a beep: >
3490 :exe "normal \<Esc>"
Bram Moolenaar4c868302021-03-22 16:19:45 +01003491
3492:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3493 Intended for testing: works like `:echomsg` but when
3494 running in the GUI and started from a terminal write
3495 the text to stdout.
3496
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003497 *:eval*
3498:eval {expr} Evaluate {expr} and discard the result. Example: >
3499 :eval Getlist()->Filter()->append('$')
3500
3501< The expression is supposed to have a side effect,
3502 since the resulting value is not used. In the example
3503 the `append()` call appends the List with text to the
3504 buffer. This is similar to `:call` but works with any
3505 expression.
Bram Moolenaara2baa732022-02-04 16:09:54 +00003506 In |Vim9| script an expression without an effect will
3507 result in error *E1207* . This should help noticing
3508 mistakes.
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003509
3510 The command can be shortened to `:ev` or `:eva`, but
3511 these are hard to recognize and therefore not to be
3512 used.
3513
Bram Moolenaarbc93ceb2020-02-26 13:36:21 +01003514 The command cannot be followed by "|" and another
3515 command, since "|" is seen as part of the expression.
3516
Bram Moolenaar09c6f262019-11-17 15:55:14 +01003517
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 *:exe* *:execute*
3519:exe[cute] {expr1} .. Executes the string that results from the evaluation
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003520 of {expr1} as an Ex command.
3521 Multiple arguments are concatenated, with a space in
Bram Moolenaar7e6a5152021-01-02 16:39:53 +01003522 between. To avoid the extra space use the ".."
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003523 operator to concatenate strings into one argument.
3524 {expr1} is used as the processed command, command line
3525 editing keys are not recognized.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 Cannot be followed by a comment.
3527 Examples: >
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003528 :execute "buffer" nextbuf
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003529 :execute "normal" count .. "w"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530<
3531 ":execute" can be used to append a command to commands
3532 that don't accept a '|'. Example: >
3533 :execute '!ls' | echo "theend"
3534
3535< ":execute" is also a nice way to avoid having to type
3536 control characters in a Vim script for a ":normal"
3537 command: >
3538 :execute "normal ixxx\<Esc>"
3539< This has an <Esc> character, see |expr-string|.
3540
Bram Moolenaar446cb832008-06-24 21:56:24 +00003541 Be careful to correctly escape special characters in
3542 file names. The |fnameescape()| function can be used
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003543 for Vim commands, |shellescape()| for |:!| commands.
3544 Examples: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +01003545 :execute "e " .. fnameescape(filename)
3546 :execute "!ls " .. shellescape(filename, 1)
Bram Moolenaar446cb832008-06-24 21:56:24 +00003547<
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 Note: The executed string may be any command-line, but
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01003549 starting or ending "if", "while" and "for" does not
3550 always work, because when commands are skipped the
3551 ":execute" is not evaluated and Vim loses track of
3552 where blocks start and end. Also "break" and
3553 "continue" should not be inside ":execute".
3554 This example does not work, because the ":execute" is
3555 not evaluated and Vim does not see the "while", and
3556 gives an error for finding an ":endwhile": >
3557 :if 0
3558 : execute 'while i > 5'
3559 : echo "test"
3560 : endwhile
3561 :endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562<
3563 It is allowed to have a "while" or "if" command
3564 completely in the executed string: >
3565 :execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
3566<
3567
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003568 *:exe-comment*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 ":execute", ":echo" and ":echon" cannot be followed by
3570 a comment directly, because they see the '"' as the
3571 start of a string. But, you can use '|' followed by a
3572 comment. Example: >
3573 :echo "foo" | "this is a comment
3574
3575==============================================================================
35768. Exception handling *exception-handling*
3577
3578The Vim script language comprises an exception handling feature. This section
3579explains how it can be used in a Vim script.
3580
3581Exceptions may be raised by Vim on an error or on interrupt, see
3582|catch-errors| and |catch-interrupt|. You can also explicitly throw an
3583exception by using the ":throw" command, see |throw-catch|.
3584
3585
3586TRY CONDITIONALS *try-conditionals*
3587
3588Exceptions can be caught or can cause cleanup code to be executed. You can
3589use a try conditional to specify catch clauses (that catch exceptions) and/or
3590a finally clause (to be executed for cleanup).
3591 A try conditional begins with a |:try| command and ends at the matching
3592|:endtry| command. In between, you can use a |:catch| command to start
3593a catch clause, or a |:finally| command to start a finally clause. There may
3594be none or multiple catch clauses, but there is at most one finally clause,
3595which must not be followed by any catch clauses. The lines before the catch
3596clauses and the finally clause is called a try block. >
3597
3598 :try
Bram Moolenaar446cb832008-06-24 21:56:24 +00003599 : ...
3600 : ... TRY BLOCK
3601 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003603 : ...
3604 : ... CATCH CLAUSE
3605 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606 :catch /{pattern}/
Bram Moolenaar446cb832008-06-24 21:56:24 +00003607 : ...
3608 : ... CATCH CLAUSE
3609 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 :finally
Bram Moolenaar446cb832008-06-24 21:56:24 +00003611 : ...
3612 : ... FINALLY CLAUSE
3613 : ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 :endtry
3615
3616The try conditional allows to watch code for exceptions and to take the
3617appropriate actions. Exceptions from the try block may be caught. Exceptions
3618from the try block and also the catch clauses may cause cleanup actions.
3619 When no exception is thrown during execution of the try block, the control
3620is transferred to the finally clause, if present. After its execution, the
3621script continues with the line following the ":endtry".
3622 When an exception occurs during execution of the try block, the remaining
3623lines in the try block are skipped. The exception is matched against the
3624patterns specified as arguments to the ":catch" commands. The catch clause
3625after the first matching ":catch" is taken, other catch clauses are not
3626executed. The catch clause ends when the next ":catch", ":finally", or
3627":endtry" command is reached - whatever is first. Then, the finally clause
3628(if present) is executed. When the ":endtry" is reached, the script execution
3629continues in the following line as usual.
3630 When an exception that does not match any of the patterns specified by the
3631":catch" commands is thrown in the try block, the exception is not caught by
3632that try conditional and none of the catch clauses is executed. Only the
3633finally clause, if present, is taken. The exception pends during execution of
3634the finally clause. It is resumed at the ":endtry", so that commands after
3635the ":endtry" are not executed and the exception might be caught elsewhere,
3636see |try-nesting|.
3637 When during execution of a catch clause another exception is thrown, the
Bram Moolenaar58b85342016-08-14 19:54:54 +02003638remaining lines in that catch clause are not executed. The new exception is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639not matched against the patterns in any of the ":catch" commands of the same
3640try conditional and none of its catch clauses is taken. If there is, however,
3641a finally clause, it is executed, and the exception pends during its
3642execution. The commands following the ":endtry" are not executed. The new
3643exception might, however, be caught elsewhere, see |try-nesting|.
3644 When during execution of the finally clause (if present) an exception is
Bram Moolenaar58b85342016-08-14 19:54:54 +02003645thrown, the remaining lines in the finally clause are skipped. If the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646clause has been taken because of an exception from the try block or one of the
3647catch clauses, the original (pending) exception is discarded. The commands
3648following the ":endtry" are not executed, and the exception from the finally
3649clause is propagated and can be caught elsewhere, see |try-nesting|.
3650
3651The finally clause is also executed, when a ":break" or ":continue" for
3652a ":while" loop enclosing the complete try conditional is executed from the
3653try block or a catch clause. Or when a ":return" or ":finish" is executed
3654from the try block or a catch clause of a try conditional in a function or
3655sourced script, respectively. The ":break", ":continue", ":return", or
3656":finish" pends during execution of the finally clause and is resumed when the
3657":endtry" is reached. It is, however, discarded when an exception is thrown
3658from the finally clause.
3659 When a ":break" or ":continue" for a ":while" loop enclosing the complete
3660try conditional or when a ":return" or ":finish" is encountered in the finally
3661clause, the rest of the finally clause is skipped, and the ":break",
3662":continue", ":return" or ":finish" is executed as usual. If the finally
3663clause has been taken because of an exception or an earlier ":break",
3664":continue", ":return", or ":finish" from the try block or a catch clause,
3665this pending exception or command is discarded.
3666
3667For examples see |throw-catch| and |try-finally|.
3668
3669
Bram Moolenaar76db9e02022-11-09 21:21:04 +00003670NESTING OF TRY CONDITIONALS *try-nesting*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671
3672Try conditionals can be nested arbitrarily. That is, a complete try
3673conditional can be put into the try block, a catch clause, or the finally
3674clause of another try conditional. If the inner try conditional does not
3675catch an exception thrown in its try block or throws a new exception from one
3676of its catch clauses or its finally clause, the outer try conditional is
3677checked according to the rules above. If the inner try conditional is in the
3678try block of the outer try conditional, its catch clauses are checked, but
Bram Moolenaar58b85342016-08-14 19:54:54 +02003679otherwise only the finally clause is executed. It does not matter for
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680nesting, whether the inner try conditional is directly contained in the outer
3681one, or whether the outer one sources a script or calls a function containing
3682the inner try conditional.
3683
3684When none of the active try conditionals catches an exception, just their
3685finally clauses are executed. Thereafter, the script processing terminates.
3686An error message is displayed in case of an uncaught exception explicitly
3687thrown by a ":throw" command. For uncaught error and interrupt exceptions
3688implicitly raised by Vim, the error message(s) or interrupt message are shown
3689as usual.
3690
3691For examples see |throw-catch|.
3692
3693
3694EXAMINING EXCEPTION HANDLING CODE *except-examine*
3695
3696Exception handling code can get tricky. If you are in doubt what happens, set
3697'verbose' to 13 or use the ":13verbose" command modifier when sourcing your
3698script file. Then you see when an exception is thrown, discarded, caught, or
3699finished. When using a verbosity level of at least 14, things pending in
3700a finally clause are also shown. This information is also given in debug mode
3701(see |debug-scripts|).
3702
3703
3704THROWING AND CATCHING EXCEPTIONS *throw-catch*
3705
3706You can throw any number or string as an exception. Use the |:throw| command
3707and pass the value to be thrown as argument: >
3708 :throw 4711
3709 :throw "string"
3710< *throw-expression*
3711You can also specify an expression argument. The expression is then evaluated
3712first, and the result is thrown: >
3713 :throw 4705 + strlen("string")
3714 :throw strpart("strings", 0, 6)
3715
3716An exception might be thrown during evaluation of the argument of the ":throw"
3717command. Unless it is caught there, the expression evaluation is abandoned.
3718The ":throw" command then does not throw a new exception.
3719 Example: >
3720
3721 :function! Foo(arg)
3722 : try
3723 : throw a:arg
3724 : catch /foo/
3725 : endtry
3726 : return 1
3727 :endfunction
3728 :
3729 :function! Bar()
3730 : echo "in Bar"
3731 : return 4710
3732 :endfunction
3733 :
3734 :throw Foo("arrgh") + Bar()
3735
3736This throws "arrgh", and "in Bar" is not displayed since Bar() is not
3737executed. >
3738 :throw Foo("foo") + Bar()
3739however displays "in Bar" and throws 4711.
3740
3741Any other command that takes an expression as argument might also be
Bram Moolenaar58b85342016-08-14 19:54:54 +02003742abandoned by an (uncaught) exception during the expression evaluation. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743exception is then propagated to the caller of the command.
3744 Example: >
3745
3746 :if Foo("arrgh")
3747 : echo "then"
3748 :else
3749 : echo "else"
3750 :endif
3751
3752Here neither of "then" or "else" is displayed.
3753
3754 *catch-order*
3755Exceptions can be caught by a try conditional with one or more |:catch|
3756commands, see |try-conditionals|. The values to be caught by each ":catch"
3757command can be specified as a pattern argument. The subsequent catch clause
3758gets executed when a matching exception is caught.
3759 Example: >
3760
3761 :function! Foo(value)
3762 : try
3763 : throw a:value
3764 : catch /^\d\+$/
3765 : echo "Number thrown"
3766 : catch /.*/
3767 : echo "String thrown"
3768 : endtry
3769 :endfunction
3770 :
3771 :call Foo(0x1267)
3772 :call Foo('string')
3773
3774The first call to Foo() displays "Number thrown", the second "String thrown".
3775An exception is matched against the ":catch" commands in the order they are
3776specified. Only the first match counts. So you should place the more
3777specific ":catch" first. The following order does not make sense: >
3778
3779 : catch /.*/
3780 : echo "String thrown"
3781 : catch /^\d\+$/
3782 : echo "Number thrown"
3783
3784The first ":catch" here matches always, so that the second catch clause is
3785never taken.
3786
3787 *throw-variables*
3788If you catch an exception by a general pattern, you may access the exact value
3789in the variable |v:exception|: >
3790
3791 : catch /^\d\+$/
3792 : echo "Number thrown. Value is" v:exception
3793
3794You may also be interested where an exception was thrown. This is stored in
3795|v:throwpoint|. Note that "v:exception" and "v:throwpoint" are valid for the
3796exception most recently caught as long it is not finished.
3797 Example: >
3798
3799 :function! Caught()
3800 : if v:exception != ""
Bram Moolenaarc51cf032022-02-26 12:25:45 +00003801 : echo 'Caught "' . v:exception .. '" in ' .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 : else
3803 : echo 'Nothing caught'
3804 : endif
3805 :endfunction
3806 :
3807 :function! Foo()
3808 : try
3809 : try
3810 : try
3811 : throw 4711
3812 : finally
3813 : call Caught()
3814 : endtry
3815 : catch /.*/
3816 : call Caught()
3817 : throw "oops"
3818 : endtry
3819 : catch /.*/
3820 : call Caught()
3821 : finally
3822 : call Caught()
3823 : endtry
3824 :endfunction
3825 :
3826 :call Foo()
3827
3828This displays >
3829
3830 Nothing caught
3831 Caught "4711" in function Foo, line 4
3832 Caught "oops" in function Foo, line 10
3833 Nothing caught
3834
3835A practical example: The following command ":LineNumber" displays the line
3836number in the script or function where it has been used: >
3837
3838 :function! LineNumber()
3839 : return substitute(v:throwpoint, '.*\D\(\d\+\).*', '\1', "")
3840 :endfunction
3841 :command! LineNumber try | throw "" | catch | echo LineNumber() | endtry
3842<
3843 *try-nested*
3844An exception that is not caught by a try conditional can be caught by
3845a surrounding try conditional: >
3846
3847 :try
3848 : try
3849 : throw "foo"
3850 : catch /foobar/
3851 : echo "foobar"
3852 : finally
3853 : echo "inner finally"
3854 : endtry
3855 :catch /foo/
3856 : echo "foo"
3857 :endtry
3858
3859The inner try conditional does not catch the exception, just its finally
3860clause is executed. The exception is then caught by the outer try
3861conditional. The example displays "inner finally" and then "foo".
3862
3863 *throw-from-catch*
3864You can catch an exception and throw a new one to be caught elsewhere from the
3865catch clause: >
3866
3867 :function! Foo()
3868 : throw "foo"
3869 :endfunction
3870 :
3871 :function! Bar()
3872 : try
3873 : call Foo()
3874 : catch /foo/
3875 : echo "Caught foo, throw bar"
3876 : throw "bar"
3877 : endtry
3878 :endfunction
3879 :
3880 :try
3881 : call Bar()
3882 :catch /.*/
3883 : echo "Caught" v:exception
3884 :endtry
3885
3886This displays "Caught foo, throw bar" and then "Caught bar".
3887
3888 *rethrow*
3889There is no real rethrow in the Vim script language, but you may throw
3890"v:exception" instead: >
3891
3892 :function! Bar()
3893 : try
3894 : call Foo()
3895 : catch /.*/
3896 : echo "Rethrow" v:exception
3897 : throw v:exception
3898 : endtry
3899 :endfunction
3900< *try-echoerr*
3901Note that this method cannot be used to "rethrow" Vim error or interrupt
3902exceptions, because it is not possible to fake Vim internal exceptions.
3903Trying so causes an error exception. You should throw your own exception
3904denoting the situation. If you want to cause a Vim error exception containing
3905the original error exception value, you can use the |:echoerr| command: >
3906
3907 :try
3908 : try
3909 : asdf
3910 : catch /.*/
3911 : echoerr v:exception
3912 : endtry
3913 :catch /.*/
3914 : echo v:exception
3915 :endtry
3916
3917This code displays
3918
Bram Moolenaar446cb832008-06-24 21:56:24 +00003919 Vim(echoerr):Vim:E492: Not an editor command: asdf ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920
3921
3922CLEANUP CODE *try-finally*
3923
3924Scripts often change global settings and restore them at their end. If the
3925user however interrupts the script by pressing CTRL-C, the settings remain in
Bram Moolenaar58b85342016-08-14 19:54:54 +02003926an inconsistent state. The same may happen to you in the development phase of
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927a script when an error occurs or you explicitly throw an exception without
3928catching it. You can solve these problems by using a try conditional with
3929a finally clause for restoring the settings. Its execution is guaranteed on
3930normal control flow, on error, on an explicit ":throw", and on interrupt.
3931(Note that errors and interrupts from inside the try conditional are converted
Bram Moolenaar58b85342016-08-14 19:54:54 +02003932to exceptions. When not caught, they terminate the script after the finally
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933clause has been executed.)
3934Example: >
3935
3936 :try
3937 : let s:saved_ts = &ts
3938 : set ts=17
3939 :
3940 : " Do the hard work here.
3941 :
3942 :finally
3943 : let &ts = s:saved_ts
3944 : unlet s:saved_ts
3945 :endtry
3946
3947This method should be used locally whenever a function or part of a script
3948changes global settings which need to be restored on failure or normal exit of
3949that function or script part.
3950
3951 *break-finally*
3952Cleanup code works also when the try block or a catch clause is left by
3953a ":continue", ":break", ":return", or ":finish".
3954 Example: >
3955
3956 :let first = 1
3957 :while 1
3958 : try
3959 : if first
3960 : echo "first"
3961 : let first = 0
3962 : continue
3963 : else
3964 : throw "second"
3965 : endif
3966 : catch /.*/
3967 : echo v:exception
3968 : break
3969 : finally
3970 : echo "cleanup"
3971 : endtry
3972 : echo "still in while"
3973 :endwhile
3974 :echo "end"
3975
3976This displays "first", "cleanup", "second", "cleanup", and "end". >
3977
3978 :function! Foo()
3979 : try
3980 : return 4711
3981 : finally
3982 : echo "cleanup\n"
3983 : endtry
3984 : echo "Foo still active"
3985 :endfunction
3986 :
3987 :echo Foo() "returned by Foo"
3988
3989This displays "cleanup" and "4711 returned by Foo". You don't need to add an
Bram Moolenaar58b85342016-08-14 19:54:54 +02003990extra ":return" in the finally clause. (Above all, this would override the
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991return value.)
3992
3993 *except-from-finally*
3994Using either of ":continue", ":break", ":return", ":finish", or ":throw" in
3995a finally clause is possible, but not recommended since it abandons the
3996cleanup actions for the try conditional. But, of course, interrupt and error
3997exceptions might get raised from a finally clause.
3998 Example where an error in the finally clause stops an interrupt from
3999working correctly: >
4000
4001 :try
4002 : try
4003 : echo "Press CTRL-C for interrupt"
4004 : while 1
4005 : endwhile
4006 : finally
4007 : unlet novar
4008 : endtry
4009 :catch /novar/
4010 :endtry
4011 :echo "Script still running"
4012 :sleep 1
4013
4014If you need to put commands that could fail into a finally clause, you should
4015think about catching or ignoring the errors in these commands, see
4016|catch-errors| and |ignore-errors|.
4017
4018
4019CATCHING ERRORS *catch-errors*
4020
4021If you want to catch specific errors, you just have to put the code to be
4022watched in a try block and add a catch clause for the error message. The
4023presence of the try conditional causes all errors to be converted to an
4024exception. No message is displayed and |v:errmsg| is not set then. To find
4025the right pattern for the ":catch" command, you have to know how the format of
4026the error exception is.
4027 Error exceptions have the following format: >
4028
4029 Vim({cmdname}):{errmsg}
4030or >
4031 Vim:{errmsg}
4032
4033{cmdname} is the name of the command that failed; the second form is used when
Bram Moolenaar58b85342016-08-14 19:54:54 +02004034the command name is not known. {errmsg} is the error message usually produced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035when the error occurs outside try conditionals. It always begins with
4036a capital "E", followed by a two or three-digit error number, a colon, and
4037a space.
4038
4039Examples:
4040
4041The command >
4042 :unlet novar
4043normally produces the error message >
4044 E108: No such variable: "novar"
4045which is converted inside try conditionals to an exception >
4046 Vim(unlet):E108: No such variable: "novar"
4047
4048The command >
4049 :dwim
4050normally produces the error message >
4051 E492: Not an editor command: dwim
4052which is converted inside try conditionals to an exception >
4053 Vim:E492: Not an editor command: dwim
4054
4055You can catch all ":unlet" errors by a >
4056 :catch /^Vim(unlet):/
4057or all errors for misspelled command names by a >
4058 :catch /^Vim:E492:/
4059
4060Some error messages may be produced by different commands: >
4061 :function nofunc
4062and >
4063 :delfunction nofunc
4064both produce the error message >
4065 E128: Function name must start with a capital: nofunc
4066which is converted inside try conditionals to an exception >
4067 Vim(function):E128: Function name must start with a capital: nofunc
4068or >
4069 Vim(delfunction):E128: Function name must start with a capital: nofunc
4070respectively. You can catch the error by its number independently on the
4071command that caused it if you use the following pattern: >
4072 :catch /^Vim(\a\+):E128:/
4073
4074Some commands like >
4075 :let x = novar
4076produce multiple error messages, here: >
4077 E121: Undefined variable: novar
4078 E15: Invalid expression: novar
4079Only the first is used for the exception value, since it is the most specific
4080one (see |except-several-errors|). So you can catch it by >
4081 :catch /^Vim(\a\+):E121:/
4082
4083You can catch all errors related to the name "nofunc" by >
4084 :catch /\<nofunc\>/
4085
4086You can catch all Vim errors in the ":write" and ":read" commands by >
4087 :catch /^Vim(\(write\|read\)):E\d\+:/
4088
4089You can catch all Vim errors by the pattern >
4090 :catch /^Vim\((\a\+)\)\=:E\d\+:/
4091<
4092 *catch-text*
4093NOTE: You should never catch the error message text itself: >
4094 :catch /No such variable/
Bram Moolenaar2b8388b2015-02-28 13:11:45 +01004095only works in the English locale, but not when the user has selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096a different language by the |:language| command. It is however helpful to
4097cite the message text in a comment: >
4098 :catch /^Vim(\a\+):E108:/ " No such variable
4099
4100
4101IGNORING ERRORS *ignore-errors*
4102
4103You can ignore errors in a specific Vim command by catching them locally: >
4104
4105 :try
4106 : write
4107 :catch
4108 :endtry
4109
4110But you are strongly recommended NOT to use this simple form, since it could
4111catch more than you want. With the ":write" command, some autocommands could
4112be executed and cause errors not related to writing, for instance: >
4113
4114 :au BufWritePre * unlet novar
4115
4116There could even be such errors you are not responsible for as a script
4117writer: a user of your script might have defined such autocommands. You would
4118then hide the error from the user.
4119 It is much better to use >
4120
4121 :try
4122 : write
4123 :catch /^Vim(write):/
4124 :endtry
4125
4126which only catches real write errors. So catch only what you'd like to ignore
4127intentionally.
4128
4129For a single command that does not cause execution of autocommands, you could
4130even suppress the conversion of errors to exceptions by the ":silent!"
4131command: >
4132 :silent! nunmap k
4133This works also when a try conditional is active.
4134
4135
4136CATCHING INTERRUPTS *catch-interrupt*
4137
4138When there are active try conditionals, an interrupt (CTRL-C) is converted to
Bram Moolenaar58b85342016-08-14 19:54:54 +02004139the exception "Vim:Interrupt". You can catch it like every exception. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140script is not terminated, then.
4141 Example: >
4142
4143 :function! TASK1()
4144 : sleep 10
4145 :endfunction
4146
4147 :function! TASK2()
4148 : sleep 20
4149 :endfunction
4150
4151 :while 1
4152 : let command = input("Type a command: ")
4153 : try
4154 : if command == ""
4155 : continue
4156 : elseif command == "END"
4157 : break
4158 : elseif command == "TASK1"
4159 : call TASK1()
4160 : elseif command == "TASK2"
4161 : call TASK2()
4162 : else
4163 : echo "\nIllegal command:" command
4164 : continue
4165 : endif
4166 : catch /^Vim:Interrupt$/
4167 : echo "\nCommand interrupted"
4168 : " Caught the interrupt. Continue with next prompt.
4169 : endtry
4170 :endwhile
4171
4172You can interrupt a task here by pressing CTRL-C; the script then asks for
Bram Moolenaar58b85342016-08-14 19:54:54 +02004173a new command. If you press CTRL-C at the prompt, the script is terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
4175For testing what happens when CTRL-C would be pressed on a specific line in
4176your script, use the debug mode and execute the |>quit| or |>interrupt|
4177command on that line. See |debug-scripts|.
4178
4179
4180CATCHING ALL *catch-all*
4181
4182The commands >
4183
4184 :catch /.*/
4185 :catch //
4186 :catch
4187
4188catch everything, error exceptions, interrupt exceptions and exceptions
4189explicitly thrown by the |:throw| command. This is useful at the top level of
4190a script in order to catch unexpected things.
4191 Example: >
4192
4193 :try
4194 :
4195 : " do the hard work here
4196 :
4197 :catch /MyException/
4198 :
4199 : " handle known problem
4200 :
4201 :catch /^Vim:Interrupt$/
4202 : echo "Script interrupted"
4203 :catch /.*/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004204 : echo "Internal error (" .. v:exception .. ")"
4205 : echo " - occurred at " .. v:throwpoint
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 :endtry
4207 :" end of script
4208
4209Note: Catching all might catch more things than you want. Thus, you are
4210strongly encouraged to catch only for problems that you can really handle by
4211specifying a pattern argument to the ":catch".
4212 Example: Catching all could make it nearly impossible to interrupt a script
4213by pressing CTRL-C: >
4214
4215 :while 1
4216 : try
4217 : sleep 1
4218 : catch
4219 : endtry
4220 :endwhile
4221
4222
4223EXCEPTIONS AND AUTOCOMMANDS *except-autocmd*
4224
4225Exceptions may be used during execution of autocommands. Example: >
4226
4227 :autocmd User x try
4228 :autocmd User x throw "Oops!"
4229 :autocmd User x catch
4230 :autocmd User x echo v:exception
4231 :autocmd User x endtry
4232 :autocmd User x throw "Arrgh!"
4233 :autocmd User x echo "Should not be displayed"
4234 :
4235 :try
4236 : doautocmd User x
4237 :catch
4238 : echo v:exception
4239 :endtry
4240
4241This displays "Oops!" and "Arrgh!".
4242
4243 *except-autocmd-Pre*
4244For some commands, autocommands get executed before the main action of the
4245command takes place. If an exception is thrown and not caught in the sequence
4246of autocommands, the sequence and the command that caused its execution are
4247abandoned and the exception is propagated to the caller of the command.
4248 Example: >
4249
4250 :autocmd BufWritePre * throw "FAIL"
4251 :autocmd BufWritePre * echo "Should not be displayed"
4252 :
4253 :try
4254 : write
4255 :catch
4256 : echo "Caught:" v:exception "from" v:throwpoint
4257 :endtry
4258
4259Here, the ":write" command does not write the file currently being edited (as
4260you can see by checking 'modified'), since the exception from the BufWritePre
4261autocommand abandons the ":write". The exception is then caught and the
4262script displays: >
4263
4264 Caught: FAIL from BufWrite Auto commands for "*"
4265<
4266 *except-autocmd-Post*
4267For some commands, autocommands get executed after the main action of the
4268command has taken place. If this main action fails and the command is inside
4269an active try conditional, the autocommands are skipped and an error exception
4270is thrown that can be caught by the caller of the command.
4271 Example: >
4272
4273 :autocmd BufWritePost * echo "File successfully written!"
4274 :
4275 :try
4276 : write /i/m/p/o/s/s/i/b/l/e
4277 :catch
4278 : echo v:exception
4279 :endtry
4280
4281This just displays: >
4282
4283 Vim(write):E212: Can't open file for writing (/i/m/p/o/s/s/i/b/l/e)
4284
4285If you really need to execute the autocommands even when the main action
4286fails, trigger the event from the catch clause.
4287 Example: >
4288
4289 :autocmd BufWritePre * set noreadonly
4290 :autocmd BufWritePost * set readonly
4291 :
4292 :try
4293 : write /i/m/p/o/s/s/i/b/l/e
4294 :catch
4295 : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e
4296 :endtry
4297<
4298You can also use ":silent!": >
4299
4300 :let x = "ok"
4301 :let v:errmsg = ""
4302 :autocmd BufWritePost * if v:errmsg != ""
4303 :autocmd BufWritePost * let x = "after fail"
4304 :autocmd BufWritePost * endif
4305 :try
4306 : silent! write /i/m/p/o/s/s/i/b/l/e
4307 :catch
4308 :endtry
4309 :echo x
4310
4311This displays "after fail".
4312
4313If the main action of the command does not fail, exceptions from the
4314autocommands will be catchable by the caller of the command: >
4315
4316 :autocmd BufWritePost * throw ":-("
4317 :autocmd BufWritePost * echo "Should not be displayed"
4318 :
4319 :try
4320 : write
4321 :catch
4322 : echo v:exception
4323 :endtry
4324<
4325 *except-autocmd-Cmd*
4326For some commands, the normal action can be replaced by a sequence of
4327autocommands. Exceptions from that sequence will be catchable by the caller
4328of the command.
4329 Example: For the ":write" command, the caller cannot know whether the file
Bram Moolenaar58b85342016-08-14 19:54:54 +02004330had actually been written when the exception occurred. You need to tell it in
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331some way. >
4332
4333 :if !exists("cnt")
4334 : let cnt = 0
4335 :
4336 : autocmd BufWriteCmd * if &modified
4337 : autocmd BufWriteCmd * let cnt = cnt + 1
4338 : autocmd BufWriteCmd * if cnt % 3 == 2
4339 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4340 : autocmd BufWriteCmd * endif
4341 : autocmd BufWriteCmd * write | set nomodified
4342 : autocmd BufWriteCmd * if cnt % 3 == 0
4343 : autocmd BufWriteCmd * throw "BufWriteCmdError"
4344 : autocmd BufWriteCmd * endif
4345 : autocmd BufWriteCmd * echo "File successfully written!"
4346 : autocmd BufWriteCmd * endif
4347 :endif
4348 :
4349 :try
4350 : write
4351 :catch /^BufWriteCmdError$/
4352 : if &modified
4353 : echo "Error on writing (file contents not changed)"
4354 : else
4355 : echo "Error after writing"
4356 : endif
4357 :catch /^Vim(write):/
4358 : echo "Error on writing"
4359 :endtry
4360
4361When this script is sourced several times after making changes, it displays
4362first >
4363 File successfully written!
4364then >
4365 Error on writing (file contents not changed)
4366then >
4367 Error after writing
4368etc.
4369
4370 *except-autocmd-ill*
4371You cannot spread a try conditional over autocommands for different events.
4372The following code is ill-formed: >
4373
4374 :autocmd BufWritePre * try
4375 :
4376 :autocmd BufWritePost * catch
4377 :autocmd BufWritePost * echo v:exception
4378 :autocmd BufWritePost * endtry
4379 :
4380 :write
4381
4382
4383EXCEPTION HIERARCHIES AND PARAMETERIZED EXCEPTIONS *except-hier-param*
4384
4385Some programming languages allow to use hierarchies of exception classes or to
4386pass additional information with the object of an exception class. You can do
4387similar things in Vim.
4388 In order to throw an exception from a hierarchy, just throw the complete
4389class name with the components separated by a colon, for instance throw the
4390string "EXCEPT:MATHERR:OVERFLOW" for an overflow in a mathematical library.
4391 When you want to pass additional information with your exception class, add
4392it in parentheses, for instance throw the string "EXCEPT:IO:WRITEERR(myfile)"
4393for an error when writing "myfile".
4394 With the appropriate patterns in the ":catch" command, you can catch for
4395base classes or derived classes of your hierarchy. Additional information in
4396parentheses can be cut out from |v:exception| with the ":substitute" command.
4397 Example: >
4398
4399 :function! CheckRange(a, func)
4400 : if a:a < 0
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004401 : throw "EXCEPT:MATHERR:RANGE(" .. a:func .. ")"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 : endif
4403 :endfunction
4404 :
4405 :function! Add(a, b)
4406 : call CheckRange(a:a, "Add")
4407 : call CheckRange(a:b, "Add")
4408 : let c = a:a + a:b
4409 : if c < 0
4410 : throw "EXCEPT:MATHERR:OVERFLOW"
4411 : endif
4412 : return c
4413 :endfunction
4414 :
4415 :function! Div(a, b)
4416 : call CheckRange(a:a, "Div")
4417 : call CheckRange(a:b, "Div")
4418 : if (a:b == 0)
4419 : throw "EXCEPT:MATHERR:ZERODIV"
4420 : endif
4421 : return a:a / a:b
4422 :endfunction
4423 :
4424 :function! Write(file)
4425 : try
Bram Moolenaar446cb832008-06-24 21:56:24 +00004426 : execute "write" fnameescape(a:file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 : catch /^Vim(write):/
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004428 : throw "EXCEPT:IO(" .. getcwd() .. ", " .. a:file .. "):WRITEERR"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 : endtry
4430 :endfunction
4431 :
4432 :try
4433 :
Bram Moolenaar75ab5902022-04-18 15:36:40 +01004434 : " something with arithmetic and I/O
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 :
4436 :catch /^EXCEPT:MATHERR:RANGE/
4437 : let function = substitute(v:exception, '.*(\(\a\+\)).*', '\1', "")
4438 : echo "Range error in" function
4439 :
4440 :catch /^EXCEPT:MATHERR/ " catches OVERFLOW and ZERODIV
4441 : echo "Math error"
4442 :
4443 :catch /^EXCEPT:IO/
4444 : let dir = substitute(v:exception, '.*(\(.\+\),\s*.\+).*', '\1', "")
4445 : let file = substitute(v:exception, '.*(.\+,\s*\(.\+\)).*', '\1', "")
4446 : if file !~ '^/'
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004447 : let file = dir .. "/" .. file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 : endif
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004449 : echo 'I/O error for "' .. file .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 :
4451 :catch /^EXCEPT/
4452 : echo "Unspecified error"
4453 :
4454 :endtry
4455
4456The exceptions raised by Vim itself (on error or when pressing CTRL-C) use
4457a flat hierarchy: they are all in the "Vim" class. You cannot throw yourself
4458exceptions with the "Vim" prefix; they are reserved for Vim.
4459 Vim error exceptions are parameterized with the name of the command that
4460failed, if known. See |catch-errors|.
4461
4462
4463PECULIARITIES
4464 *except-compat*
4465The exception handling concept requires that the command sequence causing the
4466exception is aborted immediately and control is transferred to finally clauses
4467and/or a catch clause.
4468
4469In the Vim script language there are cases where scripts and functions
4470continue after an error: in functions without the "abort" flag or in a command
4471after ":silent!", control flow goes to the following line, and outside
4472functions, control flow goes to the line following the outermost ":endwhile"
4473or ":endif". On the other hand, errors should be catchable as exceptions
4474(thus, requiring the immediate abortion).
4475
4476This problem has been solved by converting errors to exceptions and using
4477immediate abortion (if not suppressed by ":silent!") only when a try
Bram Moolenaar58b85342016-08-14 19:54:54 +02004478conditional is active. This is no restriction since an (error) exception can
4479be caught only from an active try conditional. If you want an immediate
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480termination without catching the error, just use a try conditional without
4481catch clause. (You can cause cleanup code being executed before termination
4482by specifying a finally clause.)
4483
4484When no try conditional is active, the usual abortion and continuation
4485behavior is used instead of immediate abortion. This ensures compatibility of
4486scripts written for Vim 6.1 and earlier.
4487
4488However, when sourcing an existing script that does not use exception handling
4489commands (or when calling one of its functions) from inside an active try
4490conditional of a new script, you might change the control flow of the existing
4491script on error. You get the immediate abortion on error and can catch the
4492error in the new script. If however the sourced script suppresses error
4493messages by using the ":silent!" command (checking for errors by testing
Bram Moolenaar58b85342016-08-14 19:54:54 +02004494|v:errmsg| if appropriate), its execution path is not changed. The error is
4495not converted to an exception. (See |:silent|.) So the only remaining cause
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496where this happens is for scripts that don't care about errors and produce
4497error messages. You probably won't want to use such code from your new
4498scripts.
4499
4500 *except-syntax-err*
4501Syntax errors in the exception handling commands are never caught by any of
4502the ":catch" commands of the try conditional they belong to. Its finally
4503clauses, however, is executed.
4504 Example: >
4505
4506 :try
4507 : try
4508 : throw 4711
4509 : catch /\(/
4510 : echo "in catch with syntax error"
4511 : catch
4512 : echo "inner catch-all"
4513 : finally
4514 : echo "inner finally"
4515 : endtry
4516 :catch
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004517 : echo 'outer catch-all caught "' .. v:exception .. '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 : finally
4519 : echo "outer finally"
4520 :endtry
4521
4522This displays: >
4523 inner finally
4524 outer catch-all caught "Vim(catch):E54: Unmatched \("
4525 outer finally
4526The original exception is discarded and an error exception is raised, instead.
4527
4528 *except-single-line*
4529The ":try", ":catch", ":finally", and ":endtry" commands can be put on
4530a single line, but then syntax errors may make it difficult to recognize the
4531"catch" line, thus you better avoid this.
4532 Example: >
4533 :try | unlet! foo # | catch | endtry
4534raises an error exception for the trailing characters after the ":unlet!"
4535argument, but does not see the ":catch" and ":endtry" commands, so that the
4536error exception is discarded and the "E488: Trailing characters" message gets
4537displayed.
4538
4539 *except-several-errors*
4540When several errors appear in a single command, the first error message is
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +02004541usually the most specific one and therefore converted to the error exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 Example: >
4543 echo novar
4544causes >
4545 E121: Undefined variable: novar
4546 E15: Invalid expression: novar
4547The value of the error exception inside try conditionals is: >
4548 Vim(echo):E121: Undefined variable: novar
4549< *except-syntax-error*
4550But when a syntax error is detected after a normal error in the same command,
4551the syntax error is used for the exception being thrown.
4552 Example: >
4553 unlet novar #
4554causes >
4555 E108: No such variable: "novar"
4556 E488: Trailing characters
4557The value of the error exception inside try conditionals is: >
4558 Vim(unlet):E488: Trailing characters
4559This is done because the syntax error might change the execution path in a way
4560not intended by the user. Example: >
4561 try
4562 try | unlet novar # | catch | echo v:exception | endtry
4563 catch /.*/
4564 echo "outer catch:" v:exception
4565 endtry
4566This displays "outer catch: Vim(unlet):E488: Trailing characters", and then
4567a "E600: Missing :endtry" error message is given, see |except-single-line|.
4568
4569==============================================================================
45709. Examples *eval-examples*
4571
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004572Printing in Binary ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573>
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01004574 :" The function Nr2Bin() returns the binary string representation of a number.
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004575 :func Nr2Bin(nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 : let n = a:nr
4577 : let r = ""
4578 : while n
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004579 : let r = '01'[n % 2] .. r
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004580 : let n = n / 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 : endwhile
4582 : return r
4583 :endfunc
4584
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004585 :" The function String2Bin() converts each character in a string to a
4586 :" binary string, separated with dashes.
4587 :func String2Bin(str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 : let out = ''
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004589 : for ix in range(strlen(a:str))
Bram Moolenaarc51cf032022-02-26 12:25:45 +00004590 : let out = out .. '-' .. Nr2Bin(char2nr(a:str[ix]))
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004591 : endfor
4592 : return out[1:]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 :endfunc
4594
4595Example of its use: >
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004596 :echo Nr2Bin(32)
4597result: "100000" >
4598 :echo String2Bin("32")
4599result: "110011-110010"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600
4601
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004602Sorting lines ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004604This example sorts lines with a specific compare function. >
4605
4606 :func SortBuffer()
4607 : let lines = getline(1, '$')
4608 : call sort(lines, function("Strcmp"))
4609 : call setline(1, lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 :endfunction
4611
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004612As a one-liner: >
4613 :call setline(1, sort(getline(1, '$'), function("Strcmp")))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004616scanf() replacement ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 *sscanf*
4618There is no sscanf() function in Vim. If you need to extract parts from a
4619line, you can use matchstr() and substitute() to do it. This example shows
4620how to get the file name, line number and column number out of a line like
4621"foobar.txt, 123, 45". >
4622 :" Set up the match bit
4623 :let mx='\(\f\+\),\s*\(\d\+\),\s*\(\d\+\)'
4624 :"get the part matching the whole expression
4625 :let l = matchstr(line, mx)
4626 :"get each item out of the match
4627 :let file = substitute(l, mx, '\1', '')
4628 :let lnum = substitute(l, mx, '\2', '')
4629 :let col = substitute(l, mx, '\3', '')
4630
4631The input is in the variable "line", the results in the variables "file",
4632"lnum" and "col". (idea from Michael Geddes)
4633
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004634
4635getting the scriptnames in a Dictionary ~
4636 *scriptnames-dictionary*
Bram Moolenaardd60c362023-02-27 15:49:53 +00004637The `:scriptnames` command can be used to get a list of all script files that
4638have been sourced. There is also the `getscriptinfo()` function, but the
4639information returned is not exactly the same. In case you need to manipulate
Bram Moolenaar71badf92023-04-22 22:40:14 +01004640the list, this code can be used as a base: >
Bram Moolenaarb0d45e72017-11-05 18:19:24 +01004641
Bram Moolenaar71badf92023-04-22 22:40:14 +01004642 # Create or update scripts dictionary, indexed by SNR, and return it.
4643 def Scripts(scripts: dict<string> = {}): dict<string>
4644 for info in getscriptinfo()
4645 if scripts->has_key(info.sid)
4646 continue
4647 endif
4648 scripts[info.sid] = info.name
4649 endfor
4650 return scripts
4651 enddef
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004652
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200465410. Vim script versions *vimscript-version* *vimscript-versions*
Bram Moolenaar911ead12019-04-21 00:03:35 +02004655 *scriptversion*
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004656Over time many features have been added to Vim script. This includes Ex
4657commands, functions, variable types, etc. Each individual feature can be
4658checked with the |has()| and |exists()| functions.
4659
4660Sometimes old syntax of functionality gets in the way of making Vim better.
4661When support is taken away this will break older Vim scripts. To make this
4662explicit the |:scriptversion| command can be used. When a Vim script is not
4663compatible with older versions of Vim this will give an explicit error,
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004664instead of failing in mysterious ways.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004665
Bram Moolenaara2baa732022-02-04 16:09:54 +00004666When using a legacy function, defined with `:function`, in |Vim9| script then
4667scriptversion 4 is used.
4668
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004669 *scriptversion-1* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004670 :scriptversion 1
4671< This is the original Vim script, same as not using a |:scriptversion|
4672 command. Can be used to go back to old syntax for a range of lines.
4673 Test for support with: >
4674 has('vimscript-1')
4675
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004676< *scriptversion-2* >
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004677 :scriptversion 2
Bram Moolenaar68e65602019-05-26 21:33:31 +02004678< String concatenation with "." is not supported, use ".." instead.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004679 This avoids the ambiguity using "." for Dict member access and
4680 floating point numbers. Now ".5" means the number 0.5.
Bram Moolenaar3ff5f0f2019-06-10 13:11:22 +02004681
4682 *scriptversion-3* >
Bram Moolenaar911ead12019-04-21 00:03:35 +02004683 :scriptversion 3
4684< All |vim-variable|s must be prefixed by "v:". E.g. "version" doesn't
4685 work as |v:version| anymore, it can be used as a normal variable.
4686 Same for some obvious names as "count" and others.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004687
Bram Moolenaar911ead12019-04-21 00:03:35 +02004688 Test for support with: >
4689 has('vimscript-3')
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004690<
4691 *scriptversion-4* >
4692 :scriptversion 4
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004693< Numbers with a leading zero are not recognized as octal. "0o" or "0O"
4694 is still recognized as octal. With the
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004695 previous version you get: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004696 echo 017 " displays 15 (octal)
4697 echo 0o17 " displays 15 (octal)
4698 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004699< with script version 4: >
Bram Moolenaarc17e66c2020-06-02 21:38:22 +02004700 echo 017 " displays 17 (decimal)
4701 echo 0o17 " displays 15 (octal)
4702 echo 018 " displays 18 (decimal)
Bram Moolenaar60a8de22019-09-15 14:33:22 +02004703< Also, it is possible to use single quotes inside numbers to make them
4704 easier to read: >
4705 echo 1'000'000
4706< The quotes must be surrounded by digits.
4707
4708 Test for support with: >
4709 has('vimscript-4')
Bram Moolenaar558ca4a2019-04-04 18:15:38 +02004710
4711==============================================================================
471211. No +eval feature *no-eval-feature*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713
4714When the |+eval| feature was disabled at compile time, none of the expression
4715evaluation commands are available. To prevent this from causing Vim scripts
4716to generate all kinds of errors, the ":if" and ":endif" commands are still
4717recognized, though the argument of the ":if" and everything between the ":if"
4718and the matching ":endif" is ignored. Nesting of ":if" blocks is allowed, but
4719only if the commands are at the start of the line. The ":else" command is not
4720recognized.
4721
4722Example of how to avoid executing commands when the |+eval| feature is
4723missing: >
4724
4725 :if 1
4726 : echo "Expression evaluation is compiled in"
4727 :else
4728 : echo "You will _never_ see this message"
4729 :endif
4730
Bram Moolenaar773a97c2019-06-06 20:39:55 +02004731To execute a command only when the |+eval| feature is disabled can be done in
4732two ways. The simplest is to exit the script (or Vim) prematurely: >
4733 if 1
4734 echo "commands executed with +eval"
4735 finish
4736 endif
4737 args " command executed without +eval
4738
4739If you do not want to abort loading the script you can use a trick, as this
4740example shows: >
Bram Moolenaar45d2cca2017-04-30 16:36:05 +02004741
4742 silent! while 0
4743 set history=111
4744 silent! endwhile
4745
4746When the |+eval| feature is available the command is skipped because of the
4747"while 0". Without the |+eval| feature the "while 0" is an error, which is
4748silently ignored, and the command is executed.
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +02004749
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750==============================================================================
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000475112. The sandbox *eval-sandbox* *sandbox*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752
Bram Moolenaar368373e2010-07-19 20:46:22 +02004753The 'foldexpr', 'formatexpr', 'includeexpr', 'indentexpr', 'statusline' and
4754'foldtext' options may be evaluated in a sandbox. This means that you are
4755protected from these expressions having nasty side effects. This gives some
4756safety for when these options are set from a modeline. It is also used when
4757the command from a tags file is executed and for CTRL-R = in the command line.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004758The sandbox is also used for the |:sandbox| command.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00004759 *E48*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760These items are not allowed in the sandbox:
4761 - changing the buffer text
Bram Moolenaarb477af22018-07-15 20:20:18 +02004762 - defining or changing mapping, autocommands, user commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 - setting certain options (see |option-summary|)
Bram Moolenaaref2f6562007-05-06 13:32:59 +00004764 - setting certain v: variables (see |v:var|) *E794*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765 - executing a shell command
4766 - reading or writing a file
4767 - jumping to another buffer or editing a file
Bram Moolenaar4770d092006-01-12 23:22:24 +00004768 - executing Python, Perl, etc. commands
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004769This is not guaranteed 100% secure, but it should block most attacks.
4770
4771 *:san* *:sandbox*
Bram Moolenaar045e82d2005-07-08 22:25:33 +00004772:san[dbox] {cmd} Execute {cmd} in the sandbox. Useful to evaluate an
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004773 option that may have been set from a modeline, e.g.
4774 'foldexpr'.
4775
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004776 *sandbox-option*
4777A few options contain an expression. When this expression is evaluated it may
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00004778have to be done in the sandbox to avoid a security risk. But the sandbox is
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004779restrictive, thus this only happens when the option was set from an insecure
4780location. Insecure in this context are:
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004781- sourcing a .vimrc or .exrc in the current directory
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004782- while executing in the sandbox
4783- value coming from a modeline
Bram Moolenaarb477af22018-07-15 20:20:18 +02004784- executing a function that was defined in the sandbox
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004785
4786Note that when in the sandbox and saving an option value and restoring it, the
4787option will still be marked as it was set in the sandbox.
4788
4789==============================================================================
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200479013. Textlock *textlock*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004791
4792In a few situations it is not allowed to change the text in the buffer, jump
4793to another window and some other things that might confuse or break what Vim
4794is currently doing. This mostly applies to things that happen when Vim is
Bram Moolenaar58b85342016-08-14 19:54:54 +02004795actually doing something else. For example, evaluating the 'balloonexpr' may
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00004796happen any moment the mouse cursor is resting at some position.
4797
4798This is not allowed when the textlock is active:
4799 - changing the buffer text
4800 - jumping to another buffer or window
4801 - editing another file
4802 - closing a window or quitting Vim
4803 - etc.
4804
Christian Brabandtda4e4332023-11-05 10:45:12 +01004805==============================================================================
480614. Vim script library *vim-script-library*
4807
4808Vim comes bundled with a Vim script library, that can be used by runtime,
4809script authors. Currently, it only includes very few functions, but it may
4810grow over time.
4811
h_east596a9f22023-11-21 21:24:23 +09004812The functions are available as |Vim9-script| as well as using legacy Vim
Christian Brabandtda4e4332023-11-05 10:45:12 +01004813script (to be used for non Vim 9.0 versions and Neovim).
4814
4815 *dist#vim* *dist#vim9*
h_east596a9f22023-11-21 21:24:23 +09004816The functions make use of the autoloaded prefix "dist#vim" (for legacy Vim
4817script and Neovim) and "dist#vim9" for Vim9 script.
Christian Brabandtda4e4332023-11-05 10:45:12 +01004818
4819The following functions are available:
4820
4821dist#vim#IsSafeExecutable(filetype, executable) ~
4822dist#vim9#IsSafeExecutable(filetype:string, executable:string): bool ~
4823
4824This function takes a filetype and an executable and checks whether it is safe
4825to execute the given executable. For security reasons users may not want to
4826have Vim execute random executables or may have forbidden to do so for
4827specific filetypes by setting the "<filetype>_exec" variable (|plugin_exec|).
4828
4829It returns |true| or |false| to indicate whether the plugin should run the given
4830exectuable. It takes the following arguments:
4831
4832 argument type ~
4833
4834 filetype string
4835 executable string
4836
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837
Bram Moolenaar91f84f62018-07-29 15:07:52 +02004838 vim:tw=78:ts=8:noet:ft=help:norl: