blob: 11f035b4e6af6c5d3c6bda687e9e54882f403b68 [file] [log] [blame]
Bram Moolenaar2d8ed022022-05-21 13:08:16 +01001*usr_41.txt* For Vim version 8.2. Last change: 2022 May 21
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3 VIM USER MANUAL - by Bram Moolenaar
4
5 Write a Vim script
6
7
8The Vim script language is used for the startup vimrc file, syntax files, and
9many other things. This chapter explains the items that can be used in a Vim
10script. There are a lot of them, thus this is a long chapter.
11
12|41.1| Introduction
13|41.2| Variables
14|41.3| Expressions
15|41.4| Conditionals
16|41.5| Executing an expression
17|41.6| Using functions
18|41.7| Defining a function
Bram Moolenaar7c626922005-02-07 22:01:03 +000019|41.8| Lists and Dictionaries
20|41.9| Exceptions
21|41.10| Various remarks
Bram Moolenaar071d4272004-06-13 20:20:40 +000022
23 Next chapter: |usr_42.txt| Add new menus
24 Previous chapter: |usr_40.txt| Make new commands
25Table of contents: |usr_toc.txt|
26
27==============================================================================
Bram Moolenaar9d75c832005-01-25 21:57:23 +000028*41.1* Introduction *vim-script-intro* *script*
Bram Moolenaar071d4272004-06-13 20:20:40 +000029
30Your first experience with Vim scripts is the vimrc file. Vim reads it when
31it starts up and executes the commands. You can set options to values you
32prefer. And you can use any colon command in it (commands that start with a
33":"; these are sometimes referred to as Ex commands or command-line commands).
Bram Moolenaar04fb9162021-12-30 20:24:12 +000034
35Syntax files are also Vim scripts. As are files that set options for a
Bram Moolenaar071d4272004-06-13 20:20:40 +000036specific file type. A complicated macro can be defined by a separate Vim
37script file. You can think of other uses yourself.
38
Bram Moolenaar04fb9162021-12-30 20:24:12 +000039Vim script comes in two flavors: legacy and |Vim9|. Since this help file is
40for new users, we'll teach you the newer and more convenient |Vim9| syntax.
Bram Moolenaar30ab04e2022-05-14 13:33:50 +010041While legacy script is particular for Vim, |Vim9| script looks more like other
42languages, such as JavaScript and TypeScript.
Bram Moolenaar04fb9162021-12-30 20:24:12 +000043
44To try out Vim script the best way is to edit a script file and source it.
45Basically: >
46 :edit test.vim
47 [insert the script lines you want]
48 :w
49 :source %
50
Bram Moolenaar071d4272004-06-13 20:20:40 +000051Let's start with a simple example: >
52
Bram Moolenaar04fb9162021-12-30 20:24:12 +000053 vim9script
54 var i = 1
55 while i < 5
56 echo "count is" i
57 i += 1
58 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +000059<
Bram Moolenaar7c626922005-02-07 22:01:03 +000060The output of the example code is:
61
62 count is 1 ~
63 count is 2 ~
64 count is 3 ~
65 count is 4 ~
66
Bram Moolenaar04fb9162021-12-30 20:24:12 +000067In the first line the `vim9script` command makes clear this is a new, |Vim9|
68script file. That matters for how the rest of the file is used.
69
70The `var i = 1` command declares the "i" variable and initializes it. The
Bram Moolenaar7c626922005-02-07 22:01:03 +000071generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000072
Bram Moolenaar04fb9162021-12-30 20:24:12 +000073 var {name} = {expression}
Bram Moolenaar071d4272004-06-13 20:20:40 +000074
75In this case the variable name is "i" and the expression is a simple value,
76the number one.
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
Bram Moolenaar04fb9162021-12-30 20:24:12 +000078The `while` command starts a loop. The generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000079
Bram Moolenaar04fb9162021-12-30 20:24:12 +000080 while {condition}
81 {statements}
82 endwhile
83
84The statements until the matching `endwhile` are executed for as long as the
Bram Moolenaar071d4272004-06-13 20:20:40 +000085condition is true. The condition used here is the expression "i < 5". This
86is true when the variable i is smaller than five.
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 Note:
88 If you happen to write a while loop that keeps on running, you can
89 interrupt it by pressing CTRL-C (CTRL-Break on MS-Windows).
90
Bram Moolenaar04fb9162021-12-30 20:24:12 +000091The `echo` command prints its arguments. In this case the string "count is"
Bram Moolenaar7c626922005-02-07 22:01:03 +000092and the value of the variable i. Since i is one, this will print:
93
94 count is 1 ~
95
Bram Moolenaar04fb9162021-12-30 20:24:12 +000096Then there is the `i += 1` command. This does the same thing as "i = i + 1",
97it adds one to the variable i and assigns the new value to the same variable.
Bram Moolenaar7c626922005-02-07 22:01:03 +000098
99The example was given to explain the commands, but would you really want to
Bram Moolenaar214641f2017-03-05 17:04:09 +0100100make such a loop, it can be written much more compact: >
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000101
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000102 for i in range(1, 4)
103 echo "count is" i
104 endfor
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000105
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000106We won't explain how `for` and `range()` work until later. Follow the links
Bram Moolenaar7c626922005-02-07 22:01:03 +0000107if you are impatient.
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000108
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200110FOUR KINDS OF NUMBERS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200112Numbers can be decimal, hexadecimal, octal or binary.
113
114A hexadecimal number starts with "0x" or "0X". For example "0x1f" is decimal
11531.
116
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000117An octal number starts with "0o", "0O". "0o17" is decimal 15.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200118
119A binary number starts with "0b" or "0B". For example "0b101" is decimal 5.
120
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000121A decimal number is just digits. Careful: In legacy script don't put a zero
122before a decimal number, it will be interpreted as an octal number!
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200123
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000124The `echo` command evaluates its argument and always prints decimal numbers.
125Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000127 echo 0x7f 0o36
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128< 127 30 ~
129
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200130A number is made negative with a minus sign. This also works for hexadecimal,
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000131octal and binary numbers: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000133 echo -0x7f
134< -127 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000136A minus sign is also used for subtraction. This can sometimes lead to
137confusion. If we put a minus sign before both numbers we get an error: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000139 echo -0x7f -0o36
140< E1004: White space required before and after '-' at "-0o36" ~
141
142Note: if you are not using a |Vim9| script to try out these commands but type
143them directly, they will be executed as legacy script. Then the echo command
144sees the second minus sign as subtraction. To get the error, prefix the
145command with `vim9cmd`: >
146
147 vim9cmd echo -0x7f -0o36
148< E1004: White space required before and after '-' at "-0o36" ~
149
150White space in an expression is often required to make sure it is easy to read
151and avoid errors. Such as thinking that the "-0o36" above makes the number
152negative, while it is actually seen as a subtraction.
153
154To actually have the minus sign be used for negation, you can put the second
Bram Moolenaar944697a2022-02-20 19:48:20 +0000155expression in parentheses: >
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000156
157 echo -0x7f (-0o36)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158
159==============================================================================
160*41.2* Variables
161
162A variable name consists of ASCII letters, digits and the underscore. It
163cannot start with a digit. Valid variable names are:
164
165 counter
166 _aap3
167 very_long_variable_name_with_underscores
168 FuncLength
169 LENGTH
170
171Invalid names are "foo+bar" and "6var".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000172
173Some variables are global. To see a list of currently defined global
174variables type this command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175
176 :let
177
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000178You can use global variables everywhere. However, it is easy to use the same
179name in two unrelated scripts. Therefore variables declared in a script are
180local to that script. For example, if you have this in "script1.vim": >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000182 vim9script
183 var counter = 5
184 echo counter
185< 5 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000187And you try to use the variable in "script2.vim": >
188
189 vim9script
190 echo counter
191< E121: Undefined variable: counter ~
192
193Using a script-local variable means you can be sure that it is only changed in
194that script and not elsewhere.
195
196If you do want to share variables between scripts, use the "g:" prefix and
197assign the value directly, do not use `var`. Thus in "script1.vim": >
198
199 vim9script
200 g:counter = 5
201 echo g:counter
202< 5 ~
203
204And then in "script2.vim": >
205
206 vim9script
207 echo g:counter
208< 5 ~
209
210More about script-local variables here: |script-variable|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211
212There are more kinds of variables, see |internal-variables|. The most often
213used ones are:
214
215 b:name variable local to a buffer
216 w:name variable local to a window
217 g:name global variable (also in a function)
218 v:name variable predefined by Vim
219
220
221DELETING VARIABLES
222
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000223Variables take up memory and show up in the output of the `let` command. To
224delete a global variable use the `unlet` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000226 unlet g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000228This deletes the global variable "g:counter" to free up the memory it uses.
229If you are not sure if the variable exists, and don't want an error message
230when it doesn't, append !: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000232 unlet! g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000234You cannot `unlet` script-local variables in |Vim9| script. You can in legacy
235script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000237When a script finishes, the local variables declared there will not be
238deleted. Functions defined in the script can use them. Example:
239>
240 vim9script
241 var counter = 0
242 def g:GetCount(): number
243 s:counter += 1
244 return s:counter
245 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000247Every time you call the function it will return the next count: >
248 :echo g:GetCount()
249< 1 ~
250>
251 :echo g:GetCount()
252< 2 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000254If you are worried a script-local variable is consuming too much
255memory, set it to an empty value after you no longer need it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000257Note: below we'll leave out the `vim9script` line, so we can concentrate on
258the relevant commands, but you'll still need to put it at the top of your
259script file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260
261
262STRING VARIABLES AND CONSTANTS
263
264So far only numbers were used for the variable value. Strings can be used as
Bram Moolenaar7c626922005-02-07 22:01:03 +0000265well. Numbers and strings are the basic types of variables that Vim supports.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000266Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000268 var name = "Peter"
269 echo name
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000270< Peter ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000272Every variable has a type. Very often, as in this example, the type is
273defined by assigning a value. This is called type inference. If you do not
274want to give the variable a value yet, you need to specify the type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000276 var name: string
277 var age: number
278 ...
279 name = "Peter"
280 age = 42
281
282If you make a mistake and try to assign the wrong type of value you'll get an
283error: >
284
285 age = "Peter"
286< E1012: Type mismatch; expected number but got string ~
287
288More about types in |41.8|.
289
290To assign a string value to a variable, you need to use a string constant.
291There are two types of these. First the string in double quotes, as we used
292already. If you want to include a double quote inside the string, put a
293backslash in front of it: >
294
295 var name = "he is \"Peter\""
296 echo name
297< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
299To avoid the need for a backslash, you can use a string in single quotes: >
300
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000301 var name = 'he is "Peter"'
302 echo name
303< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304
Bram Moolenaar7c626922005-02-07 22:01:03 +0000305Inside a single-quote string all the characters are as they are. Only the
306single quote itself is special: you need to use two to get one. A backslash
307is taken literally, thus you can't use it to change the meaning of the
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000308character after it: >
309
310 var name = 'P\e''ter'''
311 echo name
312< P\e'ter' ~
313
314In double-quote strings it is possible to use special characters. Here are a
315few useful ones:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316
317 \t <Tab>
318 \n <NL>, line break
319 \r <CR>, <Enter>
320 \e <Esc>
321 \b <BS>, backspace
322 \" "
323 \\ \, backslash
324 \<Esc> <Esc>
325 \<C-W> CTRL-W
326
327The last two are just examples. The "\<name>" form can be used to include
328the special key "name".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000329
330See |expr-quote| for the full list of special items in a string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331
332==============================================================================
333*41.3* Expressions
334
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000335Vim has a fairly standard way to handle expressions. You can read the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336definition here: |expression-syntax|. Here we will show the most common
337items.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000338
339The numbers, strings and variables mentioned above are expressions by
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340themselves. Thus everywhere an expression is expected, you can use a number,
341string or variable. Other basic items in an expression are:
342
343 $NAME environment variable
344 &name option
345 @r register
346
347Examples: >
348
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000349 echo "The value of 'tabstop' is" &ts
350 echo "Your home directory is" $HOME
351 if @a == 'text'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000353The &name form can also be used to set an option value, do something and
354restore the old value. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000356 var save_ic = &ic
357 set noic
358 s/The Start/The Beginning/
359 &ic = save_ic
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360
361This makes sure the "The Start" pattern is used with the 'ignorecase' option
Bram Moolenaar7c626922005-02-07 22:01:03 +0000362off. Still, it keeps the value that the user had set. (Another way to do
363this would be to add "\C" to the pattern, see |/\C|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364
365
366MATHEMATICS
367
368It becomes more interesting if we combine these basic items. Let's start with
369mathematics on numbers:
370
371 a + b add
372 a - b subtract
373 a * b multiply
374 a / b divide
375 a % b modulo
376
377The usual precedence is used. Example: >
378
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000379 echo 10 + 5 * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380< 20 ~
381
Bram Moolenaar00654022011-02-25 14:42:19 +0100382Grouping is done with parentheses. No surprises here. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000384 echo (10 + 5) * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385< 30 ~
386
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200387Strings can be concatenated with ".." (see |expr6|). Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000389 echo "foo" .. "bar"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390< foobar ~
391
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000392When the "echo" command gets multiple arguments, it separates them with a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393space. In the example the argument is a single expression, thus no space is
394inserted.
395
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000396Borrowed from the C language is the conditional expression: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397
398 a ? b : c
399
400If "a" evaluates to true "b" is used, otherwise "c" is used. Example: >
401
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000402 var nr = 4
403 echo nr > 5 ? "nr is big" : "nr is small"
404< nr is small ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405
406The three parts of the constructs are always evaluated first, thus you could
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000407see it works as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408
409 (a) ? (b) : (c)
410
411==============================================================================
412*41.4* Conditionals
413
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000414The `if` commands executes the following statements, until the matching
415`endif`, only when a condition is met. The generic form is:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000417 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000419 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000421Only when the expression {condition} evaluates to true or one will the
422{statements} be executed. If they are not executed they must still be valid
423commands. If they contain garbage, Vim won't be able to find the matching
424`endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000426You can also use `else`. The generic form for this is:
427
428 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000430 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000432 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000434The second {statements} block is only executed if the first one isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000436Finally, there is `elseif`
437
438 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000440 elseif {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000442 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000444This works just like using `else` and then `if`, but without the need for an
445extra `endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000447A useful example for your vimrc file is checking the 'term' option and doing
448something depending upon its value: >
449
450 if &term == "xterm"
451 # Do stuff for xterm
452 elseif &term == "vt100"
453 # Do stuff for a vt100 terminal
454 else
455 # Do something for other terminals
456 endif
457
458This uses "#" to start a comment, more about that later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459
460
461LOGIC OPERATIONS
462
463We already used some of them in the examples. These are the most often used
464ones:
465
466 a == b equal to
467 a != b not equal to
468 a > b greater than
469 a >= b greater than or equal to
470 a < b less than
471 a <= b less than or equal to
472
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000473The result is true if the condition is met and false otherwise. An example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000475 if v:version >= 700
476 echo "congratulations"
477 else
478 echo "you are using an old version, upgrade!"
479 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480
481Here "v:version" is a variable defined by Vim, which has the value of the Vim
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000482version. 600 is for version 6.0, version 6.1 has the value 601. This is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483very useful to write a script that works with multiple versions of Vim.
484|v:version|
485
486The logic operators work both for numbers and strings. When comparing two
487strings, the mathematical difference is used. This compares byte values,
488which may not be right for some languages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000490If you try to compare a string with a number you will get an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000492For strings there are two more useful items:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000494 str =~ pat matches with
495 str !~ pat does not match with
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000497The left item "str" is used as a string. The right item "pat" is used as a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498pattern, like what's used for searching. Example: >
499
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000500 if str =~ " "
501 echo "str contains a space"
502 endif
503 if str !~ '\.$'
504 echo "str does not end in a full stop"
505 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506
507Notice the use of a single-quote string for the pattern. This is useful,
Bram Moolenaar7c626922005-02-07 22:01:03 +0000508because backslashes would need to be doubled in a double-quote string and
509patterns tend to contain many backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000511The match is not anchored, if you want to match the whole string start with
512"^" and end with "$".
513
514The 'ignorecase' option is not used when comparing strings. When you do want
515to ignore case append "?". Thus "==?" compares two strings to be equal while
516ignoring case. For the full table see |expr-==|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517
518
519MORE LOOPING
520
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000521The `while` command was already mentioned. Two more statements can be used in
522between the `while` and the `endwhile`:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000524 continue Jump back to the start of the while loop; the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 loop continues.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000526 break Jump forward to the `endwhile`; the loop is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 discontinued.
528
529Example: >
530
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000531 var counter = 1
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000532 while counter < 40
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000533 if skip_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000534 continue
535 endif
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000536 if last_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000537 break
538 endif
539 sleep 50m
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000540 ++counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000541 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000543The `sleep` command makes Vim take a nap. The "50m" specifies fifty
544milliseconds. Another example is `sleep 4`, which sleeps for four seconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000546Even more looping can be done with the `for` command, see below in |41.8|.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000547
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548==============================================================================
549*41.5* Executing an expression
550
551So far the commands in the script were executed by Vim directly. The
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000552`execute` command allows executing the result of an expression. This is a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553very powerful way to build commands and execute them.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000555An example is to jump to a tag, which is contained in a variable: >
556
557 execute "tag " .. tag_name
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200559The ".." is used to concatenate the string "tag " with the value of variable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560"tag_name". Suppose "tag_name" has the value "get_cmd", then the command that
561will be executed is: >
562
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000563 tag get_cmd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000565The `execute` command can only execute Ex commands. The `normal` command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566executes Normal mode commands. However, its argument is not an expression but
567the literal command characters. Example: >
568
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000569 normal gg=G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000571This jumps to the first line with "gg" and formats all lines with the "="
572operator and the "G" movement.
573
574To make `normal` work with an expression, combine `execute` with it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575Example: >
576
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000577 execute "normal " .. count .. "j"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000579This will move the cursor "count" lines down.
580
581Make sure that the argument for `normal` is a complete command. Otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582Vim will run into the end of the argument and abort the command. For example,
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000583if you start the delete operator, you must give the movement command also.
584This works: >
585
586 normal d$
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000588This does nothing: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000590 normal d
591
592If you start Insert mode and do not end it with Esc, it will end anyway. This
593works to insert "new text": >
594
595 execute "normal inew text"
596
597If you want to do something after inserting text you do need to end Insert
598mode: >
599
600 execute "normal inew text\<Esc>b"
601
602This inserts "new text" and puts the cursor on the first letter of "text".
603Notice the use of the special key "\<Esc>". This avoids having to enter a
604real <Esc> character in your script. That is where `execute` with a
605double-quote string comes in handy.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606
Bram Moolenaar7c626922005-02-07 22:01:03 +0000607If you don't want to execute a string but evaluate it to get its expression
608value, you can use the eval() function: >
609
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000610 var optname = "path"
611 var optvalue = eval('&' .. optname)
Bram Moolenaar7c626922005-02-07 22:01:03 +0000612
613A "&" character is prepended to "path", thus the argument to eval() is
614"&path". The result will then be the value of the 'path' option.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000615
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616==============================================================================
617*41.6* Using functions
618
619Vim defines many functions and provides a large amount of functionality that
620way. A few examples will be given in this section. You can find the whole
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000621list below: |function-list|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000623A function is called with the `call` command. The parameters are passed in
Bram Moolenaar00654022011-02-25 14:42:19 +0100624between parentheses separated by commas. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000626 call search("Date: ", "W")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627
628This calls the search() function, with arguments "Date: " and "W". The
629search() function uses its first argument as a search pattern and the second
630one as flags. The "W" flag means the search doesn't wrap around the end of
631the file.
632
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000633Using `call` is optional in |Vim9| script, this works the same way: >
634
635 search("Date: ", "W")
636
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637A function can be called in an expression. Example: >
638
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000639 var line = getline(".")
640 var repl = substitute(line, '\a', "*", "g")
641 setline(".", repl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642
Bram Moolenaar7c626922005-02-07 22:01:03 +0000643The getline() function obtains a line from the current buffer. Its argument
644is a specification of the line number. In this case "." is used, which means
645the line where the cursor is.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000646
647The substitute() function does something similar to the `substitute` command.
648The first argument is the string on which to perform the substitution. The
649second argument is the pattern, the third the replacement string. Finally,
650the last arguments are the flags.
651
652The setline() function sets the line, specified by the first argument, to a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653new string, the second argument. In this example the line under the cursor is
654replaced with the result of the substitute(). Thus the effect of the three
655statements is equal to: >
656
657 :substitute/\a/*/g
658
659Using the functions becomes more interesting when you do more work before and
660after the substitute() call.
661
662
663FUNCTIONS *function-list*
664
665There are many functions. We will mention them here, grouped by what they are
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000666used for. You can find an alphabetical list here: |builtin-function-list|.
667Use CTRL-] on the function name to jump to detailed help on it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668
Bram Moolenaara3f41662010-07-11 19:01:06 +0200669String manipulation: *string-functions*
Bram Moolenaar9d401282019-04-06 13:18:12 +0200670 nr2char() get a character by its number value
671 list2str() get a character string from a list of numbers
672 char2nr() get number value of a character
673 str2list() get list of numbers from a string
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000674 str2nr() convert a string to a Number
675 str2float() convert a string to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000676 printf() format a string according to % items
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 escape() escape characters in a string with a '\'
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000678 shellescape() escape a string for use with a shell command
679 fnameescape() escape a file name for use with a Vim command
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000680 tr() translate characters from one set to another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 strtrans() translate a string to make it printable
682 tolower() turn a string to lowercase
683 toupper() turn a string to uppercase
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200684 charclass() class of a character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 match() position where a pattern matches in a string
686 matchend() position where a pattern match ends in a string
Bram Moolenaar635414d2020-09-11 22:25:15 +0200687 matchfuzzy() fuzzy matches a string in a list of strings
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +0200688 matchfuzzypos() fuzzy matches a string in a list of strings
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 matchstr() match of a pattern in a string
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200690 matchstrpos() match and positions of a pattern in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000691 matchlist() like matchstr() and also return submatches
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 stridx() first index of a short string in a long string
693 strridx() last index of a short string in a long string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100694 strlen() length of a string in bytes
Bram Moolenaar70ce8a12021-03-14 19:02:09 +0100695 strcharlen() length of a string in characters
696 strchars() number of characters in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100697 strwidth() size of string when displayed
698 strdisplaywidth() size of string when displayed, deals with tabs
Bram Moolenaar08aac3c2020-08-28 21:04:24 +0200699 setcellwidths() set character cell width overrides
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 substitute() substitute a pattern match with a string
Bram Moolenaar251e1912011-06-19 05:09:16 +0200701 submatch() get a specific match in ":s" and substitute()
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200702 strpart() get part of a string using byte index
703 strcharpart() get part of a string using char index
Bram Moolenaar6601b622021-01-13 21:47:15 +0100704 slice() take a slice of a string, using char index in
705 Vim9 script
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200706 strgetchar() get character from a string using char index
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 expand() expand special keywords
Bram Moolenaar80dad482019-06-09 17:22:31 +0200708 expandcmd() expand a command like done for `:edit`
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 iconv() convert text from one encoding to another
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000710 byteidx() byte index of a character in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100711 byteidxcomp() like byteidx() but count composing characters
Bram Moolenaar17793ef2020-12-28 12:56:58 +0100712 charidx() character index of a byte in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000713 repeat() repeat a string multiple times
714 eval() evaluate a string expression
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200715 execute() execute an Ex command and get the output
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200716 win_execute() like execute() but in a specified window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100717 trim() trim characters from a string
Bram Moolenaar0b39c3f2020-08-30 15:52:10 +0200718 gettext() lookup message translation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719
Bram Moolenaara3f41662010-07-11 19:01:06 +0200720List manipulation: *list-functions*
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000721 get() get an item without error for wrong index
722 len() number of items in a List
723 empty() check if List is empty
724 insert() insert an item somewhere in a List
725 add() append an item to a List
726 extend() append a List to a List
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100727 extendnew() make a new List and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000728 remove() remove one or more items from a List
729 copy() make a shallow copy of a List
730 deepcopy() make a full copy of a List
731 filter() remove selected items from a List
732 map() change each List item
Bram Moolenaarea696852020-11-09 18:31:39 +0100733 mapnew() make a new List with changed items
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200734 reduce() reduce a List to a value
Bram Moolenaar6601b622021-01-13 21:47:15 +0100735 slice() take a slice of a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000736 sort() sort a List
737 reverse() reverse the order of a List
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100738 uniq() remove copies of repeated adjacent items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000739 split() split a String into a List
740 join() join List items into a String
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000741 range() return a List with a sequence of numbers
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000742 string() String representation of a List
743 call() call a function with List as arguments
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000744 index() index of a value in a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000745 max() maximum value in a List
746 min() minimum value in a List
747 count() count number of times a value appears in a List
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000748 repeat() repeat a List multiple times
Bram Moolenaar077a1e62020-06-08 20:50:43 +0200749 flatten() flatten a List
Bram Moolenaar3b690062021-02-01 20:14:51 +0100750 flattennew() flatten a copy of a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000751
Bram Moolenaara3f41662010-07-11 19:01:06 +0200752Dictionary manipulation: *dict-functions*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000753 get() get an entry without an error for a wrong key
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000754 len() number of entries in a Dictionary
755 has_key() check whether a key appears in a Dictionary
756 empty() check if Dictionary is empty
757 remove() remove an entry from a Dictionary
758 extend() add entries from one Dictionary to another
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100759 extendnew() make a new Dictionary and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000760 filter() remove selected entries from a Dictionary
761 map() change each Dictionary entry
Bram Moolenaarea696852020-11-09 18:31:39 +0100762 mapnew() make a new Dictionary with changed items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000763 keys() get List of Dictionary keys
764 values() get List of Dictionary values
765 items() get List of Dictionary key-value pairs
766 copy() make a shallow copy of a Dictionary
767 deepcopy() make a full copy of a Dictionary
768 string() String representation of a Dictionary
769 max() maximum value in a Dictionary
770 min() minimum value in a Dictionary
771 count() count number of times a value appears
772
Bram Moolenaara3f41662010-07-11 19:01:06 +0200773Floating point computation: *float-functions*
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000774 float2nr() convert Float to Number
775 abs() absolute value (also works for Number)
776 round() round off
777 ceil() round up
778 floor() round down
779 trunc() remove value after decimal point
Bram Moolenaar8d043172014-01-23 14:24:41 +0100780 fmod() remainder of division
781 exp() exponential
782 log() natural logarithm (logarithm to base e)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000783 log10() logarithm to base 10
784 pow() value of x to the exponent y
785 sqrt() square root
786 sin() sine
787 cos() cosine
Bram Moolenaar662db672011-03-22 14:05:35 +0100788 tan() tangent
789 asin() arc sine
790 acos() arc cosine
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000791 atan() arc tangent
Bram Moolenaar662db672011-03-22 14:05:35 +0100792 atan2() arc tangent
793 sinh() hyperbolic sine
794 cosh() hyperbolic cosine
795 tanh() hyperbolic tangent
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200796 isinf() check for infinity
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200797 isnan() check for not a number
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000798
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +0200799Blob manipulation: *blob-functions*
800 blob2list() get a list of numbers from a blob
801 list2blob() get a blob from a list of numbers
802
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100803Other computation: *bitwise-function*
804 and() bitwise AND
805 invert() bitwise invert
806 or() bitwise OR
807 xor() bitwise XOR
Bram Moolenaar8d043172014-01-23 14:24:41 +0100808 sha256() SHA-256 hash
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200809 rand() get a pseudo-random number
810 srand() initialize seed used by rand()
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100811
Bram Moolenaara3f41662010-07-11 19:01:06 +0200812Variables: *var-functions*
Bram Moolenaara47e05f2021-01-12 21:49:00 +0100813 type() type of a variable as a number
814 typename() type of a variable as text
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000815 islocked() check if a variable is locked
Bram Moolenaar214641f2017-03-05 17:04:09 +0100816 funcref() get a Funcref for a function reference
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000817 function() get a Funcref for a function name
818 getbufvar() get a variable value from a specific buffer
819 setbufvar() set a variable in a specific buffer
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000820 getwinvar() get a variable from specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200821 gettabvar() get a variable from specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000822 gettabwinvar() get a variable from specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000823 setwinvar() set a variable in a specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200824 settabvar() set a variable in a specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000825 settabwinvar() set a variable in a specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000826 garbagecollect() possibly free memory
827
Bram Moolenaara3f41662010-07-11 19:01:06 +0200828Cursor and mark position: *cursor-functions* *mark-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 col() column number of the cursor or a mark
830 virtcol() screen column of the cursor or a mark
831 line() line number of the cursor or mark
832 wincol() window column number of the cursor
833 winline() window line number of the cursor
834 cursor() position the cursor at a line/column
Bram Moolenaar8d043172014-01-23 14:24:41 +0100835 screencol() get screen column of the cursor
836 screenrow() get screen row of the cursor
Bram Moolenaarb3d17a22019-07-07 18:28:14 +0200837 screenpos() screen row and col of a text character
Bram Moolenaar5a6ec102022-05-27 21:58:00 +0100838 virtcol2col() byte index of a text character on screen
Bram Moolenaar822ff862014-06-12 21:46:14 +0200839 getcurpos() get position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000840 getpos() get position of cursor, mark, etc.
841 setpos() set position of cursor, mark, etc.
Bram Moolenaarcfb4b472020-05-31 15:41:57 +0200842 getmarklist() list of global/local marks
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000843 byte2line() get line number at a specific byte count
844 line2byte() byte count at a specific line
845 diff_filler() get the number of filler lines above a line
Bram Moolenaar8d043172014-01-23 14:24:41 +0100846 screenattr() get attribute at a screen line/row
847 screenchar() get character code at a screen line/row
Bram Moolenaar2912abb2019-03-29 14:16:42 +0100848 screenchars() get character codes at a screen line/row
849 screenstring() get string of characters at a screen line/row
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100850 charcol() character number of the cursor or a mark
851 getcharpos() get character position of cursor, mark, etc.
852 setcharpos() set character position of cursor, mark, etc.
853 getcursorcharpos() get character position of the cursor
854 setcursorcharpos() set character position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000855
Bram Moolenaara3f41662010-07-11 19:01:06 +0200856Working with text in the current buffer: *text-functions*
Bram Moolenaar7c626922005-02-07 22:01:03 +0000857 getline() get a line or list of lines from the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 setline() replace a line in the buffer
Bram Moolenaar7c626922005-02-07 22:01:03 +0000859 append() append line or list of lines in the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 indent() indent of a specific line
861 cindent() indent according to C indenting
862 lispindent() indent according to Lisp indenting
863 nextnonblank() find next non-blank line
864 prevnonblank() find previous non-blank line
865 search() find a match for a pattern
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000866 searchpos() find a match for a pattern
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200867 searchcount() get number of matches before/after the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 searchpair() find the other end of a start/skip/end
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000869 searchpairpos() find the other end of a start/skip/end
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000870 searchdecl() search for the declaration of a name
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200871 getcharsearch() return character search information
872 setcharsearch() set character search information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873
Bram Moolenaar931a2772019-07-04 16:54:54 +0200874Working with text in another buffer:
875 getbufline() get a list of lines from the specified buffer
876 setbufline() replace a line in the specified buffer
877 appendbufline() append a list of lines in the specified buffer
878 deletebufline() delete lines from a specified buffer
879
Bram Moolenaara3f41662010-07-11 19:01:06 +0200880 *system-functions* *file-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881System functions and manipulation of files:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 glob() expand wildcards
883 globpath() expand wildcards in a number of directories
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200884 glob2regpat() convert a glob pattern into a search pattern
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000885 findfile() find a file in a list of directories
886 finddir() find a directory in a list of directories
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 resolve() find out where a shortcut points to
888 fnamemodify() modify a file name
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000889 pathshorten() shorten directory names in a path
890 simplify() simplify a path without changing its meaning
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 executable() check if an executable program exists
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200892 exepath() full path of an executable program
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 filereadable() check if a file can be read
894 filewritable() check if a file can be written to
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000895 getfperm() get the permissions of a file
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200896 setfperm() set the permissions of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000897 getftype() get the kind of a file
LemonBoydca1d402022-04-28 15:26:33 +0100898 isabsolutepath() check if a path is absolute
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 isdirectory() check if a directory exists
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 getfsize() get the size of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000901 getcwd() get the current working directory
Bram Moolenaar00aa0692019-04-27 20:37:57 +0200902 haslocaldir() check if current window used |:lcd| or |:tcd|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 tempname() get the name of a temporary file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000904 mkdir() create a new directory
Bram Moolenaar1063f3d2019-05-07 22:06:52 +0200905 chdir() change current working directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 delete() delete a file
907 rename() rename a file
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200908 system() get the result of a shell command as a string
909 systemlist() get the result of a shell command as a list
Bram Moolenaar691ddee2019-05-09 14:52:41 +0200910 environ() get all environment variables
911 getenv() get one environment variable
912 setenv() set an environment variable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 hostname() name of the system
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +0000914 readfile() read a file into a List of lines
Bram Moolenaarc423ad72021-01-13 20:38:03 +0100915 readblob() read a file into a Blob
Bram Moolenaar62e1bb42019-04-08 16:25:07 +0200916 readdir() get a List of file names in a directory
Bram Moolenaar6c9ba042020-06-01 16:09:41 +0200917 readdirex() get a List of file information in a directory
Bram Moolenaar314dd792019-02-03 15:27:20 +0100918 writefile() write a List of lines or Blob into a file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919
Bram Moolenaara3f41662010-07-11 19:01:06 +0200920Date and Time: *date-functions* *time-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000921 getftime() get last modification time of a file
922 localtime() get current time in seconds
923 strftime() convert time to a string
Bram Moolenaar10455d42019-11-21 15:36:18 +0100924 strptime() convert a date/time string to time
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000925 reltime() get the current or elapsed time accurately
926 reltimestr() convert reltime() result to a string
Bram Moolenaar03413f42016-04-12 21:07:15 +0200927 reltimefloat() convert reltime() result to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000928
Yegappan Lakshmanan1755a912022-05-19 10:31:47 +0100929Autocmds: *autocmd-functions*
930 autocmd_add() add a list of autocmds and groups
931 autocmd_delete() delete a list of autocmds and groups
932 autocmd_get() return a list of autocmds
933
Bram Moolenaara3f41662010-07-11 19:01:06 +0200934 *buffer-functions* *window-functions* *arg-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935Buffers, windows and the argument list:
936 argc() number of entries in the argument list
937 argidx() current position in the argument list
Bram Moolenaar2d1fe052014-05-28 18:22:57 +0200938 arglistid() get id of the argument list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 argv() get one entry from the argument list
Bram Moolenaar931a2772019-07-04 16:54:54 +0200940 bufadd() add a file to the list of buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 bufexists() check if a buffer exists
942 buflisted() check if a buffer exists and is listed
Bram Moolenaar931a2772019-07-04 16:54:54 +0200943 bufload() ensure a buffer is loaded
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 bufloaded() check if a buffer exists and is loaded
945 bufname() get the name of a specific buffer
946 bufnr() get the buffer number of a specific buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000947 tabpagebuflist() return List of buffers in a tab page
948 tabpagenr() get the number of a tab page
949 tabpagewinnr() like winnr() for a specified tab page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 winnr() get the window number for the current window
Bram Moolenaar82af8712016-06-04 20:20:29 +0200951 bufwinid() get the window ID of a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 bufwinnr() get the window number of a specific buffer
953 winbufnr() get the buffer number of a specific window
Bram Moolenaara3347722019-05-11 21:14:24 +0200954 listener_add() add a callback to listen to changes
Bram Moolenaar68e65602019-05-26 21:33:31 +0200955 listener_flush() invoke listener callbacks
Bram Moolenaara3347722019-05-11 21:14:24 +0200956 listener_remove() remove a listener callback
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200957 win_findbuf() find windows containing a buffer
958 win_getid() get window ID of a window
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200959 win_gettype() get type of window
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200960 win_gotoid() go to window with ID
961 win_id2tabwin() get tab and window nr from window ID
962 win_id2win() get window nr from window ID
Daniel Steinbergee630312022-01-10 13:36:34 +0000963 win_move_separator() move window vertical separator
964 win_move_statusline() move window status line
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200965 win_splitmove() move window to a split of another window
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +0200966 getbufinfo() get a list with buffer information
967 gettabinfo() get a list with tab page information
968 getwininfo() get a list with window information
Bram Moolenaar07ad8162018-02-13 13:59:59 +0100969 getchangelist() get a list of change list entries
Bram Moolenaar4f505882018-02-10 21:06:32 +0100970 getjumplist() get a list of jump list entries
Bram Moolenaarfc65cab2018-08-28 22:58:02 +0200971 swapinfo() information about a swap file
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100972 swapname() get the swap file path of a buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000973
Bram Moolenaara3f41662010-07-11 19:01:06 +0200974Command line: *command-line-functions*
Shougo Matsushita79d599b2022-05-07 12:48:29 +0100975 getcmdcompltype() get the type of the current command line
976 completion
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000977 getcmdline() get the current command line
978 getcmdpos() get position of the cursor in the command line
Shougo Matsushita79d599b2022-05-07 12:48:29 +0100979 getcmdscreenpos() get screen position of the cursor in the
980 command line
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000981 setcmdpos() set position of the cursor in the command line
982 getcmdtype() return the current command-line type
Bram Moolenaarfb539272014-08-22 19:21:47 +0200983 getcmdwintype() return the current command-line window type
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200984 getcompletion() list of command-line completion matches
Bram Moolenaar038e09e2021-02-06 12:38:51 +0100985 fullcommand() get full command name
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000986
Bram Moolenaara3f41662010-07-11 19:01:06 +0200987Quickfix and location lists: *quickfix-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000988 getqflist() list of quickfix errors
989 setqflist() modify a quickfix list
990 getloclist() list of location list items
991 setloclist() modify a location list
992
Bram Moolenaara3f41662010-07-11 19:01:06 +0200993Insert mode completion: *completion-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000994 complete() set found matches
995 complete_add() add to found matches
996 complete_check() check if completion should be aborted
Bram Moolenaarfd133322019-03-29 12:20:27 +0100997 complete_info() get current completion information
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000998 pumvisible() check if the popup menu is displayed
Bram Moolenaar5be4cee2019-09-27 19:34:08 +0200999 pum_getpos() position and size of popup menu if visible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000
Bram Moolenaara3f41662010-07-11 19:01:06 +02001001Folding: *folding-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 foldclosed() check for a closed fold at a specific line
1003 foldclosedend() like foldclosed() but return the last line
1004 foldlevel() check for the fold level at a specific line
1005 foldtext() generate the line displayed for a closed fold
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001006 foldtextresult() get the text displayed for a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007
Bram Moolenaara3f41662010-07-11 19:01:06 +02001008Syntax and highlighting: *syntax-functions* *highlighting-functions*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001009 clearmatches() clear all matches defined by |matchadd()| and
1010 the |:match| commands
1011 getmatches() get all matches defined by |matchadd()| and
1012 the |:match| commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 hlexists() check if a highlight group exists
Yegappan Lakshmanand1a8d652021-11-03 21:56:45 +00001014 hlget() get highlight group attributes
1015 hlset() set highlight group attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 hlID() get ID of a highlight group
1017 synID() get syntax ID at a specific position
1018 synIDattr() get a specific attribute of a syntax ID
1019 synIDtrans() get translated syntax ID
Bram Moolenaar166af9b2010-11-16 20:34:40 +01001020 synstack() get list of syntax IDs at a specific position
Bram Moolenaar81af9252010-12-10 20:35:50 +01001021 synconcealed() get info about concealing
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001022 diff_hlID() get highlight ID for diff mode at a position
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001023 matchadd() define a pattern to highlight (a "match")
Bram Moolenaarb3414592014-06-17 17:48:32 +02001024 matchaddpos() define a list of positions to highlight
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001025 matcharg() get info about |:match| arguments
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001026 matchdelete() delete a match defined by |matchadd()| or a
1027 |:match| command
1028 setmatches() restore a list of matches saved by
1029 |getmatches()|
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001030
Bram Moolenaara3f41662010-07-11 19:01:06 +02001031Spelling: *spell-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001032 spellbadword() locate badly spelled word at or after cursor
1033 spellsuggest() return suggested spelling corrections
1034 soundfold() return the sound-a-like equivalent of a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035
Bram Moolenaara3f41662010-07-11 19:01:06 +02001036History: *history-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 histadd() add an item to a history
1038 histdel() delete an item from a history
1039 histget() get an item from a history
1040 histnr() get highest index of a history list
1041
Bram Moolenaara3f41662010-07-11 19:01:06 +02001042Interactive: *interactive-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001043 browse() put up a file requester
1044 browsedir() put up a directory requester
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 confirm() let the user make a choice
1046 getchar() get a character from the user
Bram Moolenaarf7a023e2021-06-07 18:50:01 +02001047 getcharstr() get a character from the user as a string
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 getcharmod() get modifiers for the last typed character
Bram Moolenaar09c6f262019-11-17 15:55:14 +01001049 getmousepos() get last known mouse position
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001050 echoraw() output characters as-is
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001051 feedkeys() put characters in the typeahead queue
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 input() get a line from the user
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001053 inputlist() let the user pick an entry from a list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 inputsecret() get a line from the user without showing it
1055 inputdialog() get a line from the user in a dialog
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001056 inputsave() save and clear typeahead
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 inputrestore() restore typeahead
1058
Bram Moolenaara3f41662010-07-11 19:01:06 +02001059GUI: *gui-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001060 getfontname() get name of current font being used
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001061 getwinpos() position of the Vim window
1062 getwinposx() X position of the Vim window
1063 getwinposy() Y position of the Vim window
Bram Moolenaar214641f2017-03-05 17:04:09 +01001064 balloon_show() set the balloon content
Bram Moolenaara2a80162017-11-21 23:09:50 +01001065 balloon_split() split a message for a balloon
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001066 balloon_gettext() get the text in the balloon
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001067
Bram Moolenaara3f41662010-07-11 19:01:06 +02001068Vim server: *server-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 serverlist() return the list of server names
Bram Moolenaar01164a62017-11-02 22:58:42 +01001070 remote_startserver() run a server
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 remote_send() send command characters to a Vim server
1072 remote_expr() evaluate an expression in a Vim server
1073 server2client() send a reply to a client of a Vim server
1074 remote_peek() check if there is a reply from a Vim server
1075 remote_read() read a reply from a Vim server
1076 foreground() move the Vim window to the foreground
1077 remote_foreground() move the Vim server window to the foreground
1078
Bram Moolenaara3f41662010-07-11 19:01:06 +02001079Window size and position: *window-size-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001080 winheight() get height of a specific window
1081 winwidth() get width of a specific window
Bram Moolenaarf0b03c42017-12-17 17:17:07 +01001082 win_screenpos() get screen position of a window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001083 winlayout() get layout of windows in a tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001084 winrestcmd() return command to restore window sizes
1085 winsaveview() get view of current window
1086 winrestview() restore saved view of current window
1087
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001088Mappings and Menus: *mapping-functions*
h-east29b85712021-07-26 21:54:04 +02001089 digraph_get() get |digraph|
1090 digraph_getlist() get all |digraph|s
1091 digraph_set() register |digraph|
1092 digraph_setlist() register multiple |digraph|s
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 hasmapto() check if a mapping exists
1094 mapcheck() check if a matching mapping exists
1095 maparg() get rhs of a mapping
Ernie Rael09661202022-04-25 14:40:44 +01001096 maplist() get list of all mappings
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001097 mapset() restore a mapping
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001098 menu_info() get information about a menu item
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001099 wildmenumode() check if the wildmode is active
1100
Bram Moolenaar683fa182015-11-30 21:38:24 +01001101Testing: *test-functions*
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001102 assert_equal() assert that two expressions values are equal
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001103 assert_equalfile() assert that two file contents are equal
Bram Moolenaar03413f42016-04-12 21:07:15 +02001104 assert_notequal() assert that two expressions values are not equal
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001105 assert_inrange() assert that an expression is inside a range
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +02001106 assert_match() assert that a pattern matches the value
Bram Moolenaar03413f42016-04-12 21:07:15 +02001107 assert_notmatch() assert that a pattern does not match the value
Bram Moolenaar683fa182015-11-30 21:38:24 +01001108 assert_false() assert that an expression is false
1109 assert_true() assert that an expression is true
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001110 assert_exception() assert that a command throws an exception
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001111 assert_beeps() assert that a command beeps
Bram Moolenaar0df60302021-04-03 15:15:47 +02001112 assert_nobeep() assert that a command does not cause a beep
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001113 assert_fails() assert that a command fails
Bram Moolenaar3c2881d2017-03-21 19:18:29 +01001114 assert_report() report a test failure
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001115 test_alloc_fail() make memory allocation fail
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001116 test_autochdir() enable 'autochdir' during startup
Bram Moolenaar036986f2017-03-16 17:41:02 +01001117 test_override() test with Vim internal overrides
1118 test_garbagecollect_now() free memory right now
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001119 test_garbagecollect_soon() set a flag to free memory soon
Bram Moolenaar68e65602019-05-26 21:33:31 +02001120 test_getvalue() get value of an internal variable
Yegappan Lakshmanan06011e12022-01-30 12:37:29 +00001121 test_gui_event() generate a GUI event for testing
Bram Moolenaar214641f2017-03-05 17:04:09 +01001122 test_ignore_error() ignore a specific error message
Bram Moolenaar314dd792019-02-03 15:27:20 +01001123 test_null_blob() return a null Blob
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001124 test_null_channel() return a null Channel
1125 test_null_dict() return a null Dict
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001126 test_null_function() return a null Funcref
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001127 test_null_job() return a null Job
1128 test_null_list() return a null List
1129 test_null_partial() return a null Partial function
1130 test_null_string() return a null String
Bram Moolenaar214641f2017-03-05 17:04:09 +01001131 test_settime() set the time Vim uses internally
Bram Moolenaarbb8476b2019-05-04 15:47:48 +02001132 test_setmouse() set the mouse position
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001133 test_feedinput() add key sequence to input buffer
1134 test_option_not_set() reset flag indicating option was set
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001135 test_refcount() return an expression's reference count
1136 test_srand_seed() set the seed value for srand()
1137 test_unknown() return a value with unknown type
1138 test_void() return a value with void type
Bram Moolenaar683fa182015-11-30 21:38:24 +01001139
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001140Inter-process communication: *channel-functions*
Bram Moolenaar51628222016-12-01 23:03:28 +01001141 ch_canread() check if there is something to read
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001142 ch_open() open a channel
1143 ch_close() close a channel
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001144 ch_close_in() close the in part of a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001145 ch_read() read a message from a channel
Bram Moolenaard09091d2019-01-17 16:07:22 +01001146 ch_readblob() read a Blob from a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001147 ch_readraw() read a raw message from a channel
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001148 ch_sendexpr() send a JSON message over a channel
1149 ch_sendraw() send a raw message over a channel
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001150 ch_evalexpr() evaluate an expression over channel
1151 ch_evalraw() evaluate a raw string over channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001152 ch_status() get status of a channel
1153 ch_getbufnr() get the buffer number of a channel
1154 ch_getjob() get the job associated with a channel
1155 ch_info() get channel information
1156 ch_log() write a message in the channel log file
1157 ch_logfile() set the channel log file
1158 ch_setoptions() set the options for a channel
Bram Moolenaara02a5512016-06-17 12:48:11 +02001159 json_encode() encode an expression to a JSON string
1160 json_decode() decode a JSON string to Vim types
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001161 js_encode() encode an expression to a JSON string
1162 js_decode() decode a JSON string to Vim types
1163
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001164Jobs: *job-functions*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001165 job_start() start a job
1166 job_stop() stop a job
1167 job_status() get the status of a job
1168 job_getchannel() get the channel used by a job
1169 job_info() get information about a job
1170 job_setoptions() set options for a job
1171
Bram Moolenaar162b7142018-12-21 15:17:36 +01001172Signs: *sign-functions*
1173 sign_define() define or update a sign
1174 sign_getdefined() get a list of defined signs
1175 sign_getplaced() get a list of placed signs
Bram Moolenaar6b7b7192019-01-11 13:42:41 +01001176 sign_jump() jump to a sign
Bram Moolenaar162b7142018-12-21 15:17:36 +01001177 sign_place() place a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001178 sign_placelist() place a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001179 sign_undefine() undefine a sign
1180 sign_unplace() unplace a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001181 sign_unplacelist() unplace a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001182
Bram Moolenaarc572da52017-08-27 16:52:01 +02001183Terminal window: *terminal-functions*
1184 term_start() open a terminal window and run a job
1185 term_list() get the list of terminal buffers
1186 term_sendkeys() send keystrokes to a terminal
1187 term_wait() wait for screen to be updated
1188 term_getjob() get the job associated with a terminal
1189 term_scrape() get row of a terminal screen
1190 term_getline() get a line of text from a terminal
1191 term_getattr() get the value of attribute {what}
1192 term_getcursor() get the cursor position of a terminal
1193 term_getscrolled() get the scroll count of a terminal
1194 term_getaltscreen() get the alternate screen flag
1195 term_getsize() get the size of a terminal
1196 term_getstatus() get the status of a terminal
1197 term_gettitle() get the title of a terminal
1198 term_gettty() get the tty name of a terminal
Bram Moolenaar7dda86f2018-04-20 22:36:41 +02001199 term_setansicolors() set 16 ANSI colors, used for GUI
1200 term_getansicolors() get 16 ANSI colors, used for GUI
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001201 term_dumpdiff() display difference between two screen dumps
1202 term_dumpload() load a terminal screen dump in a window
1203 term_dumpwrite() dump contents of a terminal screen to a file
1204 term_setkill() set signal to stop job in a terminal
1205 term_setrestore() set command to restore a terminal
1206 term_setsize() set the size of a terminal
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001207 term_setapi() set terminal JSON API function name prefix
Bram Moolenaarc572da52017-08-27 16:52:01 +02001208
Bram Moolenaar931a2772019-07-04 16:54:54 +02001209Popup window: *popup-window-functions*
1210 popup_create() create popup centered in the screen
1211 popup_atcursor() create popup just above the cursor position,
1212 closes when the cursor moves away
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001213 popup_beval() at the position indicated by v:beval_
1214 variables, closes when the mouse moves away
Bram Moolenaar931a2772019-07-04 16:54:54 +02001215 popup_notification() show a notification for three seconds
1216 popup_dialog() create popup centered with padding and border
1217 popup_menu() prompt for selecting an item from a list
1218 popup_hide() hide a popup temporarily
1219 popup_show() show a previously hidden popup
1220 popup_move() change the position and size of a popup
1221 popup_setoptions() override options of a popup
1222 popup_settext() replace the popup buffer contents
1223 popup_close() close one popup
1224 popup_clear() close all popups
1225 popup_filter_menu() select from a list of items
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001226 popup_filter_yesno() block until 'y' or 'n' is pressed
Bram Moolenaar931a2772019-07-04 16:54:54 +02001227 popup_getoptions() get current options for a popup
1228 popup_getpos() get actual position and size of a popup
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001229 popup_findinfo() get window ID for popup info window
1230 popup_findpreview() get window ID for popup preview window
1231 popup_list() get list of all popup window IDs
1232 popup_locate() get popup window ID from its screen position
Bram Moolenaar931a2772019-07-04 16:54:54 +02001233
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001234Timers: *timer-functions*
1235 timer_start() create a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001236 timer_pause() pause or unpause a timer
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001237 timer_stop() stop a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001238 timer_stopall() stop all timers
1239 timer_info() get information about timers
Bram Moolenaar298b4402016-01-28 22:38:53 +01001240
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001241Tags: *tag-functions*
1242 taglist() get list of matching tags
1243 tagfiles() get a list of tags files
1244 gettagstack() get the tag stack of a window
1245 settagstack() modify the tag stack of a window
1246
1247Prompt Buffer: *promptbuffer-functions*
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001248 prompt_getprompt() get the effective prompt text for a buffer
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001249 prompt_setcallback() set prompt callback for a buffer
1250 prompt_setinterrupt() set interrupt callback for a buffer
1251 prompt_setprompt() set the prompt text for a buffer
1252
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001253Text Properties: *text-property-functions*
1254 prop_add() attach a property at a position
Yegappan Lakshmananccfb7c62021-08-16 21:39:09 +02001255 prop_add_list() attach a property at multiple positions
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001256 prop_clear() remove all properties from a line or lines
1257 prop_find() search for a property
1258 prop_list() return a list of all properties in a line
1259 prop_remove() remove a property from a line
1260 prop_type_add() add/define a property type
1261 prop_type_change() change properties of a type
1262 prop_type_delete() remove a text property type
1263 prop_type_get() return the properties of a type
1264 prop_type_list() return a list of all property types
1265
1266Sound: *sound-functions*
1267 sound_clear() stop playing all sounds
1268 sound_playevent() play an event's sound
1269 sound_playfile() play a sound file
1270 sound_stop() stop playing a sound
1271
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001272Various: *various-functions*
1273 mode() get current editing mode
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001274 state() get current busy state
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001275 visualmode() last visual mode used
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 exists() check if a variable, function, etc. exists
Bram Moolenaar26735992021-08-08 14:43:22 +02001277 exists_compiled() like exists() but check at compile time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 has() check if a feature is supported in Vim
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001279 changenr() return number of most recent change
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 cscope_connection() check if a cscope connection exists
1281 did_filetype() check if a FileType autocommand was used
1282 eventhandler() check if invoked by an event handler
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001283 getpid() get process ID of Vim
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001284 getimstatus() check if IME status is active
1285 interrupt() interrupt script execution
1286 windowsversion() get MS-Windows version
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001287 terminalprops() properties of the terminal
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001288
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 libcall() call a function in an external library
1290 libcallnr() idem, returning a number
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001291
Bram Moolenaar8d043172014-01-23 14:24:41 +01001292 undofile() get the name of the undo file
1293 undotree() return the state of the undo tree
1294
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 getreg() get contents of a register
Bram Moolenaarbb861e22020-06-07 18:16:36 +02001296 getreginfo() get information about a register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 getregtype() get type of a register
1298 setreg() set contents and type of a register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001299 reg_executing() return the name of the register being executed
1300 reg_recording() return the name of the register being recorded
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001301
Bram Moolenaar8d043172014-01-23 14:24:41 +01001302 shiftwidth() effective value of 'shiftwidth'
1303
Bram Moolenaar063b9d12016-07-09 20:21:48 +02001304 wordcount() get byte/word/char count of buffer
1305
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001306 luaeval() evaluate |Lua| expression
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001307 mzeval() evaluate |MzScheme| expression
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001308 perleval() evaluate Perl expression (|+perl|)
Bram Moolenaar8d043172014-01-23 14:24:41 +01001309 py3eval() evaluate Python expression (|+python3|)
1310 pyeval() evaluate Python expression (|+python|)
Bram Moolenaar690afe12017-01-28 18:34:47 +01001311 pyxeval() evaluate |python_x| expression
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001312 rubyeval() evaluate |Ruby| expression
1313
Bram Moolenaar9d87a372018-12-18 21:41:50 +01001314 debugbreak() interrupt a program being debugged
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001315
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316==============================================================================
1317*41.7* Defining a function
1318
1319Vim enables you to define your own functions. The basic function declaration
1320begins as follows: >
1321
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001322 def {name}({var1}, {var2}, ...): return-type
1323 {body}
1324 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325<
1326 Note:
1327 Function names must begin with a capital letter.
1328
1329Let's define a short function to return the smaller of two numbers. It starts
1330with this line: >
1331
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001332 def Min(num1: number, num2: number): number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001334This tells Vim that the function is named "Min", it takes two arguments that
1335are numbers: "num1" and "num2" and returns a number.
1336
1337The first thing you need to do is to check to see which number is smaller:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 >
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001339 if num1 < num2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341Let's assign the variable "smaller" the value of the smallest number: >
1342
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001343 var smaller: number
1344 if num1 < num2
1345 smaller = num1
1346 else
1347 smaller = num2
1348 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
1350The variable "smaller" is a local variable. Variables used inside a function
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001351are local unless prefixed by something like "g:", "w:", or "s:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352
1353 Note:
1354 To access a global variable from inside a function you must prepend
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001355 "g:" to it. Thus "g:today" inside a function is used for the global
1356 variable "today", and "today" is another variable, local to the
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001357 function or the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001359You now use the `return` statement to return the smallest number to the user.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360Finally, you end the function: >
1361
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001362 return smaller
1363 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364
1365The complete function definition is as follows: >
1366
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001367 def Min(num1: number, num2: number): number
1368 var smaller: number
1369 if num1 < num2
1370 smaller = num1
1371 else
1372 smaller = num2
1373 endif
1374 return smaller
1375 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001377Obviously this is a verbose example. You can make it shorter by using two
1378return commands: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001379
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001380 def Min(num1: number, num2: number): number
1381 if num1 < num2
1382 return num1
1383 endif
1384 return num2
1385 enddef
1386
1387And if you remember the conditional expression, you need only one line: >
1388
1389 def Min(num1: number, num2: number): number
1390 return num1 < num2 ? num1 : num2
1391 enddef
Bram Moolenaar7c626922005-02-07 22:01:03 +00001392
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001393A user defined function is called in exactly the same way as a built-in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394function. Only the name is different. The Min function can be used like
1395this: >
1396
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001397 echo Min(5, 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001399Only now will the function be executed and the lines be parsed by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400If there are mistakes, like using an undefined variable or function, you will
1401now get an error message. When defining the function these errors are not
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001402detected. To get the errors sooner you can tell Vim to compile all the
1403functions in the script: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001405 defcompile
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001407For a function that does not return anything leave out the return type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001409 def SayIt(text: string)
1410 echo text
1411 enddef
1412
1413It is also possible to define a legacy function with `function` and
1414`endfunction`. These do not have types and are not compiled. They execute
1415much slower.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416
1417
1418USING A RANGE
1419
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001420A line range can be used with a function call. The function will be called
1421once for every line in the range, with the cursor in that line. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001423 def Number()
1424 echo "line " .. line(".") .. " contains: " .. getline(".")
1425 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426
1427If you call this function with: >
1428
1429 :10,15call Number()
1430
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001431The function will be called six times, starting on line 10 and ending on line
143215.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
1434
1435VARIABLE NUMBER OF ARGUMENTS
1436
1437Vim enables you to define functions that have a variable number of arguments.
1438The following command, for instance, defines a function that must have 1
1439argument (start) and can have up to 20 additional arguments: >
1440
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001441 def Show(start: string, ...items: list<string>)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001443The variable "items" will be a list containing the extra arguments. You can
1444use it like any list, for example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001446 def Show(start: string, ...items: list<string>)
1447 echohl Title
1448 echo "start is " .. start
1449 echohl None
1450 for index in range(len(items))
1451 echon " Arg " .. index .. " is " .. items[index]
1452 endfor
1453 echo
1454 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001456You can call it like this: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001458 Show('Title', 'one', 'two', 'three')
1459< start is Title Arg 0 is one Arg 1 is two Arg 2 is three ~
1460
1461This uses the `echohl` command to specify the highlighting used for the
1462following `echo` command. `echohl None` stops it again. The `echon` command
1463works like `echo`, but doesn't output a line break.
1464
1465If you call it with one argument the "items" list will be empty.
1466`range(len(items))` returns a list with the indexes, what `for` loops over,
1467we'll explain that further down.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001468
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469
1470LISTING FUNCTIONS
1471
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001472The `function` command lists the names and arguments of all user-defined
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473functions: >
1474
1475 :function
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001476< def <SNR>86_Show(start: string, ...items: list<string>) ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 function GetVimIndent() ~
1478 function SetSyn(name) ~
1479
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001480The "<SNR>" prefix means that a function is script-local. |Vim9| functions
1481wil start with "def" and include argument and return types. Legacy functions
1482are listed with "function".
1483
1484To see what a function does, use its name as an argument for `function`: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485
1486 :function SetSyn
1487< 1 if &syntax == '' ~
1488 2 let &syntax = a:name ~
1489 3 endif ~
1490 endfunction ~
1491
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001492To see the "Show" function you need to include the script prefix, since a
1493"Show" function can be defined multiple times in different scripts. To find
1494the exact name you can use `function`, but the result may be a very long list.
1495To only get the functions matching a pattern you can use the `filter` prefix:
1496>
1497
1498 :filter Show function
1499< def <SNR>86_Show(start: string, ...items: list<string>) ~
1500>
1501 :function <SNR>86_Show
1502< 1 echohl Title ~
1503 2 echo "start is " .. start ~
1504 etc.
1505
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506
1507DEBUGGING
1508
1509The line number is useful for when you get an error message or when debugging.
1510See |debug-scripts| about debugging mode.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001511
1512You can also set the 'verbose' option to 12 or higher to see all function
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513calls. Set it to 15 or higher to see every executed line.
1514
1515
1516DELETING A FUNCTION
1517
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001518To delete the SetSyn() function: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001520 :delfunction SetSyn
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001522Deleting only works for global functions and functions in legacy script, not
1523for functions defined in a |Vim9| script.
1524
1525You get an error when the function doesn't exist or cannot be deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526
Bram Moolenaar7c626922005-02-07 22:01:03 +00001527
1528FUNCTION REFERENCES
1529
1530Sometimes it can be useful to have a variable point to one function or
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001531another. You can do it with function reference variable. Often shortened to
1532"funcref". Example: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001533
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001534 def Right()
1535 return 'Right!'
1536 enddef
1537 def Wrong()
1538 return 'Wrong!'
1539 enddef
1540
1541 var Afunc = g:result == 1 ? Right : Wrong
1542 Afunc()
Bram Moolenaar7c626922005-02-07 22:01:03 +00001543< Wrong! ~
1544
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001545This assumes "g:result" is not one.
1546
Bram Moolenaar7c626922005-02-07 22:01:03 +00001547Note that the name of a variable that holds a function reference must start
1548with a capital. Otherwise it could be confused with the name of a builtin
1549function.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001550
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02001551More information about defining your own functions here: |user-functions|.
1552
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00001554*41.8* Lists and Dictionaries
1555
1556So far we have used the basic types String and Number. Vim also supports two
1557composite types: List and Dictionary.
1558
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001559A List is an ordered sequence of items. The items can be any kind of value,
Bram Moolenaar7c626922005-02-07 22:01:03 +00001560thus you can make a List of numbers, a List of Lists and even a List of mixed
1561items. To create a List with three strings: >
1562
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001563 var alist = ['aap', 'mies', 'noot']
Bram Moolenaar7c626922005-02-07 22:01:03 +00001564
1565The List items are enclosed in square brackets and separated by commas. To
1566create an empty List: >
1567
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001568 var alist = []
Bram Moolenaar7c626922005-02-07 22:01:03 +00001569
1570You can add items to a List with the add() function: >
1571
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001572 var alist = []
1573 add(alist, 'foo')
1574 add(alist, 'bar')
1575 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001576< ['foo', 'bar'] ~
1577
1578List concatenation is done with +: >
1579
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001580 var alist = ['foo', 'bar']
1581 alist = alist + ['and', 'more']
1582 echo alist
1583< ['foo', 'bar', 'and', 'more'] ~
Bram Moolenaar7c626922005-02-07 22:01:03 +00001584
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001585Or, if you want to extend a List with a function: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001586
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001587 var alist = ['one']
1588 extend(alist, ['two', 'three'])
1589 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001590< ['one', 'two', 'three'] ~
1591
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001592Notice that using `add()` will have a different effect: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001593
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001594 var alist = ['one']
1595 add(alist, ['two', 'three'])
1596 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001597< ['one', ['two', 'three']] ~
1598
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001599The second argument of add() is added as an item, now you have a nested list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001600
1601
1602FOR LOOP
1603
1604One of the nice things you can do with a List is iterate over it: >
1605
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001606 var alist = ['one', 'two', 'three']
1607 for n in alist
1608 echo n
1609 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001610< one ~
1611 two ~
1612 three ~
1613
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001614This will loop over each element in List "alist", assigning each value to
Bram Moolenaar7c626922005-02-07 22:01:03 +00001615variable "n". The generic form of a for loop is: >
1616
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001617 for {varname} in {listexpression}
1618 {commands}
1619 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001620
1621To loop a certain number of times you need a List of a specific length. The
1622range() function creates one for you: >
1623
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001624 for a in range(3)
1625 echo a
1626 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001627< 0 ~
1628 1 ~
1629 2 ~
1630
1631Notice that the first item of the List that range() produces is zero, thus the
1632last item is one less than the length of the list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001633
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001634You can also specify the maximum value, the stride and even go backwards: >
1635
1636 for a in range(8, 4, -2)
1637 echo a
1638 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001639< 8 ~
1640 6 ~
1641 4 ~
1642
1643A more useful example, looping over lines in the buffer: >
1644
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001645 for line in getline(1, 20)
1646 if line =~ "Date: "
1647 echo line
1648 endif
1649 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001650
1651This looks into lines 1 to 20 (inclusive) and echoes any date found in there.
1652
1653
1654DICTIONARIES
1655
1656A Dictionary stores key-value pairs. You can quickly lookup a value if you
1657know the key. A Dictionary is created with curly braces: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001658
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001659 var uk2nl = {one: 'een', two: 'twee', three: 'drie'}
Bram Moolenaar7c626922005-02-07 22:01:03 +00001660
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001661Now you can lookup words by putting the key in square brackets: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001662
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001663 echo uk2nl['two']
1664< twee ~
1665
1666If the key does not have special characters, you can use the dot notation: >
1667
1668 echo uk2nl.two
Bram Moolenaar7c626922005-02-07 22:01:03 +00001669< twee ~
1670
1671The generic form for defining a Dictionary is: >
1672
1673 {<key> : <value>, ...}
1674
1675An empty Dictionary is one without any keys: >
1676
1677 {}
1678
1679The possibilities with Dictionaries are numerous. There are various functions
1680for them as well. For example, you can obtain a list of the keys and loop
1681over them: >
1682
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001683 for key in keys(uk2nl)
1684 echo key
1685 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001686< three ~
1687 one ~
1688 two ~
1689
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001690You will notice the keys are not ordered. You can sort the list to get a
Bram Moolenaar7c626922005-02-07 22:01:03 +00001691specific order: >
1692
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001693 for key in sort(keys(uk2nl))
1694 echo key
1695 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001696< one ~
1697 three ~
1698 two ~
1699
1700But you can never get back the order in which items are defined. For that you
1701need to use a List, it stores items in an ordered sequence.
1702
1703
Bram Moolenaar7c626922005-02-07 22:01:03 +00001704For further reading see |Lists| and |Dictionaries|.
1705
1706==============================================================================
1707*41.9* Exceptions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708
1709Let's start with an example: >
1710
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001711 try
1712 read ~/templates/pascal.tmpl
1713 catch /E484:/
1714 echo "Sorry, the Pascal template file cannot be found."
1715 endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001717The `read` command will fail if the file does not exist. Instead of
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718generating an error message, this code catches the error and gives the user a
Bram Moolenaar00654022011-02-25 14:42:19 +01001719nice message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001721For the commands in between `try` and `endtry` errors are turned into
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722exceptions. An exception is a string. In the case of an error the string
1723contains the error message. And every error message has a number. In this
1724case, the error we catch contains "E484:". This number is guaranteed to stay
1725the same (the text may change, e.g., it may be translated).
1726
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001727Besides being able to give a nice error message, Vim will also continue
1728executing commands. Otherwise, once an uncaught error is encountered,
1729execution will be aborted.
1730
1731When the `read` command causes another error, the pattern "E484:" will not
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732match in it. Thus this exception will not be caught and result in the usual
1733error message.
1734
1735You might be tempted to do this: >
1736
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001737 try
1738 read ~/templates/pascal.tmpl
1739 catch
1740 echo "Sorry, the Pascal template file cannot be found."
1741 endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001743This means all errors are caught. But then you will not see an error that
1744would indicate a completely different problem, such as "E21: Cannot make
1745changes, 'modifiable' is off".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001747Another useful mechanism is the `finally` command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001749 var tmp = tempname()
1750 try
1751 exe ":.,$write " .. tmp
1752 exe "!filter " .. tmp
1753 :.,$delete
1754 exe ":$read " .. tmp
1755 finally
1756 call delete(tmp)
1757 endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758
1759This filters the lines from the cursor until the end of the file through the
1760"filter" command, which takes a file name argument. No matter if the
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001761filtering works, something goes wrong in between `try` and `finally` or the
1762user cancels the filtering by pressing CTRL-C, the `call delete(tmp)` is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763always executed. This makes sure you don't leave the temporary file behind.
1764
1765More information about exception handling can be found in the reference
1766manual: |exception-handling|.
1767
1768==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00001769*41.10* Various remarks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001771Here is a summary of items that are useful to know when writing Vim scripts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001773The end-of-line character depends on the system. For Vim scripts it is
1774recommended to always use the Unix fileformat, this also works on any other
1775system. That way you can copy your Vim scripts from MS-Windows to Unix and
1776they still work. See |:source_crnl|. To be sure it is set right, do this
1777before writing the file: >
1778
1779 :setlocal fileformat=unix
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780
1781
1782WHITE SPACE
1783
1784Blank lines are allowed and ignored.
1785
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001786Leading whitespace characters (blanks and TABs) are always ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001788Trailing whitespace is often ignored, but not always. One command that
1789includes it is `map`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790
1791To include a whitespace character in the value of an option, it must be
1792escaped by a "\" (backslash) as in the following example: >
1793
1794 :set tags=my\ nice\ file
1795
Bram Moolenaar00654022011-02-25 14:42:19 +01001796The same example written as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797
1798 :set tags=my nice file
1799
1800will issue an error, because it is interpreted as: >
1801
1802 :set tags=my
1803 :set nice
1804 :set file
1805
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001806|Vim9| script is very picky when it comes to white space. This was done
1807intentionally to make sure scripts are easy to read and to avoid mistakes.
1808
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809
1810COMMENTS
1811
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001812In |Vim9| script the character # starts a comment. Everything after
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813and including this character until the end-of-line is considered a comment and
1814is ignored, except for commands that don't consider comments, as shown in
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001815examples below. A comment can start on any character position on the line,
1816but not when it is part of the command, e.g. in a string.
1817
1818The character " (the double quote mark) starts a comment in legacy script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
1820There is a little "catch" with comments for some commands. Examples: >
1821
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001822 abbrev dev development # shorthand
1823 map <F3> o#include # insert include
1824 execute cmd # do it
1825 !ls *.c # list C files
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001827The abbreviation 'dev' will be expanded to 'development # shorthand'. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828mapping of <F3> will actually be the whole line after the 'o# ....' including
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001829the '# insert include'. The `execute` command will give an error. The `!`
1830command will send everything after it to the shell, most likely causing an
1831error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001833There can be no comment after `map`, `abbreviate`, `execute` and `!` commands
1834(there are a few more commands with this restriction). For the `map`,
1835`abbreviate` and `execute` commands there is a trick: >
1836
1837 abbrev dev development|# shorthand
1838 map <F3> o#include|# insert include
1839 execute '!ls *.c' |# do it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840
1841With the '|' character the command is separated from the next one. And that
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001842next command is only a comment. The last command, using `execute` is a
1843general solution, it works for all commands that do not accept a comment or a
1844'|' to separate the next command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845
1846Notice that there is no white space before the '|' in the abbreviation and
1847mapping. For these commands, any character until the end-of-line or '|' is
1848included. As a consequence of this behavior, you don't always see that
1849trailing whitespace is included: >
1850
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001851 map <F4> o#include
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001853To spot these problems, you can highlight trailing spaces: >
1854 match Search /\s\+$/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001856For Unix there is one special way to comment a line, that allows making a Vim
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001857script executable, and it also works in legacy script: >
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001858 #!/usr/bin/env vim -S
1859 echo "this is a Vim script"
1860 quit
1861
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862
1863PITFALLS
1864
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001865An even bigger problem arises in the following example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001867 map ,ab o#include
1868 unmap ,ab
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869
1870Here the unmap command will not work, because it tries to unmap ",ab ". This
1871does not exist as a mapped sequence. An error will be issued, which is very
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001872hard to identify, because the ending whitespace character in `unmap ,ab ` is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873not visible.
1874
1875And this is the same as what happens when one uses a comment after an 'unmap'
1876command: >
1877
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001878 unmap ,ab # comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879
1880Here the comment part will be ignored. However, Vim will try to unmap
1881',ab ', which does not exist. Rewrite it as: >
1882
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001883 unmap ,ab| # comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884
1885
1886RESTORING THE VIEW
1887
Bram Moolenaar3a0d8092012-10-21 03:02:54 +02001888Sometimes you want to make a change and go back to where the cursor was.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889Restoring the relative position would also be nice, so that the same line
1890appears at the top of the window.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001891
1892This example yanks the current line, puts it above the first line in the file
1893and then restores the view: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894
1895 map ,p ma"aYHmbgg"aP`bzt`a
1896
1897What this does: >
1898 ma"aYHmbgg"aP`bzt`a
1899< ma set mark a at cursor position
1900 "aY yank current line into register a
1901 Hmb go to top line in window and set mark b there
1902 gg go to first line in file
1903 "aP put the yanked line above it
1904 `b go back to top line in display
1905 zt position the text in the window as before
1906 `a go back to saved cursor position
1907
1908
1909PACKAGING
1910
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001911Sometimes you will want to use global variables or functions, so that they can
1912be used anywhere. A good example is a global variable that passes a
1913preference to a plugin. To avoid other scripts using the same name, use a
1914prefix that is very unlikely to be used elsewhere. For example, if you have a
1915"mytags" plugin, you could use: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001917 g:mytags_location = '$HOME/project'
1918 g:mytags_style = 'fast'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001920To minimize interference between plugins keep as much as possible local to the
1921script. |Vim9| script helps you with that, by default functions and variables
1922are script-local.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001924If you split your plugin into parts, you can use `import` and `export` to
1925share items between those parts. See `:export` for the details.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926
Bram Moolenaar2d8ed022022-05-21 13:08:16 +01001927More information about writing plugins is in |usr_51.txt|.
1928
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930
1931Next chapter: |usr_42.txt| Add new menus
1932
Bram Moolenaard473c8c2018-08-11 18:00:22 +02001933Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: