blob: ffa6fcb7aee4b7a57fe13ecb9ad91b1d5bf86ea3 [file] [log] [blame]
Hirohito Higashifbe4a8f2025-04-27 15:28:30 +02001*usr_41.txt* For Vim version 9.1. Last change: 2025 Apr 27
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
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +010010script. There are a lot of them, therefore this is a long chapter.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011
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
Bram Moolenaar63f32602022-06-09 20:45:54 +010020|41.9| White space
21|41.10| Line continuation
22|41.11| Comments
23|41.12| Fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
25 Next chapter: |usr_42.txt| Add new menus
26 Previous chapter: |usr_40.txt| Make new commands
27Table of contents: |usr_toc.txt|
28
29==============================================================================
Bram Moolenaar9d75c832005-01-25 21:57:23 +000030*41.1* Introduction *vim-script-intro* *script*
Bram Moolenaar071d4272004-06-13 20:20:40 +000031
Ubaldo Tiberic593b9e2024-06-09 18:47:53 +020032Let's start with some nomenclature. A Vim script is any file that Vim can
h-east8ee0e0b2024-10-05 16:44:27 +020033interpret and execute. This includes files written in Vim's scripting language
Ubaldo Tiberic593b9e2024-06-09 18:47:53 +020034like for example .vim files or configuration files like .vimrc and .gvimrc.
35These scripts may define functions, commands and settings that Vim uses to
36customize and extend its behavior.
37
Hirohito Higashifbe4a8f2025-04-27 15:28:30 +020038 *vim-script-notation*
39The correct notation is "Vim script" (or "Vim9 script" when refering to the
40new Vim9 language |Vim9-script|), so we will use "Vim script" to refer to the
41Vim scripting language throughout this documentation. This shorthand helps to
Ubaldo Tiberic593b9e2024-06-09 18:47:53 +020042streamline explanations and discussions about scripting with Vim.
43
44A Vim plugin is a collection of one or more Vim scripts, along with additional
45files like help documentation, configuration files, and other resources,
46designed to add specific features or functionalities to Vim. A plugin can
47provide new commands, enhance existing capabilities, and integrate external
48tools or services into the Vim environment.
49
Bram Moolenaar071d4272004-06-13 20:20:40 +000050Your first experience with Vim scripts is the vimrc file. Vim reads it when
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +010051it starts up and executes the commands. You can set options to the values you
52prefer, define mappings, select plugins and much more. You can use any colon
53command in it (commands that start with a ":"; these are sometimes referred to
54as Ex commands or command-line commands).
Bram Moolenaar04fb9162021-12-30 20:24:12 +000055
56Syntax files are also Vim scripts. As are files that set options for a
Bram Moolenaar071d4272004-06-13 20:20:40 +000057specific file type. A complicated macro can be defined by a separate Vim
58script file. You can think of other uses yourself.
59
Bram Moolenaar04fb9162021-12-30 20:24:12 +000060Vim script comes in two flavors: legacy and |Vim9|. Since this help file is
61for new users, we'll teach you the newer and more convenient |Vim9| syntax.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +010062While legacy script is particularly for Vim, |Vim9| script looks more like
63other languages, such as JavaScript and TypeScript.
Bram Moolenaar04fb9162021-12-30 20:24:12 +000064
65To try out Vim script the best way is to edit a script file and source it.
66Basically: >
67 :edit test.vim
68 [insert the script lines you want]
69 :w
70 :source %
71
Bram Moolenaar071d4272004-06-13 20:20:40 +000072Let's start with a simple example: >
73
Bram Moolenaar04fb9162021-12-30 20:24:12 +000074 vim9script
75 var i = 1
76 while i < 5
77 echo "count is" i
78 i += 1
79 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +000080<
Bram Moolenaar7c626922005-02-07 22:01:03 +000081The output of the example code is:
82
83 count is 1 ~
84 count is 2 ~
85 count is 3 ~
86 count is 4 ~
87
Bram Moolenaar04fb9162021-12-30 20:24:12 +000088In the first line the `vim9script` command makes clear this is a new, |Vim9|
Bram Moolenaar016188f2022-06-06 20:52:59 +010089script file. That matters for how the rest of the file is used. It is
Doug Kearnsdb7622e2024-02-25 15:21:54 +010090recommended to put it in the very first line, before any comments.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +010091 *vim9-declarations*
Bram Moolenaar04fb9162021-12-30 20:24:12 +000092The `var i = 1` command declares the "i" variable and initializes it. The
Bram Moolenaar7c626922005-02-07 22:01:03 +000093generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
Bram Moolenaar04fb9162021-12-30 20:24:12 +000095 var {name} = {expression}
Bram Moolenaar071d4272004-06-13 20:20:40 +000096
97In this case the variable name is "i" and the expression is a simple value,
98the number one.
Bram Moolenaar071d4272004-06-13 20:20:40 +000099
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000100The `while` command starts a loop. The generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000102 while {condition}
103 {statements}
104 endwhile
105
106The statements until the matching `endwhile` are executed for as long as the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107condition is true. The condition used here is the expression "i < 5". This
108is true when the variable i is smaller than five.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109 Note:
110 If you happen to write a while loop that keeps on running, you can
111 interrupt it by pressing CTRL-C (CTRL-Break on MS-Windows).
112
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000113The `echo` command prints its arguments. In this case the string "count is"
Bram Moolenaar7c626922005-02-07 22:01:03 +0000114and the value of the variable i. Since i is one, this will print:
115
116 count is 1 ~
117
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000118Then there is the `i += 1` command. This does the same thing as "i = i + 1",
119it adds one to the variable i and assigns the new value to the same variable.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000120
121The example was given to explain the commands, but would you really want to
Bram Moolenaar214641f2017-03-05 17:04:09 +0100122make such a loop, it can be written much more compact: >
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000123
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000124 for i in range(1, 4)
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100125 echo $"count is {i}"
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000126 endfor
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000127
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100128We won't explain how `for`, `range()`and `$"string"` work until later. Follow
129the links if you are impatient.
130
131
132TRYING OUT EXAMPLES
133
134You can easily try out most examples in these help files without saving the
Bram Moolenaar63f32602022-06-09 20:45:54 +0100135commands to a file. For example, to try out the "for" loop above do this:
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001361. position the cursor on the "for"
1372. start Visual mode with "v"
1383. move down to the "endfor"
1394. press colon, then "so" and Enter
140
141After pressing colon you will see ":'<,'>", which is the range of the Visually
142selected text.
143
144For some commands it matters they are executed as in |Vim9| script. But typed
145commands normally use legacy script syntax, such as the example below that
146causes the E1004 error. For that use this fourth step:
1474. press colon, then "vim9 so" and Enter
148
149"vim9" is short for `vim9cmd`, which is a command modifier to execute the
150following command in |Vim9| syntax.
151
152Note that this won't work for examples that require a script context.
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000153
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200155FOUR KINDS OF NUMBERS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100157Numbers can be decimal, hexadecimal, octal and binary.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200158
159A hexadecimal number starts with "0x" or "0X". For example "0x1f" is decimal
Bram Moolenaar76db9e02022-11-09 21:21:04 +000016031 and "0x1234" is decimal 4660.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200161
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000162An octal number starts with "0o", "0O". "0o17" is decimal 15.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200163
164A binary number starts with "0b" or "0B". For example "0b101" is decimal 5.
165
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000166A decimal number is just digits. Careful: In legacy script don't put a zero
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100167before a decimal number, it will be interpreted as an octal number! That's
168one reason to use |Vim9| script.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200169
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100170The `echo` command evaluates its argument and when it is a number always
171prints the decimal form. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000173 echo 0x7f 0o36
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174< 127 30 ~
175
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200176A number is made negative with a minus sign. This also works for hexadecimal,
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000177octal and binary numbers: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000179 echo -0x7f
180< -127 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000182A minus sign is also used for subtraction. This can sometimes lead to
183confusion. If we put a minus sign before both numbers we get an error: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000185 echo -0x7f -0o36
186< E1004: White space required before and after '-' at "-0o36" ~
187
188Note: if you are not using a |Vim9| script to try out these commands but type
189them directly, they will be executed as legacy script. Then the echo command
190sees the second minus sign as subtraction. To get the error, prefix the
191command with `vim9cmd`: >
192
193 vim9cmd echo -0x7f -0o36
194< E1004: White space required before and after '-' at "-0o36" ~
195
196White space in an expression is often required to make sure it is easy to read
197and avoid errors. Such as thinking that the "-0o36" above makes the number
198negative, while it is actually seen as a subtraction.
199
200To actually have the minus sign be used for negation, you can put the second
Bram Moolenaar944697a2022-02-20 19:48:20 +0000201expression in parentheses: >
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000202
203 echo -0x7f (-0o36)
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100204< -127 -30 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205
206==============================================================================
207*41.2* Variables
208
209A variable name consists of ASCII letters, digits and the underscore. It
210cannot start with a digit. Valid variable names are:
211
212 counter
213 _aap3
214 very_long_variable_name_with_underscores
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100215 CamelCaseName
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 LENGTH
217
Bram Moolenaar63f32602022-06-09 20:45:54 +0100218Invalid names are "foo.bar" and "6var".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000219
220Some variables are global. To see a list of currently defined global
221variables type this command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
223 :let
224
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100225You can use global variables everywhere. However, it is too easy to use the
226same name in two unrelated scripts. Therefore variables declared in a script
227are local to that script. For example, if you have this in "script1.vim": >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000229 vim9script
230 var counter = 5
231 echo counter
232< 5 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000234And you try to use the variable in "script2.vim": >
235
236 vim9script
237 echo counter
238< E121: Undefined variable: counter ~
239
240Using a script-local variable means you can be sure that it is only changed in
241that script and not elsewhere.
242
243If you do want to share variables between scripts, use the "g:" prefix and
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100244assign the value directly, do not use `var`. And use a specific name to avoid
245mistakes. Thus in "script1.vim": >
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000246
247 vim9script
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100248 g:mash_counter = 5
249 echo g:mash_counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000250< 5 ~
251
252And then in "script2.vim": >
253
254 vim9script
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100255 echo g:mash_counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000256< 5 ~
257
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100258Global variables can also be accessed on the command line, E.g. typing this: >
259 echo g:mash_counter
260That will not work for a script-local variable.
261
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000262More about script-local variables here: |script-variable|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263
264There are more kinds of variables, see |internal-variables|. The most often
265used ones are:
266
267 b:name variable local to a buffer
268 w:name variable local to a window
269 g:name global variable (also in a function)
270 v:name variable predefined by Vim
271
272
273DELETING VARIABLES
274
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000275Variables take up memory and show up in the output of the `let` command. To
276delete a global variable use the `unlet` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000278 unlet g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000280This deletes the global variable "g:counter" to free up the memory it uses.
281If you are not sure if the variable exists, and don't want an error message
282when it doesn't, append !: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000284 unlet! g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100286You cannot `unlet` script-local variables in |Vim9| script, only in legacy
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000287script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288
Bram Moolenaar48c3f4e2022-08-08 15:42:38 +0100289When a script has been processed to the end, the local variables declared
290there will not be deleted. Functions defined in the script can use them.
291Example:
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000292>
293 vim9script
294 var counter = 0
295 def g:GetCount(): number
Bram Moolenaar48c3f4e2022-08-08 15:42:38 +0100296 counter += 1
297 return counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000298 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000300Every time you call the function it will return the next count: >
301 :echo g:GetCount()
302< 1 ~
303>
304 :echo g:GetCount()
305< 2 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100307If you are worried a script-local variable is consuming too much memory, set
308it to an empty or null value after you no longer need it. Example: >
309 var lines = readfile(...)
310 ...
311 lines = []
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100313Note: below we'll leave out the `vim9script` line from examples, so we can
314concentrate on the relevant commands, but you'll still need to put it at the
315top of your script file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316
317
318STRING VARIABLES AND CONSTANTS
319
320So far only numbers were used for the variable value. Strings can be used as
Bram Moolenaar7c626922005-02-07 22:01:03 +0000321well. Numbers and strings are the basic types of variables that Vim supports.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000322Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000324 var name = "Peter"
325 echo name
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000326< Peter ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000328Every variable has a type. Very often, as in this example, the type is
329defined by assigning a value. This is called type inference. If you do not
330want to give the variable a value yet, you need to specify the type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000332 var name: string
333 var age: number
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100334 if male
335 name = "Peter"
336 age = 42
337 else
338 name = "Elisa"
339 age = 45
340 endif
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000341
342If you make a mistake and try to assign the wrong type of value you'll get an
343error: >
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100344
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000345 age = "Peter"
346< E1012: Type mismatch; expected number but got string ~
347
348More about types in |41.8|.
349
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100350To assign a string value to a variable, you can use a string constant. There
351are two types of these. First the string in double quotes, as we used
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000352already. If you want to include a double quote inside the string, put a
353backslash in front of it: >
354
355 var name = "he is \"Peter\""
356 echo name
357< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100359To avoid the need for backslashes, you can use a string in single quotes: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000361 var name = 'he is "Peter"'
362 echo name
363< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364
Bram Moolenaar7c626922005-02-07 22:01:03 +0000365Inside a single-quote string all the characters are as they are. Only the
366single quote itself is special: you need to use two to get one. A backslash
367is taken literally, thus you can't use it to change the meaning of the
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000368character after it: >
369
370 var name = 'P\e''ter'''
371 echo name
372< P\e'ter' ~
373
374In double-quote strings it is possible to use special characters. Here are a
375few useful ones:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376
377 \t <Tab>
378 \n <NL>, line break
379 \r <CR>, <Enter>
380 \e <Esc>
381 \b <BS>, backspace
382 \" "
383 \\ \, backslash
384 \<Esc> <Esc>
385 \<C-W> CTRL-W
386
387The last two are just examples. The "\<name>" form can be used to include
388the special key "name".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000389
390See |expr-quote| for the full list of special items in a string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391
392==============================================================================
393*41.3* Expressions
394
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000395Vim has a fairly standard way to handle expressions. You can read the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396definition here: |expression-syntax|. Here we will show the most common
397items.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000398
399The numbers, strings and variables mentioned above are expressions by
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400themselves. Thus everywhere an expression is expected, you can use a number,
401string or variable. Other basic items in an expression are:
402
403 $NAME environment variable
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100404 &name option value
405 @r register contents
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406
407Examples: >
408
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000409 echo "The value of 'tabstop' is" &ts
410 echo "Your home directory is" $HOME
411 if @a == 'text'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000413The &name form can also be used to set an option value, do something and
414restore the old value. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000416 var save_ic = &ic
417 set noic
418 s/The Start/The Beginning/
419 &ic = save_ic
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420
421This makes sure the "The Start" pattern is used with the 'ignorecase' option
Bram Moolenaar7c626922005-02-07 22:01:03 +0000422off. Still, it keeps the value that the user had set. (Another way to do
423this would be to add "\C" to the pattern, see |/\C|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424
425
426MATHEMATICS
427
428It becomes more interesting if we combine these basic items. Let's start with
429mathematics on numbers:
430
431 a + b add
432 a - b subtract
433 a * b multiply
434 a / b divide
435 a % b modulo
436
437The usual precedence is used. Example: >
438
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000439 echo 10 + 5 * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440< 20 ~
441
Bram Moolenaar00654022011-02-25 14:42:19 +0100442Grouping is done with parentheses. No surprises here. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000444 echo (10 + 5) * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445< 30 ~
446
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100447
448OTHERS
449
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200450Strings can be concatenated with ".." (see |expr6|). Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100452 echo "Name: " .. name
453 Name: Peter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000455When the "echo" command gets multiple arguments, it separates them with a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456space. In the example the argument is a single expression, thus no space is
457inserted.
458
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100459If you don't like the concatenation you can use the $"string" form, which
460accepts an expression in curly braces: >
461 echo $"Name: {name}"
462
Bram Moolenaarb59ae592022-11-23 23:46:31 +0000463See |interpolated-string| for more information.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100464
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000465Borrowed from the C language is the conditional expression: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466
467 a ? b : c
468
469If "a" evaluates to true "b" is used, otherwise "c" is used. Example: >
470
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000471 var nr = 4
472 echo nr > 5 ? "nr is big" : "nr is small"
473< nr is small ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474
475The three parts of the constructs are always evaluated first, thus you could
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000476see it works as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477
478 (a) ? (b) : (c)
479
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100480There is also the falsy operator: >
481 echo name ?? "No name given"
482See |??|.
483
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484==============================================================================
485*41.4* Conditionals
486
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000487The `if` commands executes the following statements, until the matching
488`endif`, only when a condition is met. The generic form is:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000490 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000492 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000494Only when the expression {condition} evaluates to true or one will the
495{statements} be executed. If they are not executed they must still be valid
496commands. If they contain garbage, Vim won't be able to find the matching
497`endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000499You can also use `else`. The generic form for this is:
500
501 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000503 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000505 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000507The second {statements} block is only executed if the first one isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000509Finally, there is `elseif`
510
511 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000513 elseif {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000515 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000517This works just like using `else` and then `if`, but without the need for an
518extra `endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000520A useful example for your vimrc file is checking the 'term' option and doing
521something depending upon its value: >
522
523 if &term == "xterm"
524 # Do stuff for xterm
525 elseif &term == "vt100"
526 # Do stuff for a vt100 terminal
527 else
528 # Do something for other terminals
529 endif
530
531This uses "#" to start a comment, more about that later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532
533
534LOGIC OPERATIONS
535
536We already used some of them in the examples. These are the most often used
537ones:
538
539 a == b equal to
540 a != b not equal to
541 a > b greater than
542 a >= b greater than or equal to
543 a < b less than
544 a <= b less than or equal to
545
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000546The result is true if the condition is met and false otherwise. An example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100548 if v:version >= 800
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000549 echo "congratulations"
550 else
551 echo "you are using an old version, upgrade!"
552 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
554Here "v:version" is a variable defined by Vim, which has the value of the Vim
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100555version. 800 is for version 8.0, version 8.1 has the value 801. This is
556useful to write a script that works with multiple versions of Vim.
557See |v:version|. You can also check for a specific feature with `has()` or a
558specific patch, see |has-patch|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559
560The logic operators work both for numbers and strings. When comparing two
561strings, the mathematical difference is used. This compares byte values,
562which may not be right for some languages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000564If you try to compare a string with a number you will get an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000566For strings there are two more useful items:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000568 str =~ pat matches with
569 str !~ pat does not match with
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000571The left item "str" is used as a string. The right item "pat" is used as a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572pattern, like what's used for searching. Example: >
573
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000574 if str =~ " "
575 echo "str contains a space"
576 endif
577 if str !~ '\.$'
578 echo "str does not end in a full stop"
579 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580
581Notice the use of a single-quote string for the pattern. This is useful,
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100582because patterns tend to contain many backslashes and backslashes need to be
583doubled in a double-quote string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000585The match is not anchored, if you want to match the whole string start with
586"^" and end with "$".
587
588The 'ignorecase' option is not used when comparing strings. When you do want
589to ignore case append "?". Thus "==?" compares two strings to be equal while
590ignoring case. For the full table see |expr-==|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591
592
593MORE LOOPING
594
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000595The `while` command was already mentioned. Two more statements can be used in
596between the `while` and the `endwhile`:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000598 continue Jump back to the start of the while loop; the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 loop continues.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000600 break Jump forward to the `endwhile`; the loop is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 discontinued.
602
603Example: >
604
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000605 var counter = 1
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000606 while counter < 40
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000607 if skip_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000608 continue
609 endif
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000610 if last_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000611 break
612 endif
613 sleep 50m
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000614 ++counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000615 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000617The `sleep` command makes Vim take a nap. The "50m" specifies fifty
618milliseconds. Another example is `sleep 4`, which sleeps for four seconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100620`continue` and `break` can also be used in between `for` and `endfor`.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000621Even more looping can be done with the `for` command, see below in |41.8|.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000622
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623==============================================================================
624*41.5* Executing an expression
625
626So far the commands in the script were executed by Vim directly. The
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000627`execute` command allows executing the result of an expression. This is a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628very powerful way to build commands and execute them.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000630An example is to jump to a tag, which is contained in a variable: >
631
632 execute "tag " .. tag_name
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200634The ".." is used to concatenate the string "tag " with the value of variable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635"tag_name". Suppose "tag_name" has the value "get_cmd", then the command that
636will be executed is: >
637
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000638 tag get_cmd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000640The `execute` command can only execute Ex commands. The `normal` command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641executes Normal mode commands. However, its argument is not an expression but
642the literal command characters. Example: >
643
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000644 normal gg=G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000646This jumps to the first line with "gg" and formats all lines with the "="
647operator and the "G" movement.
648
649To make `normal` work with an expression, combine `execute` with it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650Example: >
651
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000652 execute "normal " .. count .. "j"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000654This will move the cursor "count" lines down.
655
656Make sure that the argument for `normal` is a complete command. Otherwise
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100657Vim will run into the end of the argument and silently abort the command. For
658example, if you start the delete operator, you must give the movement command
659also. This works: >
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100660
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000661 normal d$
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000663This does nothing: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000665 normal d
666
667If you start Insert mode and do not end it with Esc, it will end anyway. This
668works to insert "new text": >
669
670 execute "normal inew text"
671
672If you want to do something after inserting text you do need to end Insert
673mode: >
674
675 execute "normal inew text\<Esc>b"
676
677This inserts "new text" and puts the cursor on the first letter of "text".
678Notice the use of the special key "\<Esc>". This avoids having to enter a
679real <Esc> character in your script. That is where `execute` with a
680double-quote string comes in handy.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100682If you don't want to execute a string as a command but evaluate it to get the
683result of the expression, you can use the eval() function: >
Bram Moolenaar7c626922005-02-07 22:01:03 +0000684
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000685 var optname = "path"
686 var optvalue = eval('&' .. optname)
Bram Moolenaar7c626922005-02-07 22:01:03 +0000687
688A "&" character is prepended to "path", thus the argument to eval() is
689"&path". The result will then be the value of the 'path' option.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000690
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691==============================================================================
692*41.6* Using functions
693
694Vim defines many functions and provides a large amount of functionality that
695way. A few examples will be given in this section. You can find the whole
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000696list below: |function-list|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100698A function is called with the parameters in between parentheses, separated by
699commas. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100701 search("Date: ", "W")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702
703This calls the search() function, with arguments "Date: " and "W". The
704search() function uses its first argument as a search pattern and the second
705one as flags. The "W" flag means the search doesn't wrap around the end of
706the file.
707
Bram Moolenaar76db9e02022-11-09 21:21:04 +0000708Using the `call` command is optional in |Vim9| script. It is required in
Bram Moolenaar63f32602022-06-09 20:45:54 +0100709legacy script and on the command line: >
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000710
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100711 call search("Date: ", "W")
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000712
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713A function can be called in an expression. Example: >
714
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000715 var line = getline(".")
716 var repl = substitute(line, '\a', "*", "g")
717 setline(".", repl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718
Bram Moolenaar7c626922005-02-07 22:01:03 +0000719The getline() function obtains a line from the current buffer. Its argument
720is a specification of the line number. In this case "." is used, which means
721the line where the cursor is.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000722
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100723The substitute() function does something similar to the `:substitute` command.
724The first argument "line" is the string on which to perform the substitution.
725The second argument '\a' is the pattern, the third "*" is the replacement
726string. Finally, the last argument "g" is the flags.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000727
728The setline() function sets the line, specified by the first argument, to a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729new string, the second argument. In this example the line under the cursor is
730replaced with the result of the substitute(). Thus the effect of the three
731statements is equal to: >
732
733 :substitute/\a/*/g
734
Bram Moolenaar63f32602022-06-09 20:45:54 +0100735Using the functions becomes interesting when you do more work before and
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736after the substitute() call.
737
738
739FUNCTIONS *function-list*
740
741There are many functions. We will mention them here, grouped by what they are
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000742used for. You can find an alphabetical list here: |builtin-function-list|.
743Use CTRL-] on the function name to jump to detailed help on it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744
Bram Moolenaara3f41662010-07-11 19:01:06 +0200745String manipulation: *string-functions*
Bram Moolenaar9d401282019-04-06 13:18:12 +0200746 nr2char() get a character by its number value
747 list2str() get a character string from a list of numbers
748 char2nr() get number value of a character
749 str2list() get list of numbers from a string
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000750 str2nr() convert a string to a Number
751 str2float() convert a string to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000752 printf() format a string according to % items
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 escape() escape characters in a string with a '\'
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000754 shellescape() escape a string for use with a shell command
755 fnameescape() escape a file name for use with a Vim command
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000756 tr() translate characters from one set to another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 strtrans() translate a string to make it printable
Bram Moolenaar7b2d8722022-09-12 15:16:29 +0100758 keytrans() translate internal keycodes to a form that
759 can be used by |:map|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 tolower() turn a string to lowercase
761 toupper() turn a string to uppercase
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200762 charclass() class of a character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 match() position where a pattern matches in a string
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +0100764 matchbufline() all the matches of a pattern in a buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 matchend() position where a pattern match ends in a string
Bram Moolenaar635414d2020-09-11 22:25:15 +0200766 matchfuzzy() fuzzy matches a string in a list of strings
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +0200767 matchfuzzypos() fuzzy matches a string in a list of strings
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 matchstr() match of a pattern in a string
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +0100769 matchstrlist() all the matches of a pattern in a List of
770 strings
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200771 matchstrpos() match and positions of a pattern in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000772 matchlist() like matchstr() and also return submatches
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 stridx() first index of a short string in a long string
774 strridx() last index of a short string in a long string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100775 strlen() length of a string in bytes
Bram Moolenaar70ce8a12021-03-14 19:02:09 +0100776 strcharlen() length of a string in characters
777 strchars() number of characters in a string
Christian Brabandt67672ef2023-04-24 21:09:54 +0100778 strutf16len() number of UTF-16 code units in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100779 strwidth() size of string when displayed
780 strdisplaywidth() size of string when displayed, deals with tabs
Bram Moolenaar08aac3c2020-08-28 21:04:24 +0200781 setcellwidths() set character cell width overrides
Kota Kato66bb9ae2023-01-17 18:31:56 +0000782 getcellwidths() get character cell width overrides
mikoto20001083cae2024-11-11 21:24:14 +0100783 getcellpixels() get character cell pixel size
Yegappan Lakshmanan03ff1c22023-05-06 14:08:21 +0100784 reverse() reverse the order of characters in a string
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 substitute() substitute a pattern match with a string
Bram Moolenaar251e1912011-06-19 05:09:16 +0200786 submatch() get a specific match in ":s" and substitute()
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200787 strpart() get part of a string using byte index
788 strcharpart() get part of a string using char index
Bram Moolenaar6601b622021-01-13 21:47:15 +0100789 slice() take a slice of a string, using char index in
790 Vim9 script
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200791 strgetchar() get character from a string using char index
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 expand() expand special keywords
Bram Moolenaar80dad482019-06-09 17:22:31 +0200793 expandcmd() expand a command like done for `:edit`
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 iconv() convert text from one encoding to another
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000795 byteidx() byte index of a character in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100796 byteidxcomp() like byteidx() but count composing characters
Bram Moolenaar17793ef2020-12-28 12:56:58 +0100797 charidx() character index of a byte in a string
Christian Brabandt67672ef2023-04-24 21:09:54 +0100798 utf16idx() UTF-16 index of a byte in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000799 repeat() repeat a string multiple times
800 eval() evaluate a string expression
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200801 execute() execute an Ex command and get the output
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200802 win_execute() like execute() but in a specified window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100803 trim() trim characters from a string
Christ van Willegence0ef912024-06-20 23:41:59 +0200804 bindtextdomain() set message lookup translation base path
Bram Moolenaar0b39c3f2020-08-30 15:52:10 +0200805 gettext() lookup message translation
Christ van Willegenc0786752025-02-01 15:42:16 +0100806 ngettext() lookup single/plural message translation
Yegappan Lakshmanana11b23c2025-01-16 19:16:42 +0100807 str2blob() convert a list of strings into a blob
808 blob2str() convert a blob into a list of strings
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809
Bram Moolenaara3f41662010-07-11 19:01:06 +0200810List manipulation: *list-functions*
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000811 get() get an item without error for wrong index
812 len() number of items in a List
813 empty() check if List is empty
814 insert() insert an item somewhere in a List
815 add() append an item to a List
816 extend() append a List to a List
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100817 extendnew() make a new List and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000818 remove() remove one or more items from a List
819 copy() make a shallow copy of a List
820 deepcopy() make a full copy of a List
821 filter() remove selected items from a List
822 map() change each List item
Bram Moolenaarea696852020-11-09 18:31:39 +0100823 mapnew() make a new List with changed items
Ernie Raele79e2072024-01-13 11:47:33 +0100824 foreach() apply function to List items
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200825 reduce() reduce a List to a value
Bram Moolenaar6601b622021-01-13 21:47:15 +0100826 slice() take a slice of a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000827 sort() sort a List
Yegappan Lakshmanan03ff1c22023-05-06 14:08:21 +0100828 reverse() reverse the order of items in a List
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100829 uniq() remove copies of repeated adjacent items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000830 split() split a String into a List
831 join() join List items into a String
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000832 range() return a List with a sequence of numbers
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000833 string() String representation of a List
834 call() call a function with List as arguments
Yegappan Lakshmananb2186552022-08-13 13:09:20 +0100835 index() index of a value in a List or Blob
836 indexof() index in a List or Blob where an expression
Bram Moolenaarb59ae592022-11-23 23:46:31 +0000837 evaluates to true
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000838 max() maximum value in a List
839 min() minimum value in a List
840 count() count number of times a value appears in a List
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000841 repeat() repeat a List multiple times
Bram Moolenaar077a1e62020-06-08 20:50:43 +0200842 flatten() flatten a List
Bram Moolenaar3b690062021-02-01 20:14:51 +0100843 flattennew() flatten a copy of a List
Yegappan Lakshmanan9cb865e2025-03-23 16:42:16 +0100844 items() get List of List index-value pairs
845
846Tuple manipulation: *tuple-functions*
847 copy() make a shallow copy of a Tuple
848 count() count number of times a value appears in a
849 Tuple
850 deepcopy() make a full copy of a Tuple
851 empty() check if Tuple is empty
852 foreach() apply function to Tuple items
853 get() get an item without error for wrong index
854 index() index of a value in a Tuple
855 indexof() index in a Tuple where an expression is true
856 items() get List of Tuple index-value pairs
857 join() join Tuple items into a String
858 len() number of items in a Tuple
859 list2tuple() convert a list of items into a Tuple
860 max() maximum value in a Tuple
861 min() minimum value in a Tuple
862 reduce() reduce a Tuple to a value
863 repeat() repeat a Tuple multiple times
864 reverse() reverse the order of items in a Tuple
865 slice() take a slice of a Tuple
866 string() string representation of a Tuple
Yegappan Lakshmanan1c2f4752025-03-30 15:37:24 +0200867 tuple2list() convert a Tuple into a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000868
Bram Moolenaara3f41662010-07-11 19:01:06 +0200869Dictionary manipulation: *dict-functions*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000870 get() get an entry without an error for a wrong key
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000871 len() number of entries in a Dictionary
872 has_key() check whether a key appears in a Dictionary
873 empty() check if Dictionary is empty
874 remove() remove an entry from a Dictionary
875 extend() add entries from one Dictionary to another
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100876 extendnew() make a new Dictionary and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000877 filter() remove selected entries from a Dictionary
878 map() change each Dictionary entry
Bram Moolenaarea696852020-11-09 18:31:39 +0100879 mapnew() make a new Dictionary with changed items
Ernie Raele79e2072024-01-13 11:47:33 +0100880 foreach() apply function to Dictionary items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000881 keys() get List of Dictionary keys
882 values() get List of Dictionary values
883 items() get List of Dictionary key-value pairs
884 copy() make a shallow copy of a Dictionary
885 deepcopy() make a full copy of a Dictionary
886 string() String representation of a Dictionary
887 max() maximum value in a Dictionary
888 min() minimum value in a Dictionary
889 count() count number of times a value appears
890
Bram Moolenaara3f41662010-07-11 19:01:06 +0200891Floating point computation: *float-functions*
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000892 float2nr() convert Float to Number
893 abs() absolute value (also works for Number)
894 round() round off
895 ceil() round up
896 floor() round down
897 trunc() remove value after decimal point
Bram Moolenaar8d043172014-01-23 14:24:41 +0100898 fmod() remainder of division
899 exp() exponential
900 log() natural logarithm (logarithm to base e)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000901 log10() logarithm to base 10
902 pow() value of x to the exponent y
903 sqrt() square root
904 sin() sine
905 cos() cosine
Bram Moolenaar662db672011-03-22 14:05:35 +0100906 tan() tangent
907 asin() arc sine
908 acos() arc cosine
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000909 atan() arc tangent
Bram Moolenaar662db672011-03-22 14:05:35 +0100910 atan2() arc tangent
911 sinh() hyperbolic sine
912 cosh() hyperbolic cosine
913 tanh() hyperbolic tangent
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200914 isinf() check for infinity
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200915 isnan() check for not a number
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000916
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +0200917Blob manipulation: *blob-functions*
918 blob2list() get a list of numbers from a blob
919 list2blob() get a blob from a list of numbers
Yegappan Lakshmanan03ff1c22023-05-06 14:08:21 +0100920 reverse() reverse the order of numbers in a blob
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +0200921
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100922Other computation: *bitwise-function*
923 and() bitwise AND
924 invert() bitwise invert
925 or() bitwise OR
926 xor() bitwise XOR
Bram Moolenaar8d043172014-01-23 14:24:41 +0100927 sha256() SHA-256 hash
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200928 rand() get a pseudo-random number
929 srand() initialize seed used by rand()
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100930
Bram Moolenaara3f41662010-07-11 19:01:06 +0200931Variables: *var-functions*
h_east59858792023-10-25 22:47:05 +0900932 instanceof() check if a variable is an instance of a given
933 class
Bram Moolenaara47e05f2021-01-12 21:49:00 +0100934 type() type of a variable as a number
935 typename() type of a variable as text
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000936 islocked() check if a variable is locked
Bram Moolenaar214641f2017-03-05 17:04:09 +0100937 funcref() get a Funcref for a function reference
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000938 function() get a Funcref for a function name
939 getbufvar() get a variable value from a specific buffer
940 setbufvar() set a variable in a specific buffer
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000941 getwinvar() get a variable from specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200942 gettabvar() get a variable from specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000943 gettabwinvar() get a variable from specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000944 setwinvar() set a variable in a specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200945 settabvar() set a variable in a specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000946 settabwinvar() set a variable in a specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000947 garbagecollect() possibly free memory
948
Bram Moolenaara3f41662010-07-11 19:01:06 +0200949Cursor and mark position: *cursor-functions* *mark-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 col() column number of the cursor or a mark
951 virtcol() screen column of the cursor or a mark
952 line() line number of the cursor or mark
953 wincol() window column number of the cursor
954 winline() window line number of the cursor
955 cursor() position the cursor at a line/column
Bram Moolenaar8d043172014-01-23 14:24:41 +0100956 screencol() get screen column of the cursor
957 screenrow() get screen row of the cursor
Bram Moolenaarb3d17a22019-07-07 18:28:14 +0200958 screenpos() screen row and col of a text character
Bram Moolenaar5a6ec102022-05-27 21:58:00 +0100959 virtcol2col() byte index of a text character on screen
Bram Moolenaar822ff862014-06-12 21:46:14 +0200960 getcurpos() get position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000961 getpos() get position of cursor, mark, etc.
962 setpos() set position of cursor, mark, etc.
Bram Moolenaarcfb4b472020-05-31 15:41:57 +0200963 getmarklist() list of global/local marks
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000964 byte2line() get line number at a specific byte count
965 line2byte() byte count at a specific line
966 diff_filler() get the number of filler lines above a line
Bram Moolenaar8d043172014-01-23 14:24:41 +0100967 screenattr() get attribute at a screen line/row
968 screenchar() get character code at a screen line/row
Bram Moolenaar2912abb2019-03-29 14:16:42 +0100969 screenchars() get character codes at a screen line/row
970 screenstring() get string of characters at a screen line/row
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100971 charcol() character number of the cursor or a mark
972 getcharpos() get character position of cursor, mark, etc.
973 setcharpos() set character position of cursor, mark, etc.
974 getcursorcharpos() get character position of the cursor
975 setcursorcharpos() set character position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000976
Bram Moolenaara3f41662010-07-11 19:01:06 +0200977Working with text in the current buffer: *text-functions*
Bram Moolenaar7c626922005-02-07 22:01:03 +0000978 getline() get a line or list of lines from the buffer
Shougo Matsushita3f905ab2024-02-21 00:02:45 +0100979 getregion() get a region of text from the buffer
Shougo Matsushitab4757e62024-05-07 20:49:24 +0200980 getregionpos() get a list of positions for a region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 setline() replace a line in the buffer
Bram Moolenaar7c626922005-02-07 22:01:03 +0000982 append() append line or list of lines in the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 indent() indent of a specific line
984 cindent() indent according to C indenting
985 lispindent() indent according to Lisp indenting
986 nextnonblank() find next non-blank line
987 prevnonblank() find previous non-blank line
988 search() find a match for a pattern
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000989 searchpos() find a match for a pattern
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200990 searchcount() get number of matches before/after the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 searchpair() find the other end of a start/skip/end
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000992 searchpairpos() find the other end of a start/skip/end
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000993 searchdecl() search for the declaration of a name
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200994 getcharsearch() return character search information
995 setcharsearch() set character search information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996
Bram Moolenaar931a2772019-07-04 16:54:54 +0200997Working with text in another buffer:
998 getbufline() get a list of lines from the specified buffer
Bram Moolenaarce30ccc2022-11-21 19:57:04 +0000999 getbufoneline() get a one line from the specified buffer
Bram Moolenaar931a2772019-07-04 16:54:54 +02001000 setbufline() replace a line in the specified buffer
1001 appendbufline() append a list of lines in the specified buffer
1002 deletebufline() delete lines from a specified buffer
1003
Bram Moolenaara3f41662010-07-11 19:01:06 +02001004 *system-functions* *file-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005System functions and manipulation of files:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 glob() expand wildcards
1007 globpath() expand wildcards in a number of directories
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001008 glob2regpat() convert a glob pattern into a search pattern
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001009 findfile() find a file in a list of directories
1010 finddir() find a directory in a list of directories
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 resolve() find out where a shortcut points to
1012 fnamemodify() modify a file name
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001013 pathshorten() shorten directory names in a path
1014 simplify() simplify a path without changing its meaning
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 executable() check if an executable program exists
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02001016 exepath() full path of an executable program
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 filereadable() check if a file can be read
1018 filewritable() check if a file can be written to
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001019 getfperm() get the permissions of a file
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001020 setfperm() set the permissions of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001021 getftype() get the kind of a file
LemonBoydca1d402022-04-28 15:26:33 +01001022 isabsolutepath() check if a path is absolute
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 isdirectory() check if a directory exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 getfsize() get the size of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001025 getcwd() get the current working directory
Bram Moolenaar00aa0692019-04-27 20:37:57 +02001026 haslocaldir() check if current window used |:lcd| or |:tcd|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 tempname() get the name of a temporary file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001028 mkdir() create a new directory
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02001029 chdir() change current working directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 delete() delete a file
1031 rename() rename a file
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02001032 system() get the result of a shell command as a string
1033 systemlist() get the result of a shell command as a list
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001034 environ() get all environment variables
1035 getenv() get one environment variable
1036 setenv() set an environment variable
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 hostname() name of the system
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00001038 readfile() read a file into a List of lines
Bram Moolenaarc423ad72021-01-13 20:38:03 +01001039 readblob() read a file into a Blob
Bram Moolenaar62e1bb42019-04-08 16:25:07 +02001040 readdir() get a List of file names in a directory
Bram Moolenaar6c9ba042020-06-01 16:09:41 +02001041 readdirex() get a List of file information in a directory
Bram Moolenaar314dd792019-02-03 15:27:20 +01001042 writefile() write a List of lines or Blob into a file
Shougo Matsushita60c87432024-06-03 22:59:27 +02001043 filecopy() copy a file {from} to {to}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044
Bram Moolenaara3f41662010-07-11 19:01:06 +02001045Date and Time: *date-functions* *time-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001046 getftime() get last modification time of a file
1047 localtime() get current time in seconds
1048 strftime() convert time to a string
Bram Moolenaar10455d42019-11-21 15:36:18 +01001049 strptime() convert a date/time string to time
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001050 reltime() get the current or elapsed time accurately
1051 reltimestr() convert reltime() result to a string
Bram Moolenaar03413f42016-04-12 21:07:15 +02001052 reltimefloat() convert reltime() result to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001053
Yegappan Lakshmanan1755a912022-05-19 10:31:47 +01001054Autocmds: *autocmd-functions*
1055 autocmd_add() add a list of autocmds and groups
1056 autocmd_delete() delete a list of autocmds and groups
1057 autocmd_get() return a list of autocmds
1058
Bram Moolenaara3f41662010-07-11 19:01:06 +02001059 *buffer-functions* *window-functions* *arg-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060Buffers, windows and the argument list:
1061 argc() number of entries in the argument list
1062 argidx() current position in the argument list
Bram Moolenaar2d1fe052014-05-28 18:22:57 +02001063 arglistid() get id of the argument list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 argv() get one entry from the argument list
Bram Moolenaar931a2772019-07-04 16:54:54 +02001065 bufadd() add a file to the list of buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 bufexists() check if a buffer exists
1067 buflisted() check if a buffer exists and is listed
Bram Moolenaar931a2772019-07-04 16:54:54 +02001068 bufload() ensure a buffer is loaded
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 bufloaded() check if a buffer exists and is loaded
1070 bufname() get the name of a specific buffer
1071 bufnr() get the buffer number of a specific buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001072 tabpagebuflist() return List of buffers in a tab page
1073 tabpagenr() get the number of a tab page
1074 tabpagewinnr() like winnr() for a specified tab page
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 winnr() get the window number for the current window
Bram Moolenaar82af8712016-06-04 20:20:29 +02001076 bufwinid() get the window ID of a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 bufwinnr() get the window number of a specific buffer
1078 winbufnr() get the buffer number of a specific window
Bram Moolenaara3347722019-05-11 21:14:24 +02001079 listener_add() add a callback to listen to changes
Bram Moolenaar68e65602019-05-26 21:33:31 +02001080 listener_flush() invoke listener callbacks
Bram Moolenaara3347722019-05-11 21:14:24 +02001081 listener_remove() remove a listener callback
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001082 win_findbuf() find windows containing a buffer
1083 win_getid() get window ID of a window
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001084 win_gettype() get type of window
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001085 win_gotoid() go to window with ID
1086 win_id2tabwin() get tab and window nr from window ID
1087 win_id2win() get window nr from window ID
Daniel Steinbergee630312022-01-10 13:36:34 +00001088 win_move_separator() move window vertical separator
1089 win_move_statusline() move window status line
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001090 win_splitmove() move window to a split of another window
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001091 getbufinfo() get a list with buffer information
1092 gettabinfo() get a list with tab page information
1093 getwininfo() get a list with window information
Bram Moolenaar07ad8162018-02-13 13:59:59 +01001094 getchangelist() get a list of change list entries
Bram Moolenaar4f505882018-02-10 21:06:32 +01001095 getjumplist() get a list of jump list entries
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001096 swapfilelist() list of existing swap files in 'directory'
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001097 swapinfo() information about a swap file
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001098 swapname() get the swap file path of a buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001099
Bram Moolenaara3f41662010-07-11 19:01:06 +02001100Command line: *command-line-functions*
Ruslan Russkikh0407d622024-10-08 22:21:05 +02001101 getcmdcomplpat() get completion pattern of the current command
1102 line
Shougo Matsushita79d599b2022-05-07 12:48:29 +01001103 getcmdcompltype() get the type of the current command line
1104 completion
Shougo Matsushita69084282024-09-23 20:34:47 +02001105 getcmdline() get the current command line input
1106 getcmdprompt() get the current command line prompt
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001107 getcmdpos() get position of the cursor in the command line
Shougo Matsushita79d599b2022-05-07 12:48:29 +01001108 getcmdscreenpos() get screen position of the cursor in the
1109 command line
Shougo Matsushita07ea5f12022-08-27 12:22:25 +01001110 setcmdline() set the current command line
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001111 setcmdpos() set position of the cursor in the command line
1112 getcmdtype() return the current command-line type
Bram Moolenaarfb539272014-08-22 19:21:47 +02001113 getcmdwintype() return the current command-line window type
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001114 getcompletion() list of command-line completion matches
Bram Moolenaar038e09e2021-02-06 12:38:51 +01001115 fullcommand() get full command name
Hirohito Higashi31b78cc2025-04-21 19:39:15 +02001116 cmdcomplete_info() get command-line completion information
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001117
Bram Moolenaara3f41662010-07-11 19:01:06 +02001118Quickfix and location lists: *quickfix-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001119 getqflist() list of quickfix errors
1120 setqflist() modify a quickfix list
1121 getloclist() list of location list items
1122 setloclist() modify a location list
1123
Bram Moolenaara3f41662010-07-11 19:01:06 +02001124Insert mode completion: *completion-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001125 complete() set found matches
1126 complete_add() add to found matches
1127 complete_check() check if completion should be aborted
Bram Moolenaarfd133322019-03-29 12:20:27 +01001128 complete_info() get current completion information
glepnirbcd59952025-04-24 21:48:35 +02001129 complete_match() get insert completion start match col and
1130 trigger text
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001131 pumvisible() check if the popup menu is displayed
Bram Moolenaar5be4cee2019-09-27 19:34:08 +02001132 pum_getpos() position and size of popup menu if visible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133
Bram Moolenaara3f41662010-07-11 19:01:06 +02001134Folding: *folding-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 foldclosed() check for a closed fold at a specific line
1136 foldclosedend() like foldclosed() but return the last line
1137 foldlevel() check for the fold level at a specific line
1138 foldtext() generate the line displayed for a closed fold
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001139 foldtextresult() get the text displayed for a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140
Bram Moolenaara3f41662010-07-11 19:01:06 +02001141Syntax and highlighting: *syntax-functions* *highlighting-functions*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001142 clearmatches() clear all matches defined by |matchadd()| and
1143 the |:match| commands
1144 getmatches() get all matches defined by |matchadd()| and
1145 the |:match| commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 hlexists() check if a highlight group exists
Yegappan Lakshmanand1a8d652021-11-03 21:56:45 +00001147 hlget() get highlight group attributes
1148 hlset() set highlight group attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 hlID() get ID of a highlight group
1150 synID() get syntax ID at a specific position
1151 synIDattr() get a specific attribute of a syntax ID
1152 synIDtrans() get translated syntax ID
Bram Moolenaar166af9b2010-11-16 20:34:40 +01001153 synstack() get list of syntax IDs at a specific position
Christian Brabandt00ae5c52024-04-26 18:56:21 +02001154 synconcealed() get info about (syntax) concealing
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001155 diff_hlID() get highlight ID for diff mode at a position
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001156 matchadd() define a pattern to highlight (a "match")
Bram Moolenaarb3414592014-06-17 17:48:32 +02001157 matchaddpos() define a list of positions to highlight
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001158 matcharg() get info about |:match| arguments
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001159 matchdelete() delete a match defined by |matchadd()| or a
1160 |:match| command
1161 setmatches() restore a list of matches saved by
1162 |getmatches()|
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001163
Bram Moolenaara3f41662010-07-11 19:01:06 +02001164Spelling: *spell-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001165 spellbadword() locate badly spelled word at or after cursor
1166 spellsuggest() return suggested spelling corrections
1167 soundfold() return the sound-a-like equivalent of a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
Bram Moolenaara3f41662010-07-11 19:01:06 +02001169History: *history-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 histadd() add an item to a history
1171 histdel() delete an item from a history
1172 histget() get an item from a history
1173 histnr() get highest index of a history list
1174
Bram Moolenaara3f41662010-07-11 19:01:06 +02001175Interactive: *interactive-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001176 browse() put up a file requester
1177 browsedir() put up a directory requester
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 confirm() let the user make a choice
1179 getchar() get a character from the user
Bram Moolenaarf7a023e2021-06-07 18:50:01 +02001180 getcharstr() get a character from the user as a string
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 getcharmod() get modifiers for the last typed character
Bram Moolenaar09c6f262019-11-17 15:55:14 +01001182 getmousepos() get last known mouse position
Bram Moolenaar24dc19c2022-11-14 19:49:15 +00001183 getmouseshape() get name of the current mouse shape
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001184 echoraw() output characters as-is
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001185 feedkeys() put characters in the typeahead queue
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 input() get a line from the user
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001187 inputlist() let the user pick an entry from a list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 inputsecret() get a line from the user without showing it
1189 inputdialog() get a line from the user in a dialog
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001190 inputsave() save and clear typeahead
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 inputrestore() restore typeahead
1192
Bram Moolenaara3f41662010-07-11 19:01:06 +02001193GUI: *gui-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001194 getfontname() get name of current font being used
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001195 getwinpos() position of the Vim window
1196 getwinposx() X position of the Vim window
1197 getwinposy() Y position of the Vim window
Bram Moolenaar214641f2017-03-05 17:04:09 +01001198 balloon_show() set the balloon content
Bram Moolenaara2a80162017-11-21 23:09:50 +01001199 balloon_split() split a message for a balloon
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001200 balloon_gettext() get the text in the balloon
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001201
Bram Moolenaara3f41662010-07-11 19:01:06 +02001202Vim server: *server-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 serverlist() return the list of server names
Bram Moolenaar01164a62017-11-02 22:58:42 +01001204 remote_startserver() run a server
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 remote_send() send command characters to a Vim server
1206 remote_expr() evaluate an expression in a Vim server
1207 server2client() send a reply to a client of a Vim server
1208 remote_peek() check if there is a reply from a Vim server
1209 remote_read() read a reply from a Vim server
1210 foreground() move the Vim window to the foreground
1211 remote_foreground() move the Vim server window to the foreground
1212
Bram Moolenaara3f41662010-07-11 19:01:06 +02001213Window size and position: *window-size-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001214 winheight() get height of a specific window
1215 winwidth() get width of a specific window
Bram Moolenaarf0b03c42017-12-17 17:17:07 +01001216 win_screenpos() get screen position of a window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001217 winlayout() get layout of windows in a tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001218 winrestcmd() return command to restore window sizes
1219 winsaveview() get view of current window
1220 winrestview() restore saved view of current window
1221
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001222Mappings and Menus: *mapping-functions*
h-east29b85712021-07-26 21:54:04 +02001223 digraph_get() get |digraph|
1224 digraph_getlist() get all |digraph|s
1225 digraph_set() register |digraph|
1226 digraph_setlist() register multiple |digraph|s
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 hasmapto() check if a mapping exists
1228 mapcheck() check if a matching mapping exists
1229 maparg() get rhs of a mapping
Ernie Rael09661202022-04-25 14:40:44 +01001230 maplist() get list of all mappings
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001231 mapset() restore a mapping
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001232 menu_info() get information about a menu item
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001233 wildmenumode() check if the wildmode is active
1234
Bram Moolenaar683fa182015-11-30 21:38:24 +01001235Testing: *test-functions*
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001236 assert_equal() assert that two expressions values are equal
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001237 assert_equalfile() assert that two file contents are equal
Bram Moolenaar03413f42016-04-12 21:07:15 +02001238 assert_notequal() assert that two expressions values are not equal
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001239 assert_inrange() assert that an expression is inside a range
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +02001240 assert_match() assert that a pattern matches the value
Bram Moolenaar03413f42016-04-12 21:07:15 +02001241 assert_notmatch() assert that a pattern does not match the value
Bram Moolenaar683fa182015-11-30 21:38:24 +01001242 assert_false() assert that an expression is false
1243 assert_true() assert that an expression is true
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001244 assert_exception() assert that a command throws an exception
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001245 assert_beeps() assert that a command beeps
Bram Moolenaar0df60302021-04-03 15:15:47 +02001246 assert_nobeep() assert that a command does not cause a beep
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001247 assert_fails() assert that a command fails
Bram Moolenaar3c2881d2017-03-21 19:18:29 +01001248 assert_report() report a test failure
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001249 test_alloc_fail() make memory allocation fail
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001250 test_autochdir() enable 'autochdir' during startup
Bram Moolenaar036986f2017-03-16 17:41:02 +01001251 test_override() test with Vim internal overrides
1252 test_garbagecollect_now() free memory right now
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001253 test_garbagecollect_soon() set a flag to free memory soon
Bram Moolenaar68e65602019-05-26 21:33:31 +02001254 test_getvalue() get value of an internal variable
Yegappan Lakshmanan06011e12022-01-30 12:37:29 +00001255 test_gui_event() generate a GUI event for testing
Bram Moolenaar214641f2017-03-05 17:04:09 +01001256 test_ignore_error() ignore a specific error message
Christopher Plewright20b795e2022-12-20 20:01:58 +00001257 test_mswin_event() generate an MS-Windows event
Bram Moolenaar314dd792019-02-03 15:27:20 +01001258 test_null_blob() return a null Blob
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001259 test_null_channel() return a null Channel
1260 test_null_dict() return a null Dict
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001261 test_null_function() return a null Funcref
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001262 test_null_job() return a null Job
1263 test_null_list() return a null List
1264 test_null_partial() return a null Partial function
1265 test_null_string() return a null String
Yegappan Lakshmanan9cb865e2025-03-23 16:42:16 +01001266 test_null_tuple() return a null Tuple
Bram Moolenaar214641f2017-03-05 17:04:09 +01001267 test_settime() set the time Vim uses internally
Bram Moolenaarbb8476b2019-05-04 15:47:48 +02001268 test_setmouse() set the mouse position
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001269 test_feedinput() add key sequence to input buffer
1270 test_option_not_set() reset flag indicating option was set
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001271 test_refcount() return an expression's reference count
1272 test_srand_seed() set the seed value for srand()
1273 test_unknown() return a value with unknown type
1274 test_void() return a value with void type
Bram Moolenaar683fa182015-11-30 21:38:24 +01001275
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001276Inter-process communication: *channel-functions*
Bram Moolenaar51628222016-12-01 23:03:28 +01001277 ch_canread() check if there is something to read
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001278 ch_open() open a channel
1279 ch_close() close a channel
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001280 ch_close_in() close the in part of a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001281 ch_read() read a message from a channel
Bram Moolenaard09091d2019-01-17 16:07:22 +01001282 ch_readblob() read a Blob from a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001283 ch_readraw() read a raw message from a channel
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001284 ch_sendexpr() send a JSON message over a channel
1285 ch_sendraw() send a raw message over a channel
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001286 ch_evalexpr() evaluate an expression over channel
1287 ch_evalraw() evaluate a raw string over channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001288 ch_status() get status of a channel
1289 ch_getbufnr() get the buffer number of a channel
1290 ch_getjob() get the job associated with a channel
1291 ch_info() get channel information
1292 ch_log() write a message in the channel log file
1293 ch_logfile() set the channel log file
1294 ch_setoptions() set the options for a channel
Bram Moolenaara02a5512016-06-17 12:48:11 +02001295 json_encode() encode an expression to a JSON string
1296 json_decode() decode a JSON string to Vim types
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001297 js_encode() encode an expression to a JSON string
1298 js_decode() decode a JSON string to Vim types
Yegappan Lakshmanan810785c2024-12-30 10:29:44 +01001299 base64_encode() encode a blob into a base64 string
1300 base64_decode() decode a base64 string into a blob
Bram Moolenaar416bd912023-07-07 23:19:18 +01001301 err_teapot() give error 418 or 503
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001302
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001303Jobs: *job-functions*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001304 job_start() start a job
1305 job_stop() stop a job
1306 job_status() get the status of a job
1307 job_getchannel() get the channel used by a job
1308 job_info() get information about a job
1309 job_setoptions() set options for a job
1310
Bram Moolenaar162b7142018-12-21 15:17:36 +01001311Signs: *sign-functions*
1312 sign_define() define or update a sign
1313 sign_getdefined() get a list of defined signs
1314 sign_getplaced() get a list of placed signs
Bram Moolenaar6b7b7192019-01-11 13:42:41 +01001315 sign_jump() jump to a sign
Bram Moolenaar162b7142018-12-21 15:17:36 +01001316 sign_place() place a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001317 sign_placelist() place a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001318 sign_undefine() undefine a sign
1319 sign_unplace() unplace a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001320 sign_unplacelist() unplace a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001321
Bram Moolenaarc572da52017-08-27 16:52:01 +02001322Terminal window: *terminal-functions*
1323 term_start() open a terminal window and run a job
1324 term_list() get the list of terminal buffers
1325 term_sendkeys() send keystrokes to a terminal
1326 term_wait() wait for screen to be updated
1327 term_getjob() get the job associated with a terminal
1328 term_scrape() get row of a terminal screen
1329 term_getline() get a line of text from a terminal
1330 term_getattr() get the value of attribute {what}
1331 term_getcursor() get the cursor position of a terminal
1332 term_getscrolled() get the scroll count of a terminal
1333 term_getaltscreen() get the alternate screen flag
1334 term_getsize() get the size of a terminal
1335 term_getstatus() get the status of a terminal
1336 term_gettitle() get the title of a terminal
1337 term_gettty() get the tty name of a terminal
Bram Moolenaar7dda86f2018-04-20 22:36:41 +02001338 term_setansicolors() set 16 ANSI colors, used for GUI
1339 term_getansicolors() get 16 ANSI colors, used for GUI
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001340 term_dumpdiff() display difference between two screen dumps
1341 term_dumpload() load a terminal screen dump in a window
1342 term_dumpwrite() dump contents of a terminal screen to a file
1343 term_setkill() set signal to stop job in a terminal
1344 term_setrestore() set command to restore a terminal
1345 term_setsize() set the size of a terminal
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001346 term_setapi() set terminal JSON API function name prefix
Bram Moolenaarc572da52017-08-27 16:52:01 +02001347
Bram Moolenaar931a2772019-07-04 16:54:54 +02001348Popup window: *popup-window-functions*
1349 popup_create() create popup centered in the screen
1350 popup_atcursor() create popup just above the cursor position,
1351 closes when the cursor moves away
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001352 popup_beval() at the position indicated by v:beval_
1353 variables, closes when the mouse moves away
Bram Moolenaar931a2772019-07-04 16:54:54 +02001354 popup_notification() show a notification for three seconds
1355 popup_dialog() create popup centered with padding and border
1356 popup_menu() prompt for selecting an item from a list
1357 popup_hide() hide a popup temporarily
1358 popup_show() show a previously hidden popup
1359 popup_move() change the position and size of a popup
1360 popup_setoptions() override options of a popup
1361 popup_settext() replace the popup buffer contents
Christian Brabandtfbc37f12024-06-18 20:50:58 +02001362 popup_setbuf() set the popup buffer
Bram Moolenaar931a2772019-07-04 16:54:54 +02001363 popup_close() close one popup
1364 popup_clear() close all popups
1365 popup_filter_menu() select from a list of items
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001366 popup_filter_yesno() block until 'y' or 'n' is pressed
Bram Moolenaar931a2772019-07-04 16:54:54 +02001367 popup_getoptions() get current options for a popup
1368 popup_getpos() get actual position and size of a popup
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01001369 popup_findecho() get window ID for popup used for `:echowindow`
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001370 popup_findinfo() get window ID for popup info window
1371 popup_findpreview() get window ID for popup preview window
1372 popup_list() get list of all popup window IDs
1373 popup_locate() get popup window ID from its screen position
Bram Moolenaar931a2772019-07-04 16:54:54 +02001374
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001375Timers: *timer-functions*
1376 timer_start() create a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001377 timer_pause() pause or unpause a timer
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001378 timer_stop() stop a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001379 timer_stopall() stop all timers
1380 timer_info() get information about timers
Bram Moolenaar298b4402016-01-28 22:38:53 +01001381
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001382Tags: *tag-functions*
1383 taglist() get list of matching tags
1384 tagfiles() get a list of tags files
1385 gettagstack() get the tag stack of a window
1386 settagstack() modify the tag stack of a window
1387
1388Prompt Buffer: *promptbuffer-functions*
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001389 prompt_getprompt() get the effective prompt text for a buffer
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001390 prompt_setcallback() set prompt callback for a buffer
1391 prompt_setinterrupt() set interrupt callback for a buffer
1392 prompt_setprompt() set the prompt text for a buffer
1393
Yegappan Lakshmananf768c3d2022-08-22 13:15:13 +01001394Registers: *register-functions*
1395 getreg() get contents of a register
1396 getreginfo() get information about a register
1397 getregtype() get type of a register
1398 setreg() set contents and type of a register
1399 reg_executing() return the name of the register being executed
1400 reg_recording() return the name of the register being recorded
1401
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001402Text Properties: *text-property-functions*
1403 prop_add() attach a property at a position
Yegappan Lakshmananccfb7c62021-08-16 21:39:09 +02001404 prop_add_list() attach a property at multiple positions
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001405 prop_clear() remove all properties from a line or lines
1406 prop_find() search for a property
1407 prop_list() return a list of all properties in a line
1408 prop_remove() remove a property from a line
1409 prop_type_add() add/define a property type
1410 prop_type_change() change properties of a type
1411 prop_type_delete() remove a text property type
1412 prop_type_get() return the properties of a type
1413 prop_type_list() return a list of all property types
1414
1415Sound: *sound-functions*
1416 sound_clear() stop playing all sounds
1417 sound_playevent() play an event's sound
1418 sound_playfile() play a sound file
1419 sound_stop() stop playing a sound
1420
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001421Various: *various-functions*
1422 mode() get current editing mode
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001423 state() get current busy state
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001424 visualmode() last visual mode used
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 exists() check if a variable, function, etc. exists
Bram Moolenaar26735992021-08-08 14:43:22 +02001426 exists_compiled() like exists() but check at compile time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 has() check if a feature is supported in Vim
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001428 changenr() return number of most recent change
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 cscope_connection() check if a cscope connection exists
1430 did_filetype() check if a FileType autocommand was used
Yegappan Lakshmananfa378352024-02-01 22:05:27 +01001431 diff() diff two Lists of strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 eventhandler() check if invoked by an event handler
mikoto20001083cae2024-11-11 21:24:14 +01001433 getcellpixels() get List of cell pixel size
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001434 getpid() get process ID of Vim
ichizok663d18d2025-01-02 18:06:00 +01001435 getscriptinfo() get list of sourced Vim scripts
1436 getstacktrace() get current stack trace of Vim scripts
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001437 getimstatus() check if IME status is active
1438 interrupt() interrupt script execution
1439 windowsversion() get MS-Windows version
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001440 terminalprops() properties of the terminal
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001441
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 libcall() call a function in an external library
1443 libcallnr() idem, returning a number
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001444
Bram Moolenaar8d043172014-01-23 14:24:41 +01001445 undofile() get the name of the undo file
Devin J. Pohly5fee1112023-04-23 20:26:59 -05001446 undotree() return the state of the undo tree for a buffer
Bram Moolenaar8d043172014-01-23 14:24:41 +01001447
Bram Moolenaar8d043172014-01-23 14:24:41 +01001448 shiftwidth() effective value of 'shiftwidth'
1449
Bram Moolenaar063b9d12016-07-09 20:21:48 +02001450 wordcount() get byte/word/char count of buffer
1451
Ernie Raelc8e158b2024-07-09 18:39:52 +02001452 id() get unique string for item to use as a key
1453
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001454 luaeval() evaluate |Lua| expression
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001455 mzeval() evaluate |MzScheme| expression
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001456 perleval() evaluate Perl expression (|+perl|)
Bram Moolenaar8d043172014-01-23 14:24:41 +01001457 py3eval() evaluate Python expression (|+python3|)
1458 pyeval() evaluate Python expression (|+python|)
Bram Moolenaar690afe12017-01-28 18:34:47 +01001459 pyxeval() evaluate |python_x| expression
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001460 rubyeval() evaluate |Ruby| expression
1461
Bram Moolenaar9d87a372018-12-18 21:41:50 +01001462 debugbreak() interrupt a program being debugged
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001463
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464==============================================================================
1465*41.7* Defining a function
1466
1467Vim enables you to define your own functions. The basic function declaration
1468begins as follows: >
1469
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001470 def {name}({var1}, {var2}, ...): return-type
1471 {body}
1472 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473<
1474 Note:
1475 Function names must begin with a capital letter.
1476
1477Let's define a short function to return the smaller of two numbers. It starts
1478with this line: >
1479
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001480 def Min(num1: number, num2: number): number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001482This tells Vim that the function is named "Min", it takes two arguments that
1483are numbers: "num1" and "num2" and returns a number.
1484
1485The first thing you need to do is to check to see which number is smaller:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 >
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001487 if num1 < num2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489Let's assign the variable "smaller" the value of the smallest number: >
1490
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001491 var smaller: number
1492 if num1 < num2
1493 smaller = num1
1494 else
1495 smaller = num2
1496 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497
Bram Moolenaar63f32602022-06-09 20:45:54 +01001498The variable "smaller" is a local variable. It is declared to be a number,
1499that way Vim can warn you for any mistakes. Variables used inside a function
1500are local unless prefixed by something like "g:", "w:", or "b:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501
1502 Note:
1503 To access a global variable from inside a function you must prepend
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001504 "g:" to it. Thus "g:today" inside a function is used for the global
1505 variable "today", and "today" is another variable, local to the
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001506 function or the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001508You now use the `return` statement to return the smallest number to the user.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509Finally, you end the function: >
1510
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001511 return smaller
1512 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513
1514The complete function definition is as follows: >
1515
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001516 def Min(num1: number, num2: number): number
1517 var smaller: number
1518 if num1 < num2
1519 smaller = num1
1520 else
1521 smaller = num2
1522 endif
1523 return smaller
1524 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001526Obviously this is a verbose example. You can make it shorter by using two
1527return commands: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001528
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001529 def Min(num1: number, num2: number): number
1530 if num1 < num2
1531 return num1
1532 endif
1533 return num2
1534 enddef
1535
1536And if you remember the conditional expression, you need only one line: >
1537
1538 def Min(num1: number, num2: number): number
1539 return num1 < num2 ? num1 : num2
1540 enddef
Bram Moolenaar7c626922005-02-07 22:01:03 +00001541
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001542A user defined function is called in exactly the same way as a built-in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543function. Only the name is different. The Min function can be used like
1544this: >
1545
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001546 echo Min(5, 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001548Only now will the function be executed and the lines be parsed by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549If there are mistakes, like using an undefined variable or function, you will
1550now get an error message. When defining the function these errors are not
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001551detected. To get the errors sooner you can tell Vim to compile all the
1552functions in the script: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001554 defcompile
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001556Compiling functions takes a little time, but does report errors early. You
1557could use `:defcompile` at the end of your script while working on it, and
1558comment it out when everything is fine.
1559
1560For a function that does not return anything simply leave out the return type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001562 def SayIt(text: string)
1563 echo text
1564 enddef
1565
Bram Moolenaar63f32602022-06-09 20:45:54 +01001566If you want to return any kind of value, you can use the "any" return type: >
1567 def GetValue(): any
1568This disables type checking for the return value, use only when needed.
1569
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001570It is also possible to define a legacy function with `function` and
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001571`endfunction`. These do not have types and are not compiled. Therefore they
1572execute much slower.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573
1574
1575USING A RANGE
1576
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001577A line range can be used with a function call. The function will be called
1578once for every line in the range, with the cursor in that line. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001580 def Number()
1581 echo "line " .. line(".") .. " contains: " .. getline(".")
1582 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583
1584If you call this function with: >
1585
Bram Moolenaar63f32602022-06-09 20:45:54 +01001586 :10,15Number()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001588The function will be called six times, starting on line 10 and ending on line
158915.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590
1591
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592LISTING FUNCTIONS
1593
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001594The `function` command lists the names and arguments of all user-defined
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595functions: >
1596
1597 :function
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001598< def <SNR>86_Show(start: string, ...items: list<string>) ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 function GetVimIndent() ~
1600 function SetSyn(name) ~
1601
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001602The "<SNR>" prefix means that a function is script-local. |Vim9| functions
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +01001603will start with "def" and include argument and return types. Legacy functions
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001604are listed with "function".
1605
1606To see what a function does, use its name as an argument for `function`: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607
1608 :function SetSyn
1609< 1 if &syntax == '' ~
1610 2 let &syntax = a:name ~
1611 3 endif ~
1612 endfunction ~
1613
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001614To see the "Show" function you need to include the script prefix, since
1615multiple "Show" functions can be defined in different scripts. To find
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001616the exact name you can use `function`, but the result may be a very long list.
1617To only get the functions matching a pattern you can use the `filter` prefix:
1618>
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001619 :filter Show function
1620< def <SNR>86_Show(start: string, ...items: list<string>) ~
1621>
1622 :function <SNR>86_Show
1623< 1 echohl Title ~
1624 2 echo "start is " .. start ~
1625 etc.
1626
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627
1628DEBUGGING
1629
1630The line number is useful for when you get an error message or when debugging.
1631See |debug-scripts| about debugging mode.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001632
1633You can also set the 'verbose' option to 12 or higher to see all function
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634calls. Set it to 15 or higher to see every executed line.
1635
1636
1637DELETING A FUNCTION
1638
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001639To delete the SetSyn() function: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001641 :delfunction SetSyn
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001643Deleting only works for global functions and functions in legacy script, not
1644for functions defined in a |Vim9| script.
1645
1646You get an error when the function doesn't exist or cannot be deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaar7c626922005-02-07 22:01:03 +00001648
1649FUNCTION REFERENCES
1650
1651Sometimes it can be useful to have a variable point to one function or
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001652another. You can do it with a function reference variable. Often shortened
1653to "funcref". Example: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001654
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001655 def Right(): string
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001656 return 'Right!'
1657 enddef
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001658 def Wrong(): string
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001659 return 'Wrong!'
1660 enddef
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01001661
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001662 var Afunc = g:result == 1 ? Right : Wrong
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001663 echo Afunc()
Bram Moolenaar7c626922005-02-07 22:01:03 +00001664< Wrong! ~
1665
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001666This assumes "g:result" is not one. See |Funcref| for details.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001667
Bram Moolenaar7c626922005-02-07 22:01:03 +00001668Note that the name of a variable that holds a function reference must start
1669with a capital. Otherwise it could be confused with the name of a builtin
1670function.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001671
Bram Moolenaar63f32602022-06-09 20:45:54 +01001672
1673FURTHER READING
1674
1675Using a variable number of arguments is introduced in section |50.2|.
1676
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02001677More information about defining your own functions here: |user-functions|.
1678
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00001680*41.8* Lists and Dictionaries
1681
Yegappan Lakshmanan9cb865e2025-03-23 16:42:16 +01001682So far we have used the basic types String and Number. Vim also supports
1683three composite types: List, Tuple and Dictionary.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001684
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001685A List is an ordered sequence of items. The items can be any kind of value,
Bram Moolenaar7c626922005-02-07 22:01:03 +00001686thus you can make a List of numbers, a List of Lists and even a List of mixed
1687items. To create a List with three strings: >
1688
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001689 var alist = ['aap', 'noot', 'mies']
Bram Moolenaar7c626922005-02-07 22:01:03 +00001690
1691The List items are enclosed in square brackets and separated by commas. To
1692create an empty List: >
1693
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001694 var alist = []
Bram Moolenaar7c626922005-02-07 22:01:03 +00001695
1696You can add items to a List with the add() function: >
1697
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001698 var alist = []
1699 add(alist, 'foo')
1700 add(alist, 'bar')
1701 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001702< ['foo', 'bar'] ~
1703
1704List concatenation is done with +: >
1705
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001706 var alist = ['foo', 'bar']
1707 alist = alist + ['and', 'more']
1708 echo alist
1709< ['foo', 'bar', 'and', 'more'] ~
Bram Moolenaar7c626922005-02-07 22:01:03 +00001710
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001711Or, if you want to extend a List with a function, use `extend()`: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001712
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001713 var alist = ['one']
1714 extend(alist, ['two', 'three'])
1715 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001716< ['one', 'two', 'three'] ~
1717
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001718Notice that using `add()` will have a different effect than `extend()`: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001719
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001720 var alist = ['one']
1721 add(alist, ['two', 'three'])
1722 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001723< ['one', ['two', 'three']] ~
1724
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001725The second argument of add() is added as an item, now you have a nested list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001726
1727
1728FOR LOOP
1729
1730One of the nice things you can do with a List is iterate over it: >
1731
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001732 var alist = ['one', 'two', 'three']
1733 for n in alist
1734 echo n
1735 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001736< one ~
1737 two ~
1738 three ~
1739
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001740This will loop over each element in List "alist", assigning each value to
Bram Moolenaar7c626922005-02-07 22:01:03 +00001741variable "n". The generic form of a for loop is: >
1742
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001743 for {varname} in {list-expression}
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001744 {commands}
1745 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001746
1747To loop a certain number of times you need a List of a specific length. The
1748range() function creates one for you: >
1749
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001750 for a in range(3)
1751 echo a
1752 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001753< 0 ~
1754 1 ~
1755 2 ~
1756
1757Notice that the first item of the List that range() produces is zero, thus the
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001758last item is one less than the length of the list. Detail: Internally range()
1759does not actually create the list, so that a large range used in a for loop
1760works efficiently. When used elsewhere, the range is turned into an actual
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +01001761list, which takes more time for a long list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001762
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001763You can also specify the maximum value, the stride and even go backwards: >
1764
1765 for a in range(8, 4, -2)
1766 echo a
1767 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001768< 8 ~
1769 6 ~
1770 4 ~
1771
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001772A more useful example, looping over all the lines in the buffer: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001773
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001774 for line in getline(1, 50)
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001775 if line =~ "Date: "
1776 echo line
1777 endif
1778 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001779
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001780This looks into lines 1 to 50 (inclusive) and echoes any date found in there.
1781
1782For further reading see |Lists|.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001783
Yegappan Lakshmanan9cb865e2025-03-23 16:42:16 +01001784TUPLE
1785
1786A Tuple is an immutable ordered sequence of items. An item can be of any
1787type. Items can be accessed by their index number. To create a Tuple with
1788three strings: >
1789
1790 var atuple = ('one', 'two', 'three')
1791
1792The Tuple items are enclosed in parenthesis and separated by commas. To
1793create an empty Tuple: >
1794
1795 var atuple = ()
1796
1797The |:for| loop can be used to iterate over the items in a Tuple similar to a
1798List.
1799
1800For further reading see |Tuples|.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001801
1802DICTIONARIES
1803
1804A Dictionary stores key-value pairs. You can quickly lookup a value if you
1805know the key. A Dictionary is created with curly braces: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001806
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001807 var uk2nl = {one: 'een', two: 'twee', three: 'drie'}
Bram Moolenaar7c626922005-02-07 22:01:03 +00001808
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001809Now you can lookup words by putting the key in square brackets: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001810
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001811 echo uk2nl['two']
1812< twee ~
1813
1814If the key does not have special characters, you can use the dot notation: >
1815
1816 echo uk2nl.two
Bram Moolenaar7c626922005-02-07 22:01:03 +00001817< twee ~
1818
1819The generic form for defining a Dictionary is: >
1820
1821 {<key> : <value>, ...}
1822
1823An empty Dictionary is one without any keys: >
1824
1825 {}
1826
1827The possibilities with Dictionaries are numerous. There are various functions
1828for them as well. For example, you can obtain a list of the keys and loop
1829over them: >
1830
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001831 for key in keys(uk2nl)
1832 echo key
1833 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001834< three ~
1835 one ~
1836 two ~
1837
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001838You will notice the keys are not ordered. You can sort the list to get a
Bram Moolenaar7c626922005-02-07 22:01:03 +00001839specific order: >
1840
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001841 for key in sort(keys(uk2nl))
1842 echo key
1843 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001844< one ~
1845 three ~
1846 two ~
1847
1848But you can never get back the order in which items are defined. For that you
1849need to use a List, it stores items in an ordered sequence.
1850
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001851For further reading see |Dictionaries|.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001852
1853==============================================================================
Bram Moolenaar63f32602022-06-09 20:45:54 +01001854*41.9* White space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001856Blank lines are allowed in a script and ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001858Leading whitespace characters (blanks and TABs) are ignored, except when using
1859|:let-heredoc| without "trim".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001861Trailing whitespace is often ignored, but not always. One command that
Bram Moolenaar63f32602022-06-09 20:45:54 +01001862includes it is `map`. You have to watch out for that, it can cause hard to
1863understand mistakes. A generic solution is to never use trailing white space,
1864unless you really need it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865
1866To include a whitespace character in the value of an option, it must be
1867escaped by a "\" (backslash) as in the following example: >
1868
1869 :set tags=my\ nice\ file
1870
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001871If it would be written as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872
1873 :set tags=my nice file
1874
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001875This will issue an error, because it is interpreted as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876
1877 :set tags=my
1878 :set nice
1879 :set file
1880
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001881|Vim9| script is very picky when it comes to white space. This was done
1882intentionally to make sure scripts are easy to read and to avoid mistakes.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001883If you use white space sensibly it will just work. When not you will get an
1884error message telling you where white space is missing or should be removed.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001885
Bram Moolenaar63f32602022-06-09 20:45:54 +01001886==============================================================================
1887*41.10* Line continuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
Bram Moolenaar63f32602022-06-09 20:45:54 +01001889In legacy Vim script line continuation is done by preceding a continuation
1890line with a backslash: >
1891 let mylist = [
1892 \ 'one',
1893 \ 'two',
1894 \ ]
1895
1896This requires the 'cpo' option to exclude the "C" flag. Normally this is done
1897by putting this at the start of the script: >
1898 let s:save_cpo = &cpo
1899 set cpo&vim
1900
1901And restore the option at the end of the script: >
1902 let &cpo = s:save_cpo
1903 unlet s:save_cpo
1904
1905A few more details can be found here: |line-continuation|.
1906
1907In |Vim9| script the backslash can still be used, but in most places it is not
1908needed: >
1909 var mylist = [
1910 'one',
1911 'two',
1912 ]
1913
1914Also, the 'cpo' option does not need to be changed. See
1915|vim9-line-continuation| for details.
1916
1917==============================================================================
1918*41.11* Comments
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001920In |Vim9| script the character # starts a comment. That character and
1921everything after it until the end-of-line is considered a comment and
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922is ignored, except for commands that don't consider comments, as shown in
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001923examples below. A comment can start on any character position on the line,
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001924but not when it is part of the command, e.g. inside a string.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001925
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01001926The character " (the double quote mark) starts a comment in legacy script.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001927This involves some cleverness to make sure double quoted strings are not
1928recognized as comments (just one reason to prefer |Vim9| script).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929
1930There is a little "catch" with comments for some commands. Examples: >
1931
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001932 abbrev dev development # shorthand
1933 map <F3> o#include # insert include
1934 execute cmd # do it
1935 !ls *.c # list C files
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001937- The abbreviation 'dev' will be expanded to 'development # shorthand'.
1938- The mapping of <F3> will actually be the whole line after the 'o# ....'
1939 including the '# insert include'.
1940- The `execute` command will give an error.
1941- The `!` command will send everything after it to the shell, most likely
1942 causing an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001944There can be no comment after `map`, `abbreviate`, `execute` and `!` commands
1945(there are a few more commands with this restriction). For the `map`,
1946`abbreviate` and `execute` commands there is a trick: >
1947
1948 abbrev dev development|# shorthand
1949 map <F3> o#include|# insert include
1950 execute '!ls *.c' |# do it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951
1952With the '|' character the command is separated from the next one. And that
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001953next command is only a comment. The last command, using `execute` is a
1954general solution, it works for all commands that do not accept a comment or a
1955'|' to separate the next command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956
1957Notice that there is no white space before the '|' in the abbreviation and
1958mapping. For these commands, any character until the end-of-line or '|' is
1959included. As a consequence of this behavior, you don't always see that
1960trailing whitespace is included: >
1961
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001962 map <F4> o#include
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001964Here it is intended, in other cases it might be accidental. To spot these
1965problems, you can highlight trailing spaces: >
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001966 match Search /\s\+$/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001968For Unix there is one special way to comment a line, that allows making a Vim
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001969script executable, and it also works in legacy script: >
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001970 #!/usr/bin/env vim -S
1971 echo "this is a Vim script"
1972 quit
1973
Bram Moolenaar63f32602022-06-09 20:45:54 +01001974==============================================================================
1975*41.12* Fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976
Bram Moolenaar63f32602022-06-09 20:45:54 +01001977The end-of-line character depends on the system. For Vim scripts it is
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001978recommended to always use the Unix fileformat. Lines are then separated with
1979the Newline character. This also works on any other system. That way you can
1980copy your Vim scripts from MS-Windows to Unix and they still work. See
1981|:source_crnl|. To be sure it is set right, do this before writing the file:
1982>
Bram Moolenaar63f32602022-06-09 20:45:54 +01001983 :setlocal fileformat=unix
Bram Moolenaar2d8ed022022-05-21 13:08:16 +01001984
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001985When using "dos" fileformat, lines are separated with CR-NL, two characters.
1986The CR character causes various problems, better avoid this.
1987
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989
Bram Moolenaar63f32602022-06-09 20:45:54 +01001990Advance information about writing Vim script is in |usr_50.txt|.
1991
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992Next chapter: |usr_42.txt| Add new menus
1993
Bram Moolenaard473c8c2018-08-11 18:00:22 +02001994Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: