blob: a54a991f1364d229c21e951abc3676cc9cebb9bb [file] [log] [blame]
Ubaldo Tiberic593b9e2024-06-09 18:47:53 +02001*usr_41.txt* For Vim version 9.1. Last change: 2024 Jun 09
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
33interpret and execute. This includes files written in Vim's scripting language
34like 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
38With a slight abuse of nomenclature, we will use "Vim script" to refer to the
39Vim scripting language throughout this documentation. This shorthand helps to
40streamline explanations and discussions about scripting with Vim.
41
42A Vim plugin is a collection of one or more Vim scripts, along with additional
43files like help documentation, configuration files, and other resources,
44designed to add specific features or functionalities to Vim. A plugin can
45provide new commands, enhance existing capabilities, and integrate external
46tools or services into the Vim environment.
47
Bram Moolenaar071d4272004-06-13 20:20:40 +000048Your first experience with Vim scripts is the vimrc file. Vim reads it when
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +010049it starts up and executes the commands. You can set options to the values you
50prefer, define mappings, select plugins and much more. You can use any colon
51command in it (commands that start with a ":"; these are sometimes referred to
52as Ex commands or command-line commands).
Bram Moolenaar04fb9162021-12-30 20:24:12 +000053
54Syntax files are also Vim scripts. As are files that set options for a
Bram Moolenaar071d4272004-06-13 20:20:40 +000055specific file type. A complicated macro can be defined by a separate Vim
56script file. You can think of other uses yourself.
57
Bram Moolenaar04fb9162021-12-30 20:24:12 +000058Vim script comes in two flavors: legacy and |Vim9|. Since this help file is
59for new users, we'll teach you the newer and more convenient |Vim9| syntax.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +010060While legacy script is particularly for Vim, |Vim9| script looks more like
61other languages, such as JavaScript and TypeScript.
Bram Moolenaar04fb9162021-12-30 20:24:12 +000062
63To try out Vim script the best way is to edit a script file and source it.
64Basically: >
65 :edit test.vim
66 [insert the script lines you want]
67 :w
68 :source %
69
Bram Moolenaar071d4272004-06-13 20:20:40 +000070Let's start with a simple example: >
71
Bram Moolenaar04fb9162021-12-30 20:24:12 +000072 vim9script
73 var i = 1
74 while i < 5
75 echo "count is" i
76 i += 1
77 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +000078<
Bram Moolenaar7c626922005-02-07 22:01:03 +000079The output of the example code is:
80
81 count is 1 ~
82 count is 2 ~
83 count is 3 ~
84 count is 4 ~
85
Bram Moolenaar04fb9162021-12-30 20:24:12 +000086In the first line the `vim9script` command makes clear this is a new, |Vim9|
Bram Moolenaar016188f2022-06-06 20:52:59 +010087script file. That matters for how the rest of the file is used. It is
Doug Kearnsdb7622e2024-02-25 15:21:54 +010088recommended to put it in the very first line, before any comments.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +010089 *vim9-declarations*
Bram Moolenaar04fb9162021-12-30 20:24:12 +000090The `var i = 1` command declares the "i" variable and initializes it. The
Bram Moolenaar7c626922005-02-07 22:01:03 +000091generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000092
Bram Moolenaar04fb9162021-12-30 20:24:12 +000093 var {name} = {expression}
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
95In this case the variable name is "i" and the expression is a simple value,
96the number one.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097
Bram Moolenaar04fb9162021-12-30 20:24:12 +000098The `while` command starts a loop. The generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000099
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000100 while {condition}
101 {statements}
102 endwhile
103
104The statements until the matching `endwhile` are executed for as long as the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105condition is true. The condition used here is the expression "i < 5". This
106is true when the variable i is smaller than five.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107 Note:
108 If you happen to write a while loop that keeps on running, you can
109 interrupt it by pressing CTRL-C (CTRL-Break on MS-Windows).
110
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000111The `echo` command prints its arguments. In this case the string "count is"
Bram Moolenaar7c626922005-02-07 22:01:03 +0000112and the value of the variable i. Since i is one, this will print:
113
114 count is 1 ~
115
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000116Then there is the `i += 1` command. This does the same thing as "i = i + 1",
117it adds one to the variable i and assigns the new value to the same variable.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000118
119The example was given to explain the commands, but would you really want to
Bram Moolenaar214641f2017-03-05 17:04:09 +0100120make such a loop, it can be written much more compact: >
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000121
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000122 for i in range(1, 4)
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100123 echo $"count is {i}"
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000124 endfor
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000125
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100126We won't explain how `for`, `range()`and `$"string"` work until later. Follow
127the links if you are impatient.
128
129
130TRYING OUT EXAMPLES
131
132You can easily try out most examples in these help files without saving the
Bram Moolenaar63f32602022-06-09 20:45:54 +0100133commands to a file. For example, to try out the "for" loop above do this:
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001341. position the cursor on the "for"
1352. start Visual mode with "v"
1363. move down to the "endfor"
1374. press colon, then "so" and Enter
138
139After pressing colon you will see ":'<,'>", which is the range of the Visually
140selected text.
141
142For some commands it matters they are executed as in |Vim9| script. But typed
143commands normally use legacy script syntax, such as the example below that
144causes the E1004 error. For that use this fourth step:
1454. press colon, then "vim9 so" and Enter
146
147"vim9" is short for `vim9cmd`, which is a command modifier to execute the
148following command in |Vim9| syntax.
149
150Note that this won't work for examples that require a script context.
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000151
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200153FOUR KINDS OF NUMBERS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100155Numbers can be decimal, hexadecimal, octal and binary.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200156
157A hexadecimal number starts with "0x" or "0X". For example "0x1f" is decimal
Bram Moolenaar76db9e02022-11-09 21:21:04 +000015831 and "0x1234" is decimal 4660.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200159
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000160An octal number starts with "0o", "0O". "0o17" is decimal 15.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200161
162A binary number starts with "0b" or "0B". For example "0b101" is decimal 5.
163
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000164A decimal number is just digits. Careful: In legacy script don't put a zero
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100165before a decimal number, it will be interpreted as an octal number! That's
166one reason to use |Vim9| script.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200167
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100168The `echo` command evaluates its argument and when it is a number always
169prints the decimal form. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000171 echo 0x7f 0o36
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172< 127 30 ~
173
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200174A number is made negative with a minus sign. This also works for hexadecimal,
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000175octal and binary numbers: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000177 echo -0x7f
178< -127 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000180A minus sign is also used for subtraction. This can sometimes lead to
181confusion. If we put a minus sign before both numbers we get an error: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000183 echo -0x7f -0o36
184< E1004: White space required before and after '-' at "-0o36" ~
185
186Note: if you are not using a |Vim9| script to try out these commands but type
187them directly, they will be executed as legacy script. Then the echo command
188sees the second minus sign as subtraction. To get the error, prefix the
189command with `vim9cmd`: >
190
191 vim9cmd echo -0x7f -0o36
192< E1004: White space required before and after '-' at "-0o36" ~
193
194White space in an expression is often required to make sure it is easy to read
195and avoid errors. Such as thinking that the "-0o36" above makes the number
196negative, while it is actually seen as a subtraction.
197
198To actually have the minus sign be used for negation, you can put the second
Bram Moolenaar944697a2022-02-20 19:48:20 +0000199expression in parentheses: >
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000200
201 echo -0x7f (-0o36)
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100202< -127 -30 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203
204==============================================================================
205*41.2* Variables
206
207A variable name consists of ASCII letters, digits and the underscore. It
208cannot start with a digit. Valid variable names are:
209
210 counter
211 _aap3
212 very_long_variable_name_with_underscores
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100213 CamelCaseName
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 LENGTH
215
Bram Moolenaar63f32602022-06-09 20:45:54 +0100216Invalid names are "foo.bar" and "6var".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000217
218Some variables are global. To see a list of currently defined global
219variables type this command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
221 :let
222
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100223You can use global variables everywhere. However, it is too easy to use the
224same name in two unrelated scripts. Therefore variables declared in a script
225are local to that script. For example, if you have this in "script1.vim": >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000227 vim9script
228 var counter = 5
229 echo counter
230< 5 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000232And you try to use the variable in "script2.vim": >
233
234 vim9script
235 echo counter
236< E121: Undefined variable: counter ~
237
238Using a script-local variable means you can be sure that it is only changed in
239that script and not elsewhere.
240
241If you do want to share variables between scripts, use the "g:" prefix and
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100242assign the value directly, do not use `var`. And use a specific name to avoid
243mistakes. Thus in "script1.vim": >
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000244
245 vim9script
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100246 g:mash_counter = 5
247 echo g:mash_counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000248< 5 ~
249
250And then in "script2.vim": >
251
252 vim9script
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100253 echo g:mash_counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000254< 5 ~
255
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100256Global variables can also be accessed on the command line, E.g. typing this: >
257 echo g:mash_counter
258That will not work for a script-local variable.
259
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000260More about script-local variables here: |script-variable|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261
262There are more kinds of variables, see |internal-variables|. The most often
263used ones are:
264
265 b:name variable local to a buffer
266 w:name variable local to a window
267 g:name global variable (also in a function)
268 v:name variable predefined by Vim
269
270
271DELETING VARIABLES
272
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000273Variables take up memory and show up in the output of the `let` command. To
274delete a global variable use the `unlet` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000276 unlet g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000278This deletes the global variable "g:counter" to free up the memory it uses.
279If you are not sure if the variable exists, and don't want an error message
280when it doesn't, append !: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000282 unlet! g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100284You cannot `unlet` script-local variables in |Vim9| script, only in legacy
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000285script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286
Bram Moolenaar48c3f4e2022-08-08 15:42:38 +0100287When a script has been processed to the end, the local variables declared
288there will not be deleted. Functions defined in the script can use them.
289Example:
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000290>
291 vim9script
292 var counter = 0
293 def g:GetCount(): number
Bram Moolenaar48c3f4e2022-08-08 15:42:38 +0100294 counter += 1
295 return counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000296 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000298Every time you call the function it will return the next count: >
299 :echo g:GetCount()
300< 1 ~
301>
302 :echo g:GetCount()
303< 2 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100305If you are worried a script-local variable is consuming too much memory, set
306it to an empty or null value after you no longer need it. Example: >
307 var lines = readfile(...)
308 ...
309 lines = []
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100311Note: below we'll leave out the `vim9script` line from examples, so we can
312concentrate on the relevant commands, but you'll still need to put it at the
313top of your script file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
315
316STRING VARIABLES AND CONSTANTS
317
318So far only numbers were used for the variable value. Strings can be used as
Bram Moolenaar7c626922005-02-07 22:01:03 +0000319well. Numbers and strings are the basic types of variables that Vim supports.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000320Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000322 var name = "Peter"
323 echo name
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000324< Peter ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000326Every variable has a type. Very often, as in this example, the type is
327defined by assigning a value. This is called type inference. If you do not
328want to give the variable a value yet, you need to specify the type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000330 var name: string
331 var age: number
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100332 if male
333 name = "Peter"
334 age = 42
335 else
336 name = "Elisa"
337 age = 45
338 endif
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000339
340If you make a mistake and try to assign the wrong type of value you'll get an
341error: >
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100342
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000343 age = "Peter"
344< E1012: Type mismatch; expected number but got string ~
345
346More about types in |41.8|.
347
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100348To assign a string value to a variable, you can use a string constant. There
349are two types of these. First the string in double quotes, as we used
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000350already. If you want to include a double quote inside the string, put a
351backslash in front of it: >
352
353 var name = "he is \"Peter\""
354 echo name
355< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100357To avoid the need for backslashes, you can use a string in single quotes: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000359 var name = 'he is "Peter"'
360 echo name
361< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362
Bram Moolenaar7c626922005-02-07 22:01:03 +0000363Inside a single-quote string all the characters are as they are. Only the
364single quote itself is special: you need to use two to get one. A backslash
365is taken literally, thus you can't use it to change the meaning of the
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000366character after it: >
367
368 var name = 'P\e''ter'''
369 echo name
370< P\e'ter' ~
371
372In double-quote strings it is possible to use special characters. Here are a
373few useful ones:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374
375 \t <Tab>
376 \n <NL>, line break
377 \r <CR>, <Enter>
378 \e <Esc>
379 \b <BS>, backspace
380 \" "
381 \\ \, backslash
382 \<Esc> <Esc>
383 \<C-W> CTRL-W
384
385The last two are just examples. The "\<name>" form can be used to include
386the special key "name".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000387
388See |expr-quote| for the full list of special items in a string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389
390==============================================================================
391*41.3* Expressions
392
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000393Vim has a fairly standard way to handle expressions. You can read the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394definition here: |expression-syntax|. Here we will show the most common
395items.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000396
397The numbers, strings and variables mentioned above are expressions by
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398themselves. Thus everywhere an expression is expected, you can use a number,
399string or variable. Other basic items in an expression are:
400
401 $NAME environment variable
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100402 &name option value
403 @r register contents
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404
405Examples: >
406
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000407 echo "The value of 'tabstop' is" &ts
408 echo "Your home directory is" $HOME
409 if @a == 'text'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000411The &name form can also be used to set an option value, do something and
412restore the old value. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000414 var save_ic = &ic
415 set noic
416 s/The Start/The Beginning/
417 &ic = save_ic
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418
419This makes sure the "The Start" pattern is used with the 'ignorecase' option
Bram Moolenaar7c626922005-02-07 22:01:03 +0000420off. Still, it keeps the value that the user had set. (Another way to do
421this would be to add "\C" to the pattern, see |/\C|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422
423
424MATHEMATICS
425
426It becomes more interesting if we combine these basic items. Let's start with
427mathematics on numbers:
428
429 a + b add
430 a - b subtract
431 a * b multiply
432 a / b divide
433 a % b modulo
434
435The usual precedence is used. Example: >
436
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000437 echo 10 + 5 * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438< 20 ~
439
Bram Moolenaar00654022011-02-25 14:42:19 +0100440Grouping is done with parentheses. No surprises here. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000442 echo (10 + 5) * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443< 30 ~
444
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100445
446OTHERS
447
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200448Strings can be concatenated with ".." (see |expr6|). Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100450 echo "Name: " .. name
451 Name: Peter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000453When the "echo" command gets multiple arguments, it separates them with a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454space. In the example the argument is a single expression, thus no space is
455inserted.
456
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100457If you don't like the concatenation you can use the $"string" form, which
458accepts an expression in curly braces: >
459 echo $"Name: {name}"
460
Bram Moolenaarb59ae592022-11-23 23:46:31 +0000461See |interpolated-string| for more information.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100462
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000463Borrowed from the C language is the conditional expression: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464
465 a ? b : c
466
467If "a" evaluates to true "b" is used, otherwise "c" is used. Example: >
468
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000469 var nr = 4
470 echo nr > 5 ? "nr is big" : "nr is small"
471< nr is small ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472
473The three parts of the constructs are always evaluated first, thus you could
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000474see it works as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475
476 (a) ? (b) : (c)
477
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100478There is also the falsy operator: >
479 echo name ?? "No name given"
480See |??|.
481
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482==============================================================================
483*41.4* Conditionals
484
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000485The `if` commands executes the following statements, until the matching
486`endif`, only when a condition is met. The generic form is:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000488 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000490 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000492Only when the expression {condition} evaluates to true or one will the
493{statements} be executed. If they are not executed they must still be valid
494commands. If they contain garbage, Vim won't be able to find the matching
495`endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000497You can also use `else`. The generic form for this is:
498
499 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000501 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000503 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000505The second {statements} block is only executed if the first one isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000507Finally, there is `elseif`
508
509 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000511 elseif {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000513 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000515This works just like using `else` and then `if`, but without the need for an
516extra `endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000518A useful example for your vimrc file is checking the 'term' option and doing
519something depending upon its value: >
520
521 if &term == "xterm"
522 # Do stuff for xterm
523 elseif &term == "vt100"
524 # Do stuff for a vt100 terminal
525 else
526 # Do something for other terminals
527 endif
528
529This uses "#" to start a comment, more about that later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530
531
532LOGIC OPERATIONS
533
534We already used some of them in the examples. These are the most often used
535ones:
536
537 a == b equal to
538 a != b not equal to
539 a > b greater than
540 a >= b greater than or equal to
541 a < b less than
542 a <= b less than or equal to
543
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000544The result is true if the condition is met and false otherwise. An example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100546 if v:version >= 800
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000547 echo "congratulations"
548 else
549 echo "you are using an old version, upgrade!"
550 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551
552Here "v:version" is a variable defined by Vim, which has the value of the Vim
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100553version. 800 is for version 8.0, version 8.1 has the value 801. This is
554useful to write a script that works with multiple versions of Vim.
555See |v:version|. You can also check for a specific feature with `has()` or a
556specific patch, see |has-patch|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557
558The logic operators work both for numbers and strings. When comparing two
559strings, the mathematical difference is used. This compares byte values,
560which may not be right for some languages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000562If you try to compare a string with a number you will get an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000564For strings there are two more useful items:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000566 str =~ pat matches with
567 str !~ pat does not match with
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000569The left item "str" is used as a string. The right item "pat" is used as a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570pattern, like what's used for searching. Example: >
571
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000572 if str =~ " "
573 echo "str contains a space"
574 endif
575 if str !~ '\.$'
576 echo "str does not end in a full stop"
577 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
579Notice the use of a single-quote string for the pattern. This is useful,
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100580because patterns tend to contain many backslashes and backslashes need to be
581doubled in a double-quote string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000583The match is not anchored, if you want to match the whole string start with
584"^" and end with "$".
585
586The 'ignorecase' option is not used when comparing strings. When you do want
587to ignore case append "?". Thus "==?" compares two strings to be equal while
588ignoring case. For the full table see |expr-==|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589
590
591MORE LOOPING
592
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000593The `while` command was already mentioned. Two more statements can be used in
594between the `while` and the `endwhile`:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000596 continue Jump back to the start of the while loop; the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 loop continues.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000598 break Jump forward to the `endwhile`; the loop is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 discontinued.
600
601Example: >
602
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000603 var counter = 1
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000604 while counter < 40
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000605 if skip_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000606 continue
607 endif
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000608 if last_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000609 break
610 endif
611 sleep 50m
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000612 ++counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000613 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000615The `sleep` command makes Vim take a nap. The "50m" specifies fifty
616milliseconds. Another example is `sleep 4`, which sleeps for four seconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100618`continue` and `break` can also be used in between `for` and `endfor`.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000619Even more looping can be done with the `for` command, see below in |41.8|.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000620
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621==============================================================================
622*41.5* Executing an expression
623
624So far the commands in the script were executed by Vim directly. The
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000625`execute` command allows executing the result of an expression. This is a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626very powerful way to build commands and execute them.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000628An example is to jump to a tag, which is contained in a variable: >
629
630 execute "tag " .. tag_name
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200632The ".." is used to concatenate the string "tag " with the value of variable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633"tag_name". Suppose "tag_name" has the value "get_cmd", then the command that
634will be executed is: >
635
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000636 tag get_cmd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000638The `execute` command can only execute Ex commands. The `normal` command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639executes Normal mode commands. However, its argument is not an expression but
640the literal command characters. Example: >
641
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000642 normal gg=G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000644This jumps to the first line with "gg" and formats all lines with the "="
645operator and the "G" movement.
646
647To make `normal` work with an expression, combine `execute` with it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648Example: >
649
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000650 execute "normal " .. count .. "j"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000652This will move the cursor "count" lines down.
653
654Make sure that the argument for `normal` is a complete command. Otherwise
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100655Vim will run into the end of the argument and silently abort the command. For
656example, if you start the delete operator, you must give the movement command
657also. This works: >
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100658
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000659 normal d$
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000661This does nothing: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000663 normal d
664
665If you start Insert mode and do not end it with Esc, it will end anyway. This
666works to insert "new text": >
667
668 execute "normal inew text"
669
670If you want to do something after inserting text you do need to end Insert
671mode: >
672
673 execute "normal inew text\<Esc>b"
674
675This inserts "new text" and puts the cursor on the first letter of "text".
676Notice the use of the special key "\<Esc>". This avoids having to enter a
677real <Esc> character in your script. That is where `execute` with a
678double-quote string comes in handy.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100680If you don't want to execute a string as a command but evaluate it to get the
681result of the expression, you can use the eval() function: >
Bram Moolenaar7c626922005-02-07 22:01:03 +0000682
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000683 var optname = "path"
684 var optvalue = eval('&' .. optname)
Bram Moolenaar7c626922005-02-07 22:01:03 +0000685
686A "&" character is prepended to "path", thus the argument to eval() is
687"&path". The result will then be the value of the 'path' option.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000688
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689==============================================================================
690*41.6* Using functions
691
692Vim defines many functions and provides a large amount of functionality that
693way. A few examples will be given in this section. You can find the whole
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000694list below: |function-list|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100696A function is called with the parameters in between parentheses, separated by
697commas. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100699 search("Date: ", "W")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700
701This calls the search() function, with arguments "Date: " and "W". The
702search() function uses its first argument as a search pattern and the second
703one as flags. The "W" flag means the search doesn't wrap around the end of
704the file.
705
Bram Moolenaar76db9e02022-11-09 21:21:04 +0000706Using the `call` command is optional in |Vim9| script. It is required in
Bram Moolenaar63f32602022-06-09 20:45:54 +0100707legacy script and on the command line: >
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000708
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100709 call search("Date: ", "W")
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000710
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711A function can be called in an expression. Example: >
712
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000713 var line = getline(".")
714 var repl = substitute(line, '\a', "*", "g")
715 setline(".", repl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716
Bram Moolenaar7c626922005-02-07 22:01:03 +0000717The getline() function obtains a line from the current buffer. Its argument
718is a specification of the line number. In this case "." is used, which means
719the line where the cursor is.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000720
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +0100721The substitute() function does something similar to the `:substitute` command.
722The first argument "line" is the string on which to perform the substitution.
723The second argument '\a' is the pattern, the third "*" is the replacement
724string. Finally, the last argument "g" is the flags.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000725
726The setline() function sets the line, specified by the first argument, to a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727new string, the second argument. In this example the line under the cursor is
728replaced with the result of the substitute(). Thus the effect of the three
729statements is equal to: >
730
731 :substitute/\a/*/g
732
Bram Moolenaar63f32602022-06-09 20:45:54 +0100733Using the functions becomes interesting when you do more work before and
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734after the substitute() call.
735
736
737FUNCTIONS *function-list*
738
739There are many functions. We will mention them here, grouped by what they are
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000740used for. You can find an alphabetical list here: |builtin-function-list|.
741Use CTRL-] on the function name to jump to detailed help on it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742
Bram Moolenaara3f41662010-07-11 19:01:06 +0200743String manipulation: *string-functions*
Bram Moolenaar9d401282019-04-06 13:18:12 +0200744 nr2char() get a character by its number value
745 list2str() get a character string from a list of numbers
746 char2nr() get number value of a character
747 str2list() get list of numbers from a string
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000748 str2nr() convert a string to a Number
749 str2float() convert a string to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000750 printf() format a string according to % items
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 escape() escape characters in a string with a '\'
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000752 shellescape() escape a string for use with a shell command
753 fnameescape() escape a file name for use with a Vim command
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000754 tr() translate characters from one set to another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 strtrans() translate a string to make it printable
Bram Moolenaar7b2d8722022-09-12 15:16:29 +0100756 keytrans() translate internal keycodes to a form that
757 can be used by |:map|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 tolower() turn a string to lowercase
759 toupper() turn a string to uppercase
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200760 charclass() class of a character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 match() position where a pattern matches in a string
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +0100762 matchbufline() all the matches of a pattern in a buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 matchend() position where a pattern match ends in a string
Bram Moolenaar635414d2020-09-11 22:25:15 +0200764 matchfuzzy() fuzzy matches a string in a list of strings
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +0200765 matchfuzzypos() fuzzy matches a string in a list of strings
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 matchstr() match of a pattern in a string
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +0100767 matchstrlist() all the matches of a pattern in a List of
768 strings
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200769 matchstrpos() match and positions of a pattern in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000770 matchlist() like matchstr() and also return submatches
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 stridx() first index of a short string in a long string
772 strridx() last index of a short string in a long string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100773 strlen() length of a string in bytes
Bram Moolenaar70ce8a12021-03-14 19:02:09 +0100774 strcharlen() length of a string in characters
775 strchars() number of characters in a string
Christian Brabandt67672ef2023-04-24 21:09:54 +0100776 strutf16len() number of UTF-16 code units in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100777 strwidth() size of string when displayed
778 strdisplaywidth() size of string when displayed, deals with tabs
Bram Moolenaar08aac3c2020-08-28 21:04:24 +0200779 setcellwidths() set character cell width overrides
Kota Kato66bb9ae2023-01-17 18:31:56 +0000780 getcellwidths() get character cell width overrides
Yegappan Lakshmanan03ff1c22023-05-06 14:08:21 +0100781 reverse() reverse the order of characters in a string
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 substitute() substitute a pattern match with a string
Bram Moolenaar251e1912011-06-19 05:09:16 +0200783 submatch() get a specific match in ":s" and substitute()
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200784 strpart() get part of a string using byte index
785 strcharpart() get part of a string using char index
Bram Moolenaar6601b622021-01-13 21:47:15 +0100786 slice() take a slice of a string, using char index in
787 Vim9 script
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200788 strgetchar() get character from a string using char index
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 expand() expand special keywords
Bram Moolenaar80dad482019-06-09 17:22:31 +0200790 expandcmd() expand a command like done for `:edit`
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 iconv() convert text from one encoding to another
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000792 byteidx() byte index of a character in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100793 byteidxcomp() like byteidx() but count composing characters
Bram Moolenaar17793ef2020-12-28 12:56:58 +0100794 charidx() character index of a byte in a string
Christian Brabandt67672ef2023-04-24 21:09:54 +0100795 utf16idx() UTF-16 index of a byte in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000796 repeat() repeat a string multiple times
797 eval() evaluate a string expression
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200798 execute() execute an Ex command and get the output
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200799 win_execute() like execute() but in a specified window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100800 trim() trim characters from a string
Bram Moolenaar0b39c3f2020-08-30 15:52:10 +0200801 gettext() lookup message translation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802
Bram Moolenaara3f41662010-07-11 19:01:06 +0200803List manipulation: *list-functions*
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000804 get() get an item without error for wrong index
805 len() number of items in a List
806 empty() check if List is empty
807 insert() insert an item somewhere in a List
808 add() append an item to a List
809 extend() append a List to a List
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100810 extendnew() make a new List and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000811 remove() remove one or more items from a List
812 copy() make a shallow copy of a List
813 deepcopy() make a full copy of a List
814 filter() remove selected items from a List
815 map() change each List item
Bram Moolenaarea696852020-11-09 18:31:39 +0100816 mapnew() make a new List with changed items
Ernie Raele79e2072024-01-13 11:47:33 +0100817 foreach() apply function to List items
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200818 reduce() reduce a List to a value
Bram Moolenaar6601b622021-01-13 21:47:15 +0100819 slice() take a slice of a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000820 sort() sort a List
Yegappan Lakshmanan03ff1c22023-05-06 14:08:21 +0100821 reverse() reverse the order of items in a List
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100822 uniq() remove copies of repeated adjacent items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000823 split() split a String into a List
824 join() join List items into a String
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000825 range() return a List with a sequence of numbers
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000826 string() String representation of a List
827 call() call a function with List as arguments
Yegappan Lakshmananb2186552022-08-13 13:09:20 +0100828 index() index of a value in a List or Blob
829 indexof() index in a List or Blob where an expression
Bram Moolenaarb59ae592022-11-23 23:46:31 +0000830 evaluates to true
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000831 max() maximum value in a List
832 min() minimum value in a List
833 count() count number of times a value appears in a List
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000834 repeat() repeat a List multiple times
Bram Moolenaar077a1e62020-06-08 20:50:43 +0200835 flatten() flatten a List
Bram Moolenaar3b690062021-02-01 20:14:51 +0100836 flattennew() flatten a copy of a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000837
Bram Moolenaara3f41662010-07-11 19:01:06 +0200838Dictionary manipulation: *dict-functions*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000839 get() get an entry without an error for a wrong key
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000840 len() number of entries in a Dictionary
841 has_key() check whether a key appears in a Dictionary
842 empty() check if Dictionary is empty
843 remove() remove an entry from a Dictionary
844 extend() add entries from one Dictionary to another
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100845 extendnew() make a new Dictionary and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000846 filter() remove selected entries from a Dictionary
847 map() change each Dictionary entry
Bram Moolenaarea696852020-11-09 18:31:39 +0100848 mapnew() make a new Dictionary with changed items
Ernie Raele79e2072024-01-13 11:47:33 +0100849 foreach() apply function to Dictionary items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000850 keys() get List of Dictionary keys
851 values() get List of Dictionary values
852 items() get List of Dictionary key-value pairs
853 copy() make a shallow copy of a Dictionary
854 deepcopy() make a full copy of a Dictionary
855 string() String representation of a Dictionary
856 max() maximum value in a Dictionary
857 min() minimum value in a Dictionary
858 count() count number of times a value appears
859
Bram Moolenaara3f41662010-07-11 19:01:06 +0200860Floating point computation: *float-functions*
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000861 float2nr() convert Float to Number
862 abs() absolute value (also works for Number)
863 round() round off
864 ceil() round up
865 floor() round down
866 trunc() remove value after decimal point
Bram Moolenaar8d043172014-01-23 14:24:41 +0100867 fmod() remainder of division
868 exp() exponential
869 log() natural logarithm (logarithm to base e)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000870 log10() logarithm to base 10
871 pow() value of x to the exponent y
872 sqrt() square root
873 sin() sine
874 cos() cosine
Bram Moolenaar662db672011-03-22 14:05:35 +0100875 tan() tangent
876 asin() arc sine
877 acos() arc cosine
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000878 atan() arc tangent
Bram Moolenaar662db672011-03-22 14:05:35 +0100879 atan2() arc tangent
880 sinh() hyperbolic sine
881 cosh() hyperbolic cosine
882 tanh() hyperbolic tangent
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200883 isinf() check for infinity
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200884 isnan() check for not a number
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000885
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +0200886Blob manipulation: *blob-functions*
887 blob2list() get a list of numbers from a blob
888 list2blob() get a blob from a list of numbers
Yegappan Lakshmanan03ff1c22023-05-06 14:08:21 +0100889 reverse() reverse the order of numbers in a blob
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +0200890
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100891Other computation: *bitwise-function*
892 and() bitwise AND
893 invert() bitwise invert
894 or() bitwise OR
895 xor() bitwise XOR
Bram Moolenaar8d043172014-01-23 14:24:41 +0100896 sha256() SHA-256 hash
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200897 rand() get a pseudo-random number
898 srand() initialize seed used by rand()
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100899
Bram Moolenaara3f41662010-07-11 19:01:06 +0200900Variables: *var-functions*
h_east59858792023-10-25 22:47:05 +0900901 instanceof() check if a variable is an instance of a given
902 class
Bram Moolenaara47e05f2021-01-12 21:49:00 +0100903 type() type of a variable as a number
904 typename() type of a variable as text
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000905 islocked() check if a variable is locked
Bram Moolenaar214641f2017-03-05 17:04:09 +0100906 funcref() get a Funcref for a function reference
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000907 function() get a Funcref for a function name
908 getbufvar() get a variable value from a specific buffer
909 setbufvar() set a variable in a specific buffer
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000910 getwinvar() get a variable from specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200911 gettabvar() get a variable from specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000912 gettabwinvar() get a variable from specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000913 setwinvar() set a variable in a specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200914 settabvar() set a variable in a specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000915 settabwinvar() set a variable in a specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000916 garbagecollect() possibly free memory
917
Bram Moolenaara3f41662010-07-11 19:01:06 +0200918Cursor and mark position: *cursor-functions* *mark-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 col() column number of the cursor or a mark
920 virtcol() screen column of the cursor or a mark
921 line() line number of the cursor or mark
922 wincol() window column number of the cursor
923 winline() window line number of the cursor
924 cursor() position the cursor at a line/column
Bram Moolenaar8d043172014-01-23 14:24:41 +0100925 screencol() get screen column of the cursor
926 screenrow() get screen row of the cursor
Bram Moolenaarb3d17a22019-07-07 18:28:14 +0200927 screenpos() screen row and col of a text character
Bram Moolenaar5a6ec102022-05-27 21:58:00 +0100928 virtcol2col() byte index of a text character on screen
Bram Moolenaar822ff862014-06-12 21:46:14 +0200929 getcurpos() get position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000930 getpos() get position of cursor, mark, etc.
931 setpos() set position of cursor, mark, etc.
Bram Moolenaarcfb4b472020-05-31 15:41:57 +0200932 getmarklist() list of global/local marks
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000933 byte2line() get line number at a specific byte count
934 line2byte() byte count at a specific line
935 diff_filler() get the number of filler lines above a line
Bram Moolenaar8d043172014-01-23 14:24:41 +0100936 screenattr() get attribute at a screen line/row
937 screenchar() get character code at a screen line/row
Bram Moolenaar2912abb2019-03-29 14:16:42 +0100938 screenchars() get character codes at a screen line/row
939 screenstring() get string of characters at a screen line/row
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100940 charcol() character number of the cursor or a mark
941 getcharpos() get character position of cursor, mark, etc.
942 setcharpos() set character position of cursor, mark, etc.
943 getcursorcharpos() get character position of the cursor
944 setcursorcharpos() set character position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000945
Bram Moolenaara3f41662010-07-11 19:01:06 +0200946Working with text in the current buffer: *text-functions*
Bram Moolenaar7c626922005-02-07 22:01:03 +0000947 getline() get a line or list of lines from the buffer
Shougo Matsushita3f905ab2024-02-21 00:02:45 +0100948 getregion() get a region of text from the buffer
Shougo Matsushitab4757e62024-05-07 20:49:24 +0200949 getregionpos() get a list of positions for a region
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 setline() replace a line in the buffer
Bram Moolenaar7c626922005-02-07 22:01:03 +0000951 append() append line or list of lines in the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 indent() indent of a specific line
953 cindent() indent according to C indenting
954 lispindent() indent according to Lisp indenting
955 nextnonblank() find next non-blank line
956 prevnonblank() find previous non-blank line
957 search() find a match for a pattern
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000958 searchpos() find a match for a pattern
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200959 searchcount() get number of matches before/after the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 searchpair() find the other end of a start/skip/end
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000961 searchpairpos() find the other end of a start/skip/end
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000962 searchdecl() search for the declaration of a name
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200963 getcharsearch() return character search information
964 setcharsearch() set character search information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965
Bram Moolenaar931a2772019-07-04 16:54:54 +0200966Working with text in another buffer:
967 getbufline() get a list of lines from the specified buffer
Bram Moolenaarce30ccc2022-11-21 19:57:04 +0000968 getbufoneline() get a one line from the specified buffer
Bram Moolenaar931a2772019-07-04 16:54:54 +0200969 setbufline() replace a line in the specified buffer
970 appendbufline() append a list of lines in the specified buffer
971 deletebufline() delete lines from a specified buffer
972
Bram Moolenaara3f41662010-07-11 19:01:06 +0200973 *system-functions* *file-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974System functions and manipulation of files:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 glob() expand wildcards
976 globpath() expand wildcards in a number of directories
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200977 glob2regpat() convert a glob pattern into a search pattern
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000978 findfile() find a file in a list of directories
979 finddir() find a directory in a list of directories
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 resolve() find out where a shortcut points to
981 fnamemodify() modify a file name
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000982 pathshorten() shorten directory names in a path
983 simplify() simplify a path without changing its meaning
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 executable() check if an executable program exists
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200985 exepath() full path of an executable program
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 filereadable() check if a file can be read
987 filewritable() check if a file can be written to
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000988 getfperm() get the permissions of a file
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200989 setfperm() set the permissions of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000990 getftype() get the kind of a file
LemonBoydca1d402022-04-28 15:26:33 +0100991 isabsolutepath() check if a path is absolute
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 isdirectory() check if a directory exists
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 getfsize() get the size of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000994 getcwd() get the current working directory
Bram Moolenaar00aa0692019-04-27 20:37:57 +0200995 haslocaldir() check if current window used |:lcd| or |:tcd|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 tempname() get the name of a temporary file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000997 mkdir() create a new directory
Bram Moolenaar1063f3d2019-05-07 22:06:52 +0200998 chdir() change current working directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 delete() delete a file
1000 rename() rename a file
Bram Moolenaar7e38ea22014-04-05 22:55:53 +02001001 system() get the result of a shell command as a string
1002 systemlist() get the result of a shell command as a list
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001003 environ() get all environment variables
1004 getenv() get one environment variable
1005 setenv() set an environment variable
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 hostname() name of the system
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00001007 readfile() read a file into a List of lines
Bram Moolenaarc423ad72021-01-13 20:38:03 +01001008 readblob() read a file into a Blob
Bram Moolenaar62e1bb42019-04-08 16:25:07 +02001009 readdir() get a List of file names in a directory
Bram Moolenaar6c9ba042020-06-01 16:09:41 +02001010 readdirex() get a List of file information in a directory
Bram Moolenaar314dd792019-02-03 15:27:20 +01001011 writefile() write a List of lines or Blob into a file
Shougo Matsushita60c87432024-06-03 22:59:27 +02001012 filecopy() copy a file {from} to {to}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013
Bram Moolenaara3f41662010-07-11 19:01:06 +02001014Date and Time: *date-functions* *time-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001015 getftime() get last modification time of a file
1016 localtime() get current time in seconds
1017 strftime() convert time to a string
Bram Moolenaar10455d42019-11-21 15:36:18 +01001018 strptime() convert a date/time string to time
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001019 reltime() get the current or elapsed time accurately
1020 reltimestr() convert reltime() result to a string
Bram Moolenaar03413f42016-04-12 21:07:15 +02001021 reltimefloat() convert reltime() result to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001022
Yegappan Lakshmanan1755a912022-05-19 10:31:47 +01001023Autocmds: *autocmd-functions*
1024 autocmd_add() add a list of autocmds and groups
1025 autocmd_delete() delete a list of autocmds and groups
1026 autocmd_get() return a list of autocmds
1027
Bram Moolenaara3f41662010-07-11 19:01:06 +02001028 *buffer-functions* *window-functions* *arg-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029Buffers, windows and the argument list:
1030 argc() number of entries in the argument list
1031 argidx() current position in the argument list
Bram Moolenaar2d1fe052014-05-28 18:22:57 +02001032 arglistid() get id of the argument list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 argv() get one entry from the argument list
Bram Moolenaar931a2772019-07-04 16:54:54 +02001034 bufadd() add a file to the list of buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 bufexists() check if a buffer exists
1036 buflisted() check if a buffer exists and is listed
Bram Moolenaar931a2772019-07-04 16:54:54 +02001037 bufload() ensure a buffer is loaded
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 bufloaded() check if a buffer exists and is loaded
1039 bufname() get the name of a specific buffer
1040 bufnr() get the buffer number of a specific buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001041 tabpagebuflist() return List of buffers in a tab page
1042 tabpagenr() get the number of a tab page
1043 tabpagewinnr() like winnr() for a specified tab page
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 winnr() get the window number for the current window
Bram Moolenaar82af8712016-06-04 20:20:29 +02001045 bufwinid() get the window ID of a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 bufwinnr() get the window number of a specific buffer
1047 winbufnr() get the buffer number of a specific window
Bram Moolenaara3347722019-05-11 21:14:24 +02001048 listener_add() add a callback to listen to changes
Bram Moolenaar68e65602019-05-26 21:33:31 +02001049 listener_flush() invoke listener callbacks
Bram Moolenaara3347722019-05-11 21:14:24 +02001050 listener_remove() remove a listener callback
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001051 win_findbuf() find windows containing a buffer
1052 win_getid() get window ID of a window
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001053 win_gettype() get type of window
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001054 win_gotoid() go to window with ID
1055 win_id2tabwin() get tab and window nr from window ID
1056 win_id2win() get window nr from window ID
Daniel Steinbergee630312022-01-10 13:36:34 +00001057 win_move_separator() move window vertical separator
1058 win_move_statusline() move window status line
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001059 win_splitmove() move window to a split of another window
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001060 getbufinfo() get a list with buffer information
1061 gettabinfo() get a list with tab page information
1062 getwininfo() get a list with window information
Bram Moolenaar07ad8162018-02-13 13:59:59 +01001063 getchangelist() get a list of change list entries
Bram Moolenaar4f505882018-02-10 21:06:32 +01001064 getjumplist() get a list of jump list entries
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001065 swapfilelist() list of existing swap files in 'directory'
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001066 swapinfo() information about a swap file
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001067 swapname() get the swap file path of a buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001068
Bram Moolenaara3f41662010-07-11 19:01:06 +02001069Command line: *command-line-functions*
Shougo Matsushita79d599b2022-05-07 12:48:29 +01001070 getcmdcompltype() get the type of the current command line
1071 completion
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001072 getcmdline() get the current command line
1073 getcmdpos() get position of the cursor in the command line
Shougo Matsushita79d599b2022-05-07 12:48:29 +01001074 getcmdscreenpos() get screen position of the cursor in the
1075 command line
Shougo Matsushita07ea5f12022-08-27 12:22:25 +01001076 setcmdline() set the current command line
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001077 setcmdpos() set position of the cursor in the command line
1078 getcmdtype() return the current command-line type
Bram Moolenaarfb539272014-08-22 19:21:47 +02001079 getcmdwintype() return the current command-line window type
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001080 getcompletion() list of command-line completion matches
Bram Moolenaar038e09e2021-02-06 12:38:51 +01001081 fullcommand() get full command name
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001082
Bram Moolenaara3f41662010-07-11 19:01:06 +02001083Quickfix and location lists: *quickfix-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001084 getqflist() list of quickfix errors
1085 setqflist() modify a quickfix list
1086 getloclist() list of location list items
1087 setloclist() modify a location list
1088
Bram Moolenaara3f41662010-07-11 19:01:06 +02001089Insert mode completion: *completion-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001090 complete() set found matches
1091 complete_add() add to found matches
1092 complete_check() check if completion should be aborted
Bram Moolenaarfd133322019-03-29 12:20:27 +01001093 complete_info() get current completion information
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001094 pumvisible() check if the popup menu is displayed
Bram Moolenaar5be4cee2019-09-27 19:34:08 +02001095 pum_getpos() position and size of popup menu if visible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
Bram Moolenaara3f41662010-07-11 19:01:06 +02001097Folding: *folding-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 foldclosed() check for a closed fold at a specific line
1099 foldclosedend() like foldclosed() but return the last line
1100 foldlevel() check for the fold level at a specific line
1101 foldtext() generate the line displayed for a closed fold
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001102 foldtextresult() get the text displayed for a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103
Bram Moolenaara3f41662010-07-11 19:01:06 +02001104Syntax and highlighting: *syntax-functions* *highlighting-functions*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001105 clearmatches() clear all matches defined by |matchadd()| and
1106 the |:match| commands
1107 getmatches() get all matches defined by |matchadd()| and
1108 the |:match| commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 hlexists() check if a highlight group exists
Yegappan Lakshmanand1a8d652021-11-03 21:56:45 +00001110 hlget() get highlight group attributes
1111 hlset() set highlight group attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 hlID() get ID of a highlight group
1113 synID() get syntax ID at a specific position
1114 synIDattr() get a specific attribute of a syntax ID
1115 synIDtrans() get translated syntax ID
Bram Moolenaar166af9b2010-11-16 20:34:40 +01001116 synstack() get list of syntax IDs at a specific position
Christian Brabandt00ae5c52024-04-26 18:56:21 +02001117 synconcealed() get info about (syntax) concealing
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001118 diff_hlID() get highlight ID for diff mode at a position
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001119 matchadd() define a pattern to highlight (a "match")
Bram Moolenaarb3414592014-06-17 17:48:32 +02001120 matchaddpos() define a list of positions to highlight
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001121 matcharg() get info about |:match| arguments
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001122 matchdelete() delete a match defined by |matchadd()| or a
1123 |:match| command
1124 setmatches() restore a list of matches saved by
1125 |getmatches()|
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001126
Bram Moolenaara3f41662010-07-11 19:01:06 +02001127Spelling: *spell-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001128 spellbadword() locate badly spelled word at or after cursor
1129 spellsuggest() return suggested spelling corrections
1130 soundfold() return the sound-a-like equivalent of a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131
Bram Moolenaara3f41662010-07-11 19:01:06 +02001132History: *history-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 histadd() add an item to a history
1134 histdel() delete an item from a history
1135 histget() get an item from a history
1136 histnr() get highest index of a history list
1137
Bram Moolenaara3f41662010-07-11 19:01:06 +02001138Interactive: *interactive-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001139 browse() put up a file requester
1140 browsedir() put up a directory requester
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 confirm() let the user make a choice
1142 getchar() get a character from the user
Bram Moolenaarf7a023e2021-06-07 18:50:01 +02001143 getcharstr() get a character from the user as a string
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 getcharmod() get modifiers for the last typed character
Bram Moolenaar09c6f262019-11-17 15:55:14 +01001145 getmousepos() get last known mouse position
Bram Moolenaar24dc19c2022-11-14 19:49:15 +00001146 getmouseshape() get name of the current mouse shape
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001147 echoraw() output characters as-is
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001148 feedkeys() put characters in the typeahead queue
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 input() get a line from the user
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001150 inputlist() let the user pick an entry from a list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 inputsecret() get a line from the user without showing it
1152 inputdialog() get a line from the user in a dialog
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001153 inputsave() save and clear typeahead
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 inputrestore() restore typeahead
1155
Bram Moolenaara3f41662010-07-11 19:01:06 +02001156GUI: *gui-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001157 getfontname() get name of current font being used
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001158 getwinpos() position of the Vim window
1159 getwinposx() X position of the Vim window
1160 getwinposy() Y position of the Vim window
Bram Moolenaar214641f2017-03-05 17:04:09 +01001161 balloon_show() set the balloon content
Bram Moolenaara2a80162017-11-21 23:09:50 +01001162 balloon_split() split a message for a balloon
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001163 balloon_gettext() get the text in the balloon
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001164
Bram Moolenaara3f41662010-07-11 19:01:06 +02001165Vim server: *server-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 serverlist() return the list of server names
Bram Moolenaar01164a62017-11-02 22:58:42 +01001167 remote_startserver() run a server
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 remote_send() send command characters to a Vim server
1169 remote_expr() evaluate an expression in a Vim server
1170 server2client() send a reply to a client of a Vim server
1171 remote_peek() check if there is a reply from a Vim server
1172 remote_read() read a reply from a Vim server
1173 foreground() move the Vim window to the foreground
1174 remote_foreground() move the Vim server window to the foreground
1175
Bram Moolenaara3f41662010-07-11 19:01:06 +02001176Window size and position: *window-size-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001177 winheight() get height of a specific window
1178 winwidth() get width of a specific window
Bram Moolenaarf0b03c42017-12-17 17:17:07 +01001179 win_screenpos() get screen position of a window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001180 winlayout() get layout of windows in a tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001181 winrestcmd() return command to restore window sizes
1182 winsaveview() get view of current window
1183 winrestview() restore saved view of current window
1184
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001185Mappings and Menus: *mapping-functions*
h-east29b85712021-07-26 21:54:04 +02001186 digraph_get() get |digraph|
1187 digraph_getlist() get all |digraph|s
1188 digraph_set() register |digraph|
1189 digraph_setlist() register multiple |digraph|s
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 hasmapto() check if a mapping exists
1191 mapcheck() check if a matching mapping exists
1192 maparg() get rhs of a mapping
Ernie Rael09661202022-04-25 14:40:44 +01001193 maplist() get list of all mappings
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001194 mapset() restore a mapping
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001195 menu_info() get information about a menu item
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001196 wildmenumode() check if the wildmode is active
1197
Bram Moolenaar683fa182015-11-30 21:38:24 +01001198Testing: *test-functions*
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001199 assert_equal() assert that two expressions values are equal
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001200 assert_equalfile() assert that two file contents are equal
Bram Moolenaar03413f42016-04-12 21:07:15 +02001201 assert_notequal() assert that two expressions values are not equal
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001202 assert_inrange() assert that an expression is inside a range
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +02001203 assert_match() assert that a pattern matches the value
Bram Moolenaar03413f42016-04-12 21:07:15 +02001204 assert_notmatch() assert that a pattern does not match the value
Bram Moolenaar683fa182015-11-30 21:38:24 +01001205 assert_false() assert that an expression is false
1206 assert_true() assert that an expression is true
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001207 assert_exception() assert that a command throws an exception
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001208 assert_beeps() assert that a command beeps
Bram Moolenaar0df60302021-04-03 15:15:47 +02001209 assert_nobeep() assert that a command does not cause a beep
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001210 assert_fails() assert that a command fails
Bram Moolenaar3c2881d2017-03-21 19:18:29 +01001211 assert_report() report a test failure
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001212 test_alloc_fail() make memory allocation fail
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001213 test_autochdir() enable 'autochdir' during startup
Bram Moolenaar036986f2017-03-16 17:41:02 +01001214 test_override() test with Vim internal overrides
1215 test_garbagecollect_now() free memory right now
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001216 test_garbagecollect_soon() set a flag to free memory soon
Bram Moolenaar68e65602019-05-26 21:33:31 +02001217 test_getvalue() get value of an internal variable
Yegappan Lakshmanan06011e12022-01-30 12:37:29 +00001218 test_gui_event() generate a GUI event for testing
Bram Moolenaar214641f2017-03-05 17:04:09 +01001219 test_ignore_error() ignore a specific error message
Christopher Plewright20b795e2022-12-20 20:01:58 +00001220 test_mswin_event() generate an MS-Windows event
Bram Moolenaar314dd792019-02-03 15:27:20 +01001221 test_null_blob() return a null Blob
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001222 test_null_channel() return a null Channel
1223 test_null_dict() return a null Dict
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001224 test_null_function() return a null Funcref
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001225 test_null_job() return a null Job
1226 test_null_list() return a null List
1227 test_null_partial() return a null Partial function
1228 test_null_string() return a null String
Bram Moolenaar214641f2017-03-05 17:04:09 +01001229 test_settime() set the time Vim uses internally
Bram Moolenaarbb8476b2019-05-04 15:47:48 +02001230 test_setmouse() set the mouse position
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001231 test_feedinput() add key sequence to input buffer
1232 test_option_not_set() reset flag indicating option was set
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001233 test_refcount() return an expression's reference count
1234 test_srand_seed() set the seed value for srand()
1235 test_unknown() return a value with unknown type
1236 test_void() return a value with void type
Bram Moolenaar683fa182015-11-30 21:38:24 +01001237
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001238Inter-process communication: *channel-functions*
Bram Moolenaar51628222016-12-01 23:03:28 +01001239 ch_canread() check if there is something to read
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001240 ch_open() open a channel
1241 ch_close() close a channel
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001242 ch_close_in() close the in part of a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001243 ch_read() read a message from a channel
Bram Moolenaard09091d2019-01-17 16:07:22 +01001244 ch_readblob() read a Blob from a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001245 ch_readraw() read a raw message from a channel
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001246 ch_sendexpr() send a JSON message over a channel
1247 ch_sendraw() send a raw message over a channel
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001248 ch_evalexpr() evaluate an expression over channel
1249 ch_evalraw() evaluate a raw string over channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001250 ch_status() get status of a channel
1251 ch_getbufnr() get the buffer number of a channel
1252 ch_getjob() get the job associated with a channel
1253 ch_info() get channel information
1254 ch_log() write a message in the channel log file
1255 ch_logfile() set the channel log file
1256 ch_setoptions() set the options for a channel
Bram Moolenaara02a5512016-06-17 12:48:11 +02001257 json_encode() encode an expression to a JSON string
1258 json_decode() decode a JSON string to Vim types
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001259 js_encode() encode an expression to a JSON string
1260 js_decode() decode a JSON string to Vim types
Bram Moolenaar416bd912023-07-07 23:19:18 +01001261 err_teapot() give error 418 or 503
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001262
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001263Jobs: *job-functions*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001264 job_start() start a job
1265 job_stop() stop a job
1266 job_status() get the status of a job
1267 job_getchannel() get the channel used by a job
1268 job_info() get information about a job
1269 job_setoptions() set options for a job
1270
Bram Moolenaar162b7142018-12-21 15:17:36 +01001271Signs: *sign-functions*
1272 sign_define() define or update a sign
1273 sign_getdefined() get a list of defined signs
1274 sign_getplaced() get a list of placed signs
Bram Moolenaar6b7b7192019-01-11 13:42:41 +01001275 sign_jump() jump to a sign
Bram Moolenaar162b7142018-12-21 15:17:36 +01001276 sign_place() place a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001277 sign_placelist() place a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001278 sign_undefine() undefine a sign
1279 sign_unplace() unplace a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001280 sign_unplacelist() unplace a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001281
Bram Moolenaarc572da52017-08-27 16:52:01 +02001282Terminal window: *terminal-functions*
1283 term_start() open a terminal window and run a job
1284 term_list() get the list of terminal buffers
1285 term_sendkeys() send keystrokes to a terminal
1286 term_wait() wait for screen to be updated
1287 term_getjob() get the job associated with a terminal
1288 term_scrape() get row of a terminal screen
1289 term_getline() get a line of text from a terminal
1290 term_getattr() get the value of attribute {what}
1291 term_getcursor() get the cursor position of a terminal
1292 term_getscrolled() get the scroll count of a terminal
1293 term_getaltscreen() get the alternate screen flag
1294 term_getsize() get the size of a terminal
1295 term_getstatus() get the status of a terminal
1296 term_gettitle() get the title of a terminal
1297 term_gettty() get the tty name of a terminal
Bram Moolenaar7dda86f2018-04-20 22:36:41 +02001298 term_setansicolors() set 16 ANSI colors, used for GUI
1299 term_getansicolors() get 16 ANSI colors, used for GUI
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001300 term_dumpdiff() display difference between two screen dumps
1301 term_dumpload() load a terminal screen dump in a window
1302 term_dumpwrite() dump contents of a terminal screen to a file
1303 term_setkill() set signal to stop job in a terminal
1304 term_setrestore() set command to restore a terminal
1305 term_setsize() set the size of a terminal
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001306 term_setapi() set terminal JSON API function name prefix
Bram Moolenaarc572da52017-08-27 16:52:01 +02001307
Bram Moolenaar931a2772019-07-04 16:54:54 +02001308Popup window: *popup-window-functions*
1309 popup_create() create popup centered in the screen
1310 popup_atcursor() create popup just above the cursor position,
1311 closes when the cursor moves away
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001312 popup_beval() at the position indicated by v:beval_
1313 variables, closes when the mouse moves away
Bram Moolenaar931a2772019-07-04 16:54:54 +02001314 popup_notification() show a notification for three seconds
1315 popup_dialog() create popup centered with padding and border
1316 popup_menu() prompt for selecting an item from a list
1317 popup_hide() hide a popup temporarily
1318 popup_show() show a previously hidden popup
1319 popup_move() change the position and size of a popup
1320 popup_setoptions() override options of a popup
1321 popup_settext() replace the popup buffer contents
Christian Brabandtfbc37f12024-06-18 20:50:58 +02001322 popup_setbuf() set the popup buffer
Bram Moolenaar931a2772019-07-04 16:54:54 +02001323 popup_close() close one popup
1324 popup_clear() close all popups
1325 popup_filter_menu() select from a list of items
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001326 popup_filter_yesno() block until 'y' or 'n' is pressed
Bram Moolenaar931a2772019-07-04 16:54:54 +02001327 popup_getoptions() get current options for a popup
1328 popup_getpos() get actual position and size of a popup
Bram Moolenaarbdc09a12022-10-07 14:31:45 +01001329 popup_findecho() get window ID for popup used for `:echowindow`
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001330 popup_findinfo() get window ID for popup info window
1331 popup_findpreview() get window ID for popup preview window
1332 popup_list() get list of all popup window IDs
1333 popup_locate() get popup window ID from its screen position
Bram Moolenaar931a2772019-07-04 16:54:54 +02001334
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001335Timers: *timer-functions*
1336 timer_start() create a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001337 timer_pause() pause or unpause a timer
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001338 timer_stop() stop a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001339 timer_stopall() stop all timers
1340 timer_info() get information about timers
Bram Moolenaar298b4402016-01-28 22:38:53 +01001341
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001342Tags: *tag-functions*
1343 taglist() get list of matching tags
1344 tagfiles() get a list of tags files
1345 gettagstack() get the tag stack of a window
1346 settagstack() modify the tag stack of a window
1347
1348Prompt Buffer: *promptbuffer-functions*
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001349 prompt_getprompt() get the effective prompt text for a buffer
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001350 prompt_setcallback() set prompt callback for a buffer
1351 prompt_setinterrupt() set interrupt callback for a buffer
1352 prompt_setprompt() set the prompt text for a buffer
1353
Yegappan Lakshmananf768c3d2022-08-22 13:15:13 +01001354Registers: *register-functions*
1355 getreg() get contents of a register
1356 getreginfo() get information about a register
1357 getregtype() get type of a register
1358 setreg() set contents and type of a register
1359 reg_executing() return the name of the register being executed
1360 reg_recording() return the name of the register being recorded
1361
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001362Text Properties: *text-property-functions*
1363 prop_add() attach a property at a position
Yegappan Lakshmananccfb7c62021-08-16 21:39:09 +02001364 prop_add_list() attach a property at multiple positions
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001365 prop_clear() remove all properties from a line or lines
1366 prop_find() search for a property
1367 prop_list() return a list of all properties in a line
1368 prop_remove() remove a property from a line
1369 prop_type_add() add/define a property type
1370 prop_type_change() change properties of a type
1371 prop_type_delete() remove a text property type
1372 prop_type_get() return the properties of a type
1373 prop_type_list() return a list of all property types
1374
1375Sound: *sound-functions*
1376 sound_clear() stop playing all sounds
1377 sound_playevent() play an event's sound
1378 sound_playfile() play a sound file
1379 sound_stop() stop playing a sound
1380
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001381Various: *various-functions*
1382 mode() get current editing mode
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001383 state() get current busy state
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001384 visualmode() last visual mode used
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 exists() check if a variable, function, etc. exists
Bram Moolenaar26735992021-08-08 14:43:22 +02001386 exists_compiled() like exists() but check at compile time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 has() check if a feature is supported in Vim
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001388 changenr() return number of most recent change
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 cscope_connection() check if a cscope connection exists
1390 did_filetype() check if a FileType autocommand was used
Yegappan Lakshmananfa378352024-02-01 22:05:27 +01001391 diff() diff two Lists of strings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 eventhandler() check if invoked by an event handler
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001393 getpid() get process ID of Vim
Bram Moolenaarfd999452022-08-24 18:30:14 +01001394 getscriptinfo() get list of sourced vim scripts
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001395 getimstatus() check if IME status is active
1396 interrupt() interrupt script execution
1397 windowsversion() get MS-Windows version
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001398 terminalprops() properties of the terminal
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001399
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 libcall() call a function in an external library
1401 libcallnr() idem, returning a number
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001402
Bram Moolenaar8d043172014-01-23 14:24:41 +01001403 undofile() get the name of the undo file
Devin J. Pohly5fee1112023-04-23 20:26:59 -05001404 undotree() return the state of the undo tree for a buffer
Bram Moolenaar8d043172014-01-23 14:24:41 +01001405
Bram Moolenaar8d043172014-01-23 14:24:41 +01001406 shiftwidth() effective value of 'shiftwidth'
1407
Bram Moolenaar063b9d12016-07-09 20:21:48 +02001408 wordcount() get byte/word/char count of buffer
1409
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001410 luaeval() evaluate |Lua| expression
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001411 mzeval() evaluate |MzScheme| expression
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001412 perleval() evaluate Perl expression (|+perl|)
Bram Moolenaar8d043172014-01-23 14:24:41 +01001413 py3eval() evaluate Python expression (|+python3|)
1414 pyeval() evaluate Python expression (|+python|)
Bram Moolenaar690afe12017-01-28 18:34:47 +01001415 pyxeval() evaluate |python_x| expression
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001416 rubyeval() evaluate |Ruby| expression
1417
Bram Moolenaar9d87a372018-12-18 21:41:50 +01001418 debugbreak() interrupt a program being debugged
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001419
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420==============================================================================
1421*41.7* Defining a function
1422
1423Vim enables you to define your own functions. The basic function declaration
1424begins as follows: >
1425
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001426 def {name}({var1}, {var2}, ...): return-type
1427 {body}
1428 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429<
1430 Note:
1431 Function names must begin with a capital letter.
1432
1433Let's define a short function to return the smaller of two numbers. It starts
1434with this line: >
1435
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001436 def Min(num1: number, num2: number): number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001438This tells Vim that the function is named "Min", it takes two arguments that
1439are numbers: "num1" and "num2" and returns a number.
1440
1441The first thing you need to do is to check to see which number is smaller:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 >
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001443 if num1 < num2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445Let's assign the variable "smaller" the value of the smallest number: >
1446
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001447 var smaller: number
1448 if num1 < num2
1449 smaller = num1
1450 else
1451 smaller = num2
1452 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453
Bram Moolenaar63f32602022-06-09 20:45:54 +01001454The variable "smaller" is a local variable. It is declared to be a number,
1455that way Vim can warn you for any mistakes. Variables used inside a function
1456are local unless prefixed by something like "g:", "w:", or "b:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457
1458 Note:
1459 To access a global variable from inside a function you must prepend
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001460 "g:" to it. Thus "g:today" inside a function is used for the global
1461 variable "today", and "today" is another variable, local to the
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001462 function or the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001464You now use the `return` statement to return the smallest number to the user.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465Finally, you end the function: >
1466
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001467 return smaller
1468 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469
1470The complete function definition is as follows: >
1471
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001472 def Min(num1: number, num2: number): number
1473 var smaller: number
1474 if num1 < num2
1475 smaller = num1
1476 else
1477 smaller = num2
1478 endif
1479 return smaller
1480 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001482Obviously this is a verbose example. You can make it shorter by using two
1483return commands: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001484
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001485 def Min(num1: number, num2: number): number
1486 if num1 < num2
1487 return num1
1488 endif
1489 return num2
1490 enddef
1491
1492And if you remember the conditional expression, you need only one line: >
1493
1494 def Min(num1: number, num2: number): number
1495 return num1 < num2 ? num1 : num2
1496 enddef
Bram Moolenaar7c626922005-02-07 22:01:03 +00001497
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001498A user defined function is called in exactly the same way as a built-in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499function. Only the name is different. The Min function can be used like
1500this: >
1501
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001502 echo Min(5, 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001504Only now will the function be executed and the lines be parsed by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505If there are mistakes, like using an undefined variable or function, you will
1506now get an error message. When defining the function these errors are not
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001507detected. To get the errors sooner you can tell Vim to compile all the
1508functions in the script: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001510 defcompile
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001512Compiling functions takes a little time, but does report errors early. You
1513could use `:defcompile` at the end of your script while working on it, and
1514comment it out when everything is fine.
1515
1516For a function that does not return anything simply leave out the return type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001518 def SayIt(text: string)
1519 echo text
1520 enddef
1521
Bram Moolenaar63f32602022-06-09 20:45:54 +01001522If you want to return any kind of value, you can use the "any" return type: >
1523 def GetValue(): any
1524This disables type checking for the return value, use only when needed.
1525
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001526It is also possible to define a legacy function with `function` and
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001527`endfunction`. These do not have types and are not compiled. Therefore they
1528execute much slower.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529
1530
1531USING A RANGE
1532
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001533A line range can be used with a function call. The function will be called
1534once for every line in the range, with the cursor in that line. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001536 def Number()
1537 echo "line " .. line(".") .. " contains: " .. getline(".")
1538 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539
1540If you call this function with: >
1541
Bram Moolenaar63f32602022-06-09 20:45:54 +01001542 :10,15Number()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001544The function will be called six times, starting on line 10 and ending on line
154515.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546
1547
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548LISTING FUNCTIONS
1549
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001550The `function` command lists the names and arguments of all user-defined
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551functions: >
1552
1553 :function
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001554< def <SNR>86_Show(start: string, ...items: list<string>) ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 function GetVimIndent() ~
1556 function SetSyn(name) ~
1557
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001558The "<SNR>" prefix means that a function is script-local. |Vim9| functions
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +01001559will start with "def" and include argument and return types. Legacy functions
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001560are listed with "function".
1561
1562To see what a function does, use its name as an argument for `function`: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563
1564 :function SetSyn
1565< 1 if &syntax == '' ~
1566 2 let &syntax = a:name ~
1567 3 endif ~
1568 endfunction ~
1569
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001570To see the "Show" function you need to include the script prefix, since
1571multiple "Show" functions can be defined in different scripts. To find
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001572the exact name you can use `function`, but the result may be a very long list.
1573To only get the functions matching a pattern you can use the `filter` prefix:
1574>
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001575 :filter Show function
1576< def <SNR>86_Show(start: string, ...items: list<string>) ~
1577>
1578 :function <SNR>86_Show
1579< 1 echohl Title ~
1580 2 echo "start is " .. start ~
1581 etc.
1582
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583
1584DEBUGGING
1585
1586The line number is useful for when you get an error message or when debugging.
1587See |debug-scripts| about debugging mode.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001588
1589You can also set the 'verbose' option to 12 or higher to see all function
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590calls. Set it to 15 or higher to see every executed line.
1591
1592
1593DELETING A FUNCTION
1594
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001595To delete the SetSyn() function: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001597 :delfunction SetSyn
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001599Deleting only works for global functions and functions in legacy script, not
1600for functions defined in a |Vim9| script.
1601
1602You get an error when the function doesn't exist or cannot be deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603
Bram Moolenaar7c626922005-02-07 22:01:03 +00001604
1605FUNCTION REFERENCES
1606
1607Sometimes it can be useful to have a variable point to one function or
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001608another. You can do it with a function reference variable. Often shortened
1609to "funcref". Example: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001610
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001611 def Right(): string
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001612 return 'Right!'
1613 enddef
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001614 def Wrong(): string
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001615 return 'Wrong!'
1616 enddef
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01001617
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001618 var Afunc = g:result == 1 ? Right : Wrong
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001619 echo Afunc()
Bram Moolenaar7c626922005-02-07 22:01:03 +00001620< Wrong! ~
1621
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001622This assumes "g:result" is not one. See |Funcref| for details.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001623
Bram Moolenaar7c626922005-02-07 22:01:03 +00001624Note that the name of a variable that holds a function reference must start
1625with a capital. Otherwise it could be confused with the name of a builtin
1626function.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001627
Bram Moolenaar63f32602022-06-09 20:45:54 +01001628
1629FURTHER READING
1630
1631Using a variable number of arguments is introduced in section |50.2|.
1632
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02001633More information about defining your own functions here: |user-functions|.
1634
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00001636*41.8* Lists and Dictionaries
1637
1638So far we have used the basic types String and Number. Vim also supports two
1639composite types: List and Dictionary.
1640
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001641A List is an ordered sequence of items. The items can be any kind of value,
Bram Moolenaar7c626922005-02-07 22:01:03 +00001642thus you can make a List of numbers, a List of Lists and even a List of mixed
1643items. To create a List with three strings: >
1644
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001645 var alist = ['aap', 'noot', 'mies']
Bram Moolenaar7c626922005-02-07 22:01:03 +00001646
1647The List items are enclosed in square brackets and separated by commas. To
1648create an empty List: >
1649
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001650 var alist = []
Bram Moolenaar7c626922005-02-07 22:01:03 +00001651
1652You can add items to a List with the add() function: >
1653
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001654 var alist = []
1655 add(alist, 'foo')
1656 add(alist, 'bar')
1657 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001658< ['foo', 'bar'] ~
1659
1660List concatenation is done with +: >
1661
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001662 var alist = ['foo', 'bar']
1663 alist = alist + ['and', 'more']
1664 echo alist
1665< ['foo', 'bar', 'and', 'more'] ~
Bram Moolenaar7c626922005-02-07 22:01:03 +00001666
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001667Or, if you want to extend a List with a function, use `extend()`: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001668
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001669 var alist = ['one']
1670 extend(alist, ['two', 'three'])
1671 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001672< ['one', 'two', 'three'] ~
1673
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001674Notice that using `add()` will have a different effect than `extend()`: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001675
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001676 var alist = ['one']
1677 add(alist, ['two', 'three'])
1678 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001679< ['one', ['two', 'three']] ~
1680
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001681The second argument of add() is added as an item, now you have a nested list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001682
1683
1684FOR LOOP
1685
1686One of the nice things you can do with a List is iterate over it: >
1687
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001688 var alist = ['one', 'two', 'three']
1689 for n in alist
1690 echo n
1691 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001692< one ~
1693 two ~
1694 three ~
1695
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001696This will loop over each element in List "alist", assigning each value to
Bram Moolenaar7c626922005-02-07 22:01:03 +00001697variable "n". The generic form of a for loop is: >
1698
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001699 for {varname} in {list-expression}
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001700 {commands}
1701 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001702
1703To loop a certain number of times you need a List of a specific length. The
1704range() function creates one for you: >
1705
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001706 for a in range(3)
1707 echo a
1708 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001709< 0 ~
1710 1 ~
1711 2 ~
1712
1713Notice that the first item of the List that range() produces is zero, thus the
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001714last item is one less than the length of the list. Detail: Internally range()
1715does not actually create the list, so that a large range used in a for loop
1716works efficiently. When used elsewhere, the range is turned into an actual
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +01001717list, which takes more time for a long list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001718
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001719You can also specify the maximum value, the stride and even go backwards: >
1720
1721 for a in range(8, 4, -2)
1722 echo a
1723 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001724< 8 ~
1725 6 ~
1726 4 ~
1727
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001728A more useful example, looping over all the lines in the buffer: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001729
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001730 for line in getline(1, 50)
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001731 if line =~ "Date: "
1732 echo line
1733 endif
1734 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001735
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001736This looks into lines 1 to 50 (inclusive) and echoes any date found in there.
1737
1738For further reading see |Lists|.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001739
1740
1741DICTIONARIES
1742
1743A Dictionary stores key-value pairs. You can quickly lookup a value if you
1744know the key. A Dictionary is created with curly braces: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001745
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001746 var uk2nl = {one: 'een', two: 'twee', three: 'drie'}
Bram Moolenaar7c626922005-02-07 22:01:03 +00001747
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001748Now you can lookup words by putting the key in square brackets: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001749
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001750 echo uk2nl['two']
1751< twee ~
1752
1753If the key does not have special characters, you can use the dot notation: >
1754
1755 echo uk2nl.two
Bram Moolenaar7c626922005-02-07 22:01:03 +00001756< twee ~
1757
1758The generic form for defining a Dictionary is: >
1759
1760 {<key> : <value>, ...}
1761
1762An empty Dictionary is one without any keys: >
1763
1764 {}
1765
1766The possibilities with Dictionaries are numerous. There are various functions
1767for them as well. For example, you can obtain a list of the keys and loop
1768over them: >
1769
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001770 for key in keys(uk2nl)
1771 echo key
1772 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001773< three ~
1774 one ~
1775 two ~
1776
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001777You will notice the keys are not ordered. You can sort the list to get a
Bram Moolenaar7c626922005-02-07 22:01:03 +00001778specific order: >
1779
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001780 for key in sort(keys(uk2nl))
1781 echo key
1782 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001783< one ~
1784 three ~
1785 two ~
1786
1787But you can never get back the order in which items are defined. For that you
1788need to use a List, it stores items in an ordered sequence.
1789
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001790For further reading see |Dictionaries|.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001791
1792==============================================================================
Bram Moolenaar63f32602022-06-09 20:45:54 +01001793*41.9* White space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001795Blank lines are allowed in a script and ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001797Leading whitespace characters (blanks and TABs) are ignored, except when using
1798|:let-heredoc| without "trim".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001800Trailing whitespace is often ignored, but not always. One command that
Bram Moolenaar63f32602022-06-09 20:45:54 +01001801includes it is `map`. You have to watch out for that, it can cause hard to
1802understand mistakes. A generic solution is to never use trailing white space,
1803unless you really need it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804
1805To include a whitespace character in the value of an option, it must be
1806escaped by a "\" (backslash) as in the following example: >
1807
1808 :set tags=my\ nice\ file
1809
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001810If it would be written as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811
1812 :set tags=my nice file
1813
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001814This will issue an error, because it is interpreted as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815
1816 :set tags=my
1817 :set nice
1818 :set file
1819
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001820|Vim9| script is very picky when it comes to white space. This was done
1821intentionally to make sure scripts are easy to read and to avoid mistakes.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001822If you use white space sensibly it will just work. When not you will get an
1823error message telling you where white space is missing or should be removed.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001824
Bram Moolenaar63f32602022-06-09 20:45:54 +01001825==============================================================================
1826*41.10* Line continuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827
Bram Moolenaar63f32602022-06-09 20:45:54 +01001828In legacy Vim script line continuation is done by preceding a continuation
1829line with a backslash: >
1830 let mylist = [
1831 \ 'one',
1832 \ 'two',
1833 \ ]
1834
1835This requires the 'cpo' option to exclude the "C" flag. Normally this is done
1836by putting this at the start of the script: >
1837 let s:save_cpo = &cpo
1838 set cpo&vim
1839
1840And restore the option at the end of the script: >
1841 let &cpo = s:save_cpo
1842 unlet s:save_cpo
1843
1844A few more details can be found here: |line-continuation|.
1845
1846In |Vim9| script the backslash can still be used, but in most places it is not
1847needed: >
1848 var mylist = [
1849 'one',
1850 'two',
1851 ]
1852
1853Also, the 'cpo' option does not need to be changed. See
1854|vim9-line-continuation| for details.
1855
1856==============================================================================
1857*41.11* Comments
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001859In |Vim9| script the character # starts a comment. That character and
1860everything after it until the end-of-line is considered a comment and
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861is ignored, except for commands that don't consider comments, as shown in
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001862examples below. A comment can start on any character position on the line,
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001863but not when it is part of the command, e.g. inside a string.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001864
Bram Moolenaar8a3b8052022-06-26 12:21:15 +01001865The character " (the double quote mark) starts a comment in legacy script.
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001866This involves some cleverness to make sure double quoted strings are not
1867recognized as comments (just one reason to prefer |Vim9| script).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868
1869There is a little "catch" with comments for some commands. Examples: >
1870
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001871 abbrev dev development # shorthand
1872 map <F3> o#include # insert include
1873 execute cmd # do it
1874 !ls *.c # list C files
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001876- The abbreviation 'dev' will be expanded to 'development # shorthand'.
1877- The mapping of <F3> will actually be the whole line after the 'o# ....'
1878 including the '# insert include'.
1879- The `execute` command will give an error.
1880- The `!` command will send everything after it to the shell, most likely
1881 causing an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001883There can be no comment after `map`, `abbreviate`, `execute` and `!` commands
1884(there are a few more commands with this restriction). For the `map`,
1885`abbreviate` and `execute` commands there is a trick: >
1886
1887 abbrev dev development|# shorthand
1888 map <F3> o#include|# insert include
1889 execute '!ls *.c' |# do it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890
1891With the '|' character the command is separated from the next one. And that
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001892next command is only a comment. The last command, using `execute` is a
1893general solution, it works for all commands that do not accept a comment or a
1894'|' to separate the next command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895
1896Notice that there is no white space before the '|' in the abbreviation and
1897mapping. For these commands, any character until the end-of-line or '|' is
1898included. As a consequence of this behavior, you don't always see that
1899trailing whitespace is included: >
1900
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001901 map <F4> o#include
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902
Bram Moolenaarcfa8f9a2022-06-03 21:59:47 +01001903Here it is intended, in other cases it might be accidental. To spot these
1904problems, you can highlight trailing spaces: >
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001905 match Search /\s\+$/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001907For Unix there is one special way to comment a line, that allows making a Vim
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001908script executable, and it also works in legacy script: >
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001909 #!/usr/bin/env vim -S
1910 echo "this is a Vim script"
1911 quit
1912
Bram Moolenaar63f32602022-06-09 20:45:54 +01001913==============================================================================
1914*41.12* Fileformat
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
Bram Moolenaar63f32602022-06-09 20:45:54 +01001916The end-of-line character depends on the system. For Vim scripts it is
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001917recommended to always use the Unix fileformat. Lines are then separated with
1918the Newline character. This also works on any other system. That way you can
1919copy your Vim scripts from MS-Windows to Unix and they still work. See
1920|:source_crnl|. To be sure it is set right, do this before writing the file:
1921>
Bram Moolenaar63f32602022-06-09 20:45:54 +01001922 :setlocal fileformat=unix
Bram Moolenaar2d8ed022022-05-21 13:08:16 +01001923
Bram Moolenaar8cc5b552022-06-23 13:04:20 +01001924When using "dos" fileformat, lines are separated with CR-NL, two characters.
1925The CR character causes various problems, better avoid this.
1926
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928
Bram Moolenaar63f32602022-06-09 20:45:54 +01001929Advance information about writing Vim script is in |usr_50.txt|.
1930
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931Next chapter: |usr_42.txt| Add new menus
1932
Bram Moolenaard473c8c2018-08-11 18:00:22 +02001933Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: