blob: 623fd3b598c12d49803d5728d4556e8d109d57e4 [file] [log] [blame]
Bram Moolenaarf10911e2022-01-29 22:20:48 +00001*usr_41.txt* For Vim version 8.2. Last change: 2022 Jan 28
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3 VIM USER MANUAL - by Bram Moolenaar
4
5 Write a Vim script
6
7
8The Vim script language is used for the startup vimrc file, syntax files, and
9many other things. This chapter explains the items that can be used in a Vim
10script. There are a lot of them, thus this is a long chapter.
11
12|41.1| Introduction
13|41.2| Variables
14|41.3| Expressions
15|41.4| Conditionals
16|41.5| Executing an expression
17|41.6| Using functions
18|41.7| Defining a function
Bram Moolenaar7c626922005-02-07 22:01:03 +000019|41.8| Lists and Dictionaries
20|41.9| Exceptions
21|41.10| Various remarks
22|41.11| Writing a plugin
23|41.12| Writing a filetype plugin
24|41.13| Writing a compiler plugin
Bram Moolenaar05159a02005-02-26 23:04:13 +000025|41.14| Writing a plugin that loads quickly
26|41.15| Writing library scripts
Bram Moolenaar76916e62006-03-21 21:23:25 +000027|41.16| Distributing Vim scripts
Bram Moolenaar071d4272004-06-13 20:20:40 +000028
29 Next chapter: |usr_42.txt| Add new menus
30 Previous chapter: |usr_40.txt| Make new commands
31Table of contents: |usr_toc.txt|
32
33==============================================================================
Bram Moolenaar9d75c832005-01-25 21:57:23 +000034*41.1* Introduction *vim-script-intro* *script*
Bram Moolenaar071d4272004-06-13 20:20:40 +000035
36Your first experience with Vim scripts is the vimrc file. Vim reads it when
37it starts up and executes the commands. You can set options to values you
38prefer. And you can use any colon command in it (commands that start with a
39":"; these are sometimes referred to as Ex commands or command-line commands).
Bram Moolenaar04fb9162021-12-30 20:24:12 +000040
41Syntax files are also Vim scripts. As are files that set options for a
Bram Moolenaar071d4272004-06-13 20:20:40 +000042specific file type. A complicated macro can be defined by a separate Vim
43script file. You can think of other uses yourself.
44
Bram Moolenaar65e0d772020-06-14 17:29:55 +020045 If you are familiar with Python, you can find a comparison between
46 Python and Vim script here, with pointers to other documents:
47 https://gist.github.com/yegappan/16d964a37ead0979b05e655aa036cad0
Bram Moolenaare7b1ea02020-08-07 19:54:59 +020048 And if you are familiar with JavaScript:
Bram Moolenaar65e0d772020-06-14 17:29:55 +020049 https://w0rp.com/blog/post/vim-script-for-the-javascripter/
Bram Moolenaarebacddb2020-06-04 15:22:21 +020050
Bram Moolenaar04fb9162021-12-30 20:24:12 +000051Vim script comes in two flavors: legacy and |Vim9|. Since this help file is
52for new users, we'll teach you the newer and more convenient |Vim9| syntax.
53
54To try out Vim script the best way is to edit a script file and source it.
55Basically: >
56 :edit test.vim
57 [insert the script lines you want]
58 :w
59 :source %
60
Bram Moolenaar071d4272004-06-13 20:20:40 +000061Let's start with a simple example: >
62
Bram Moolenaar04fb9162021-12-30 20:24:12 +000063 vim9script
64 var i = 1
65 while i < 5
66 echo "count is" i
67 i += 1
68 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +000069<
Bram Moolenaar7c626922005-02-07 22:01:03 +000070The output of the example code is:
71
72 count is 1 ~
73 count is 2 ~
74 count is 3 ~
75 count is 4 ~
76
Bram Moolenaar04fb9162021-12-30 20:24:12 +000077In the first line the `vim9script` command makes clear this is a new, |Vim9|
78script file. That matters for how the rest of the file is used.
79
80The `var i = 1` command declares the "i" variable and initializes it. The
Bram Moolenaar7c626922005-02-07 22:01:03 +000081generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000082
Bram Moolenaar04fb9162021-12-30 20:24:12 +000083 var {name} = {expression}
Bram Moolenaar071d4272004-06-13 20:20:40 +000084
85In this case the variable name is "i" and the expression is a simple value,
86the number one.
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
Bram Moolenaar04fb9162021-12-30 20:24:12 +000088The `while` command starts a loop. The generic form is: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
Bram Moolenaar04fb9162021-12-30 20:24:12 +000090 while {condition}
91 {statements}
92 endwhile
93
94The statements until the matching `endwhile` are executed for as long as the
Bram Moolenaar071d4272004-06-13 20:20:40 +000095condition is true. The condition used here is the expression "i < 5". This
96is true when the variable i is smaller than five.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097 Note:
98 If you happen to write a while loop that keeps on running, you can
99 interrupt it by pressing CTRL-C (CTRL-Break on MS-Windows).
100
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000101The `echo` command prints its arguments. In this case the string "count is"
Bram Moolenaar7c626922005-02-07 22:01:03 +0000102and the value of the variable i. Since i is one, this will print:
103
104 count is 1 ~
105
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000106Then there is the `i += 1` command. This does the same thing as "i = i + 1",
107it adds one to the variable i and assigns the new value to the same variable.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000108
109The example was given to explain the commands, but would you really want to
Bram Moolenaar214641f2017-03-05 17:04:09 +0100110make such a loop, it can be written much more compact: >
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000111
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000112 for i in range(1, 4)
113 echo "count is" i
114 endfor
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000115
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000116We won't explain how `for` and `range()` work until later. Follow the links
Bram Moolenaar7c626922005-02-07 22:01:03 +0000117if you are impatient.
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000118
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200120FOUR KINDS OF NUMBERS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200122Numbers can be decimal, hexadecimal, octal or binary.
123
124A hexadecimal number starts with "0x" or "0X". For example "0x1f" is decimal
12531.
126
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000127An octal number starts with "0o", "0O". "0o17" is decimal 15.
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200128
129A binary number starts with "0b" or "0B". For example "0b101" is decimal 5.
130
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000131A decimal number is just digits. Careful: In legacy script don't put a zero
132before a decimal number, it will be interpreted as an octal number!
Bram Moolenaar11e3c5b2021-04-21 18:09:37 +0200133
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000134The `echo` command evaluates its argument and always prints decimal numbers.
135Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000137 echo 0x7f 0o36
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138< 127 30 ~
139
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200140A number is made negative with a minus sign. This also works for hexadecimal,
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000141octal and binary numbers: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000143 echo -0x7f
144< -127 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000146A minus sign is also used for subtraction. This can sometimes lead to
147confusion. If we put a minus sign before both numbers we get an error: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000149 echo -0x7f -0o36
150< E1004: White space required before and after '-' at "-0o36" ~
151
152Note: if you are not using a |Vim9| script to try out these commands but type
153them directly, they will be executed as legacy script. Then the echo command
154sees the second minus sign as subtraction. To get the error, prefix the
155command with `vim9cmd`: >
156
157 vim9cmd echo -0x7f -0o36
158< E1004: White space required before and after '-' at "-0o36" ~
159
160White space in an expression is often required to make sure it is easy to read
161and avoid errors. Such as thinking that the "-0o36" above makes the number
162negative, while it is actually seen as a subtraction.
163
164To actually have the minus sign be used for negation, you can put the second
165expression in parenthesis: >
166
167 echo -0x7f (-0o36)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168
169==============================================================================
170*41.2* Variables
171
172A variable name consists of ASCII letters, digits and the underscore. It
173cannot start with a digit. Valid variable names are:
174
175 counter
176 _aap3
177 very_long_variable_name_with_underscores
178 FuncLength
179 LENGTH
180
181Invalid names are "foo+bar" and "6var".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000182
183Some variables are global. To see a list of currently defined global
184variables type this command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
186 :let
187
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000188You can use global variables everywhere. However, it is easy to use the same
189name in two unrelated scripts. Therefore variables declared in a script are
190local to that script. For example, if you have this in "script1.vim": >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000192 vim9script
193 var counter = 5
194 echo counter
195< 5 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000197And you try to use the variable in "script2.vim": >
198
199 vim9script
200 echo counter
201< E121: Undefined variable: counter ~
202
203Using a script-local variable means you can be sure that it is only changed in
204that script and not elsewhere.
205
206If you do want to share variables between scripts, use the "g:" prefix and
207assign the value directly, do not use `var`. Thus in "script1.vim": >
208
209 vim9script
210 g:counter = 5
211 echo g:counter
212< 5 ~
213
214And then in "script2.vim": >
215
216 vim9script
217 echo g:counter
218< 5 ~
219
220More about script-local variables here: |script-variable|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221
222There are more kinds of variables, see |internal-variables|. The most often
223used ones are:
224
225 b:name variable local to a buffer
226 w:name variable local to a window
227 g:name global variable (also in a function)
228 v:name variable predefined by Vim
229
230
231DELETING VARIABLES
232
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000233Variables take up memory and show up in the output of the `let` command. To
234delete a global variable use the `unlet` command. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000236 unlet g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000238This deletes the global variable "g:counter" to free up the memory it uses.
239If you are not sure if the variable exists, and don't want an error message
240when it doesn't, append !: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000242 unlet! g:counter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000244You cannot `unlet` script-local variables in |Vim9| script. You can in legacy
245script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000247When a script finishes, the local variables declared there will not be
248deleted. Functions defined in the script can use them. Example:
249>
250 vim9script
251 var counter = 0
252 def g:GetCount(): number
253 s:counter += 1
254 return s:counter
255 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000257Every time you call the function it will return the next count: >
258 :echo g:GetCount()
259< 1 ~
260>
261 :echo g:GetCount()
262< 2 ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000264If you are worried a script-local variable is consuming too much
265memory, set it to an empty value after you no longer need it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000267Note: below we'll leave out the `vim9script` line, so we can concentrate on
268the relevant commands, but you'll still need to put it at the top of your
269script file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270
271
272STRING VARIABLES AND CONSTANTS
273
274So far only numbers were used for the variable value. Strings can be used as
Bram Moolenaar7c626922005-02-07 22:01:03 +0000275well. Numbers and strings are the basic types of variables that Vim supports.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000276Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000278 var name = "Peter"
279 echo name
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000280< Peter ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000282Every variable has a type. Very often, as in this example, the type is
283defined by assigning a value. This is called type inference. If you do not
284want to give the variable a value yet, you need to specify the type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000286 var name: string
287 var age: number
288 ...
289 name = "Peter"
290 age = 42
291
292If you make a mistake and try to assign the wrong type of value you'll get an
293error: >
294
295 age = "Peter"
296< E1012: Type mismatch; expected number but got string ~
297
298More about types in |41.8|.
299
300To assign a string value to a variable, you need to use a string constant.
301There are two types of these. First the string in double quotes, as we used
302already. If you want to include a double quote inside the string, put a
303backslash in front of it: >
304
305 var name = "he is \"Peter\""
306 echo name
307< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308
309To avoid the need for a backslash, you can use a string in single quotes: >
310
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000311 var name = 'he is "Peter"'
312 echo name
313< he is "Peter" ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaar7c626922005-02-07 22:01:03 +0000315Inside a single-quote string all the characters are as they are. Only the
316single quote itself is special: you need to use two to get one. A backslash
317is taken literally, thus you can't use it to change the meaning of the
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000318character after it: >
319
320 var name = 'P\e''ter'''
321 echo name
322< P\e'ter' ~
323
324In double-quote strings it is possible to use special characters. Here are a
325few useful ones:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326
327 \t <Tab>
328 \n <NL>, line break
329 \r <CR>, <Enter>
330 \e <Esc>
331 \b <BS>, backspace
332 \" "
333 \\ \, backslash
334 \<Esc> <Esc>
335 \<C-W> CTRL-W
336
337The last two are just examples. The "\<name>" form can be used to include
338the special key "name".
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000339
340See |expr-quote| for the full list of special items in a string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341
342==============================================================================
343*41.3* Expressions
344
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000345Vim has a fairly standard way to handle expressions. You can read the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346definition here: |expression-syntax|. Here we will show the most common
347items.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000348
349The numbers, strings and variables mentioned above are expressions by
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350themselves. Thus everywhere an expression is expected, you can use a number,
351string or variable. Other basic items in an expression are:
352
353 $NAME environment variable
354 &name option
355 @r register
356
357Examples: >
358
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000359 echo "The value of 'tabstop' is" &ts
360 echo "Your home directory is" $HOME
361 if @a == 'text'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000363The &name form can also be used to set an option value, do something and
364restore the old value. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000366 var save_ic = &ic
367 set noic
368 s/The Start/The Beginning/
369 &ic = save_ic
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370
371This makes sure the "The Start" pattern is used with the 'ignorecase' option
Bram Moolenaar7c626922005-02-07 22:01:03 +0000372off. Still, it keeps the value that the user had set. (Another way to do
373this would be to add "\C" to the pattern, see |/\C|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374
375
376MATHEMATICS
377
378It becomes more interesting if we combine these basic items. Let's start with
379mathematics on numbers:
380
381 a + b add
382 a - b subtract
383 a * b multiply
384 a / b divide
385 a % b modulo
386
387The usual precedence is used. Example: >
388
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000389 echo 10 + 5 * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390< 20 ~
391
Bram Moolenaar00654022011-02-25 14:42:19 +0100392Grouping is done with parentheses. No surprises here. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000394 echo (10 + 5) * 2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395< 30 ~
396
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200397Strings can be concatenated with ".." (see |expr6|). Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000399 echo "foo" .. "bar"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400< foobar ~
401
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000402When the "echo" command gets multiple arguments, it separates them with a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403space. In the example the argument is a single expression, thus no space is
404inserted.
405
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000406Borrowed from the C language is the conditional expression: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407
408 a ? b : c
409
410If "a" evaluates to true "b" is used, otherwise "c" is used. Example: >
411
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000412 var nr = 4
413 echo nr > 5 ? "nr is big" : "nr is small"
414< nr is small ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415
416The three parts of the constructs are always evaluated first, thus you could
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000417see it works as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418
419 (a) ? (b) : (c)
420
421==============================================================================
422*41.4* Conditionals
423
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000424The `if` commands executes the following statements, until the matching
425`endif`, only when a condition is met. The generic form is:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000427 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000429 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000431Only when the expression {condition} evaluates to true or one will the
432{statements} be executed. If they are not executed they must still be valid
433commands. If they contain garbage, Vim won't be able to find the matching
434`endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000436You can also use `else`. The generic form for this is:
437
438 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000440 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000442 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000444The second {statements} block is only executed if the first one isn't.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000446Finally, there is `elseif`
447
448 if {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000450 elseif {condition}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 {statements}
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000452 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000454This works just like using `else` and then `if`, but without the need for an
455extra `endif`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000457A useful example for your vimrc file is checking the 'term' option and doing
458something depending upon its value: >
459
460 if &term == "xterm"
461 # Do stuff for xterm
462 elseif &term == "vt100"
463 # Do stuff for a vt100 terminal
464 else
465 # Do something for other terminals
466 endif
467
468This uses "#" to start a comment, more about that later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
470
471LOGIC OPERATIONS
472
473We already used some of them in the examples. These are the most often used
474ones:
475
476 a == b equal to
477 a != b not equal to
478 a > b greater than
479 a >= b greater than or equal to
480 a < b less than
481 a <= b less than or equal to
482
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000483The result is true if the condition is met and false otherwise. An example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000485 if v:version >= 700
486 echo "congratulations"
487 else
488 echo "you are using an old version, upgrade!"
489 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490
491Here "v:version" is a variable defined by Vim, which has the value of the Vim
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000492version. 600 is for version 6.0, version 6.1 has the value 601. This is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493very useful to write a script that works with multiple versions of Vim.
494|v:version|
495
496The logic operators work both for numbers and strings. When comparing two
497strings, the mathematical difference is used. This compares byte values,
498which may not be right for some languages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000500If you try to compare a string with a number you will get an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000502For strings there are two more useful items:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000504 str =~ pat matches with
505 str !~ pat does not match with
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000507The left item "str" is used as a string. The right item "pat" is used as a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508pattern, like what's used for searching. Example: >
509
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000510 if str =~ " "
511 echo "str contains a space"
512 endif
513 if str !~ '\.$'
514 echo "str does not end in a full stop"
515 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516
517Notice the use of a single-quote string for the pattern. This is useful,
Bram Moolenaar7c626922005-02-07 22:01:03 +0000518because backslashes would need to be doubled in a double-quote string and
519patterns tend to contain many backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000521The match is not anchored, if you want to match the whole string start with
522"^" and end with "$".
523
524The 'ignorecase' option is not used when comparing strings. When you do want
525to ignore case append "?". Thus "==?" compares two strings to be equal while
526ignoring case. For the full table see |expr-==|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527
528
529MORE LOOPING
530
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000531The `while` command was already mentioned. Two more statements can be used in
532between the `while` and the `endwhile`:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000534 continue Jump back to the start of the while loop; the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 loop continues.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000536 break Jump forward to the `endwhile`; the loop is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 discontinued.
538
539Example: >
540
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000541 var counter = 1
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000542 while counter < 40
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000543 if skip_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000544 continue
545 endif
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000546 if last_number(counter)
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000547 break
548 endif
549 sleep 50m
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000550 ++counter
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000551 endwhile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000553The `sleep` command makes Vim take a nap. The "50m" specifies fifty
554milliseconds. Another example is `sleep 4`, which sleeps for four seconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000556Even more looping can be done with the `for` command, see below in |41.8|.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000557
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558==============================================================================
559*41.5* Executing an expression
560
561So far the commands in the script were executed by Vim directly. The
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000562`execute` command allows executing the result of an expression. This is a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563very powerful way to build commands and execute them.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000565An example is to jump to a tag, which is contained in a variable: >
566
567 execute "tag " .. tag_name
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200569The ".." is used to concatenate the string "tag " with the value of variable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570"tag_name". Suppose "tag_name" has the value "get_cmd", then the command that
571will be executed is: >
572
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000573 tag get_cmd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000575The `execute` command can only execute Ex commands. The `normal` command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576executes Normal mode commands. However, its argument is not an expression but
577the literal command characters. Example: >
578
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000579 normal gg=G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000581This jumps to the first line with "gg" and formats all lines with the "="
582operator and the "G" movement.
583
584To make `normal` work with an expression, combine `execute` with it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585Example: >
586
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000587 execute "normal " .. count .. "j"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000589This will move the cursor "count" lines down.
590
591Make sure that the argument for `normal` is a complete command. Otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592Vim will run into the end of the argument and abort the command. For example,
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000593if you start the delete operator, you must give the movement command also.
594This works: >
595
596 normal d$
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000598This does nothing: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000600 normal d
601
602If you start Insert mode and do not end it with Esc, it will end anyway. This
603works to insert "new text": >
604
605 execute "normal inew text"
606
607If you want to do something after inserting text you do need to end Insert
608mode: >
609
610 execute "normal inew text\<Esc>b"
611
612This inserts "new text" and puts the cursor on the first letter of "text".
613Notice the use of the special key "\<Esc>". This avoids having to enter a
614real <Esc> character in your script. That is where `execute` with a
615double-quote string comes in handy.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
Bram Moolenaar7c626922005-02-07 22:01:03 +0000617If you don't want to execute a string but evaluate it to get its expression
618value, you can use the eval() function: >
619
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000620 var optname = "path"
621 var optvalue = eval('&' .. optname)
Bram Moolenaar7c626922005-02-07 22:01:03 +0000622
623A "&" character is prepended to "path", thus the argument to eval() is
624"&path". The result will then be the value of the 'path' option.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000625
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626==============================================================================
627*41.6* Using functions
628
629Vim defines many functions and provides a large amount of functionality that
630way. A few examples will be given in this section. You can find the whole
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000631list below: |function-list|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000633A function is called with the `call` command. The parameters are passed in
Bram Moolenaar00654022011-02-25 14:42:19 +0100634between parentheses separated by commas. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000636 call search("Date: ", "W")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637
638This calls the search() function, with arguments "Date: " and "W". The
639search() function uses its first argument as a search pattern and the second
640one as flags. The "W" flag means the search doesn't wrap around the end of
641the file.
642
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000643Using `call` is optional in |Vim9| script, this works the same way: >
644
645 search("Date: ", "W")
646
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647A function can be called in an expression. Example: >
648
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000649 var line = getline(".")
650 var repl = substitute(line, '\a', "*", "g")
651 setline(".", repl)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652
Bram Moolenaar7c626922005-02-07 22:01:03 +0000653The getline() function obtains a line from the current buffer. Its argument
654is a specification of the line number. In this case "." is used, which means
655the line where the cursor is.
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000656
657The substitute() function does something similar to the `substitute` command.
658The first argument is the string on which to perform the substitution. The
659second argument is the pattern, the third the replacement string. Finally,
660the last arguments are the flags.
661
662The setline() function sets the line, specified by the first argument, to a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663new string, the second argument. In this example the line under the cursor is
664replaced with the result of the substitute(). Thus the effect of the three
665statements is equal to: >
666
667 :substitute/\a/*/g
668
669Using the functions becomes more interesting when you do more work before and
670after the substitute() call.
671
672
673FUNCTIONS *function-list*
674
675There are many functions. We will mention them here, grouped by what they are
Bram Moolenaar04fb9162021-12-30 20:24:12 +0000676used for. You can find an alphabetical list here: |builtin-function-list|.
677Use CTRL-] on the function name to jump to detailed help on it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
Bram Moolenaara3f41662010-07-11 19:01:06 +0200679String manipulation: *string-functions*
Bram Moolenaar9d401282019-04-06 13:18:12 +0200680 nr2char() get a character by its number value
681 list2str() get a character string from a list of numbers
682 char2nr() get number value of a character
683 str2list() get list of numbers from a string
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000684 str2nr() convert a string to a Number
685 str2float() convert a string to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000686 printf() format a string according to % items
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 escape() escape characters in a string with a '\'
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000688 shellescape() escape a string for use with a shell command
689 fnameescape() escape a file name for use with a Vim command
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000690 tr() translate characters from one set to another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 strtrans() translate a string to make it printable
692 tolower() turn a string to lowercase
693 toupper() turn a string to uppercase
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200694 charclass() class of a character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 match() position where a pattern matches in a string
696 matchend() position where a pattern match ends in a string
Bram Moolenaar635414d2020-09-11 22:25:15 +0200697 matchfuzzy() fuzzy matches a string in a list of strings
Bram Moolenaar4f73b8e2020-09-22 20:33:50 +0200698 matchfuzzypos() fuzzy matches a string in a list of strings
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 matchstr() match of a pattern in a string
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200700 matchstrpos() match and positions of a pattern in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000701 matchlist() like matchstr() and also return submatches
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 stridx() first index of a short string in a long string
703 strridx() last index of a short string in a long string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100704 strlen() length of a string in bytes
Bram Moolenaar70ce8a12021-03-14 19:02:09 +0100705 strcharlen() length of a string in characters
706 strchars() number of characters in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100707 strwidth() size of string when displayed
708 strdisplaywidth() size of string when displayed, deals with tabs
Bram Moolenaar08aac3c2020-08-28 21:04:24 +0200709 setcellwidths() set character cell width overrides
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 substitute() substitute a pattern match with a string
Bram Moolenaar251e1912011-06-19 05:09:16 +0200711 submatch() get a specific match in ":s" and substitute()
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200712 strpart() get part of a string using byte index
713 strcharpart() get part of a string using char index
Bram Moolenaar6601b622021-01-13 21:47:15 +0100714 slice() take a slice of a string, using char index in
715 Vim9 script
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200716 strgetchar() get character from a string using char index
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 expand() expand special keywords
Bram Moolenaar80dad482019-06-09 17:22:31 +0200718 expandcmd() expand a command like done for `:edit`
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 iconv() convert text from one encoding to another
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000720 byteidx() byte index of a character in a string
Bram Moolenaar8d043172014-01-23 14:24:41 +0100721 byteidxcomp() like byteidx() but count composing characters
Bram Moolenaar17793ef2020-12-28 12:56:58 +0100722 charidx() character index of a byte in a string
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000723 repeat() repeat a string multiple times
724 eval() evaluate a string expression
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200725 execute() execute an Ex command and get the output
Bram Moolenaar7dd64a32019-05-31 21:41:05 +0200726 win_execute() like execute() but in a specified window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100727 trim() trim characters from a string
Bram Moolenaar0b39c3f2020-08-30 15:52:10 +0200728 gettext() lookup message translation
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729
Bram Moolenaara3f41662010-07-11 19:01:06 +0200730List manipulation: *list-functions*
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000731 get() get an item without error for wrong index
732 len() number of items in a List
733 empty() check if List is empty
734 insert() insert an item somewhere in a List
735 add() append an item to a List
736 extend() append a List to a List
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100737 extendnew() make a new List and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000738 remove() remove one or more items from a List
739 copy() make a shallow copy of a List
740 deepcopy() make a full copy of a List
741 filter() remove selected items from a List
742 map() change each List item
Bram Moolenaarea696852020-11-09 18:31:39 +0100743 mapnew() make a new List with changed items
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200744 reduce() reduce a List to a value
Bram Moolenaar6601b622021-01-13 21:47:15 +0100745 slice() take a slice of a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000746 sort() sort a List
747 reverse() reverse the order of a List
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100748 uniq() remove copies of repeated adjacent items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000749 split() split a String into a List
750 join() join List items into a String
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000751 range() return a List with a sequence of numbers
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000752 string() String representation of a List
753 call() call a function with List as arguments
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000754 index() index of a value in a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000755 max() maximum value in a List
756 min() minimum value in a List
757 count() count number of times a value appears in a List
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000758 repeat() repeat a List multiple times
Bram Moolenaar077a1e62020-06-08 20:50:43 +0200759 flatten() flatten a List
Bram Moolenaar3b690062021-02-01 20:14:51 +0100760 flattennew() flatten a copy of a List
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000761
Bram Moolenaara3f41662010-07-11 19:01:06 +0200762Dictionary manipulation: *dict-functions*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000763 get() get an entry without an error for a wrong key
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000764 len() number of entries in a Dictionary
765 has_key() check whether a key appears in a Dictionary
766 empty() check if Dictionary is empty
767 remove() remove an entry from a Dictionary
768 extend() add entries from one Dictionary to another
Bram Moolenaarb0e6b512021-01-12 20:23:40 +0100769 extendnew() make a new Dictionary and append items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000770 filter() remove selected entries from a Dictionary
771 map() change each Dictionary entry
Bram Moolenaarea696852020-11-09 18:31:39 +0100772 mapnew() make a new Dictionary with changed items
Bram Moolenaaraf7f6412005-01-17 22:11:23 +0000773 keys() get List of Dictionary keys
774 values() get List of Dictionary values
775 items() get List of Dictionary key-value pairs
776 copy() make a shallow copy of a Dictionary
777 deepcopy() make a full copy of a Dictionary
778 string() String representation of a Dictionary
779 max() maximum value in a Dictionary
780 min() minimum value in a Dictionary
781 count() count number of times a value appears
782
Bram Moolenaara3f41662010-07-11 19:01:06 +0200783Floating point computation: *float-functions*
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000784 float2nr() convert Float to Number
785 abs() absolute value (also works for Number)
786 round() round off
787 ceil() round up
788 floor() round down
789 trunc() remove value after decimal point
Bram Moolenaar8d043172014-01-23 14:24:41 +0100790 fmod() remainder of division
791 exp() exponential
792 log() natural logarithm (logarithm to base e)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000793 log10() logarithm to base 10
794 pow() value of x to the exponent y
795 sqrt() square root
796 sin() sine
797 cos() cosine
Bram Moolenaar662db672011-03-22 14:05:35 +0100798 tan() tangent
799 asin() arc sine
800 acos() arc cosine
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000801 atan() arc tangent
Bram Moolenaar662db672011-03-22 14:05:35 +0100802 atan2() arc tangent
803 sinh() hyperbolic sine
804 cosh() hyperbolic cosine
805 tanh() hyperbolic tangent
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200806 isinf() check for infinity
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200807 isnan() check for not a number
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000808
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +0200809Blob manipulation: *blob-functions*
810 blob2list() get a list of numbers from a blob
811 list2blob() get a blob from a list of numbers
812
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100813Other computation: *bitwise-function*
814 and() bitwise AND
815 invert() bitwise invert
816 or() bitwise OR
817 xor() bitwise XOR
Bram Moolenaar8d043172014-01-23 14:24:41 +0100818 sha256() SHA-256 hash
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200819 rand() get a pseudo-random number
820 srand() initialize seed used by rand()
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100821
Bram Moolenaara3f41662010-07-11 19:01:06 +0200822Variables: *var-functions*
Bram Moolenaara47e05f2021-01-12 21:49:00 +0100823 type() type of a variable as a number
824 typename() type of a variable as text
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000825 islocked() check if a variable is locked
Bram Moolenaar214641f2017-03-05 17:04:09 +0100826 funcref() get a Funcref for a function reference
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000827 function() get a Funcref for a function name
828 getbufvar() get a variable value from a specific buffer
829 setbufvar() set a variable in a specific buffer
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000830 getwinvar() get a variable from specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200831 gettabvar() get a variable from specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000832 gettabwinvar() get a variable from specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000833 setwinvar() set a variable in a specific window
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200834 settabvar() set a variable in a specific tab page
Bram Moolenaarc6249bb2006-04-15 20:25:09 +0000835 settabwinvar() set a variable in a specific window & tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000836 garbagecollect() possibly free memory
837
Bram Moolenaara3f41662010-07-11 19:01:06 +0200838Cursor and mark position: *cursor-functions* *mark-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 col() column number of the cursor or a mark
840 virtcol() screen column of the cursor or a mark
841 line() line number of the cursor or mark
842 wincol() window column number of the cursor
843 winline() window line number of the cursor
844 cursor() position the cursor at a line/column
Bram Moolenaar8d043172014-01-23 14:24:41 +0100845 screencol() get screen column of the cursor
846 screenrow() get screen row of the cursor
Bram Moolenaarb3d17a22019-07-07 18:28:14 +0200847 screenpos() screen row and col of a text character
Bram Moolenaar822ff862014-06-12 21:46:14 +0200848 getcurpos() get position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000849 getpos() get position of cursor, mark, etc.
850 setpos() set position of cursor, mark, etc.
Bram Moolenaarcfb4b472020-05-31 15:41:57 +0200851 getmarklist() list of global/local marks
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000852 byte2line() get line number at a specific byte count
853 line2byte() byte count at a specific line
854 diff_filler() get the number of filler lines above a line
Bram Moolenaar8d043172014-01-23 14:24:41 +0100855 screenattr() get attribute at a screen line/row
856 screenchar() get character code at a screen line/row
Bram Moolenaar2912abb2019-03-29 14:16:42 +0100857 screenchars() get character codes at a screen line/row
858 screenstring() get string of characters at a screen line/row
Bram Moolenaar6f02b002021-01-10 20:22:54 +0100859 charcol() character number of the cursor or a mark
860 getcharpos() get character position of cursor, mark, etc.
861 setcharpos() set character position of cursor, mark, etc.
862 getcursorcharpos() get character position of the cursor
863 setcursorcharpos() set character position of the cursor
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000864
Bram Moolenaara3f41662010-07-11 19:01:06 +0200865Working with text in the current buffer: *text-functions*
Bram Moolenaar7c626922005-02-07 22:01:03 +0000866 getline() get a line or list of lines from the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 setline() replace a line in the buffer
Bram Moolenaar7c626922005-02-07 22:01:03 +0000868 append() append line or list of lines in the buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 indent() indent of a specific line
870 cindent() indent according to C indenting
871 lispindent() indent according to Lisp indenting
872 nextnonblank() find next non-blank line
873 prevnonblank() find previous non-blank line
874 search() find a match for a pattern
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000875 searchpos() find a match for a pattern
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200876 searchcount() get number of matches before/after the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 searchpair() find the other end of a start/skip/end
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000878 searchpairpos() find the other end of a start/skip/end
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000879 searchdecl() search for the declaration of a name
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200880 getcharsearch() return character search information
881 setcharsearch() set character search information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882
Bram Moolenaar931a2772019-07-04 16:54:54 +0200883Working with text in another buffer:
884 getbufline() get a list of lines from the specified buffer
885 setbufline() replace a line in the specified buffer
886 appendbufline() append a list of lines in the specified buffer
887 deletebufline() delete lines from a specified buffer
888
Bram Moolenaara3f41662010-07-11 19:01:06 +0200889 *system-functions* *file-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890System functions and manipulation of files:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 glob() expand wildcards
892 globpath() expand wildcards in a number of directories
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200893 glob2regpat() convert a glob pattern into a search pattern
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000894 findfile() find a file in a list of directories
895 finddir() find a directory in a list of directories
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 resolve() find out where a shortcut points to
897 fnamemodify() modify a file name
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000898 pathshorten() shorten directory names in a path
899 simplify() simplify a path without changing its meaning
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 executable() check if an executable program exists
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200901 exepath() full path of an executable program
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 filereadable() check if a file can be read
903 filewritable() check if a file can be written to
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000904 getfperm() get the permissions of a file
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200905 setfperm() set the permissions of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000906 getftype() get the kind of a file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 isdirectory() check if a directory exists
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 getfsize() get the size of a file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000909 getcwd() get the current working directory
Bram Moolenaar00aa0692019-04-27 20:37:57 +0200910 haslocaldir() check if current window used |:lcd| or |:tcd|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 tempname() get the name of a temporary file
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000912 mkdir() create a new directory
Bram Moolenaar1063f3d2019-05-07 22:06:52 +0200913 chdir() change current working directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 delete() delete a file
915 rename() rename a file
Bram Moolenaar7e38ea22014-04-05 22:55:53 +0200916 system() get the result of a shell command as a string
917 systemlist() get the result of a shell command as a list
Bram Moolenaar691ddee2019-05-09 14:52:41 +0200918 environ() get all environment variables
919 getenv() get one environment variable
920 setenv() set an environment variable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 hostname() name of the system
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +0000922 readfile() read a file into a List of lines
Bram Moolenaarc423ad72021-01-13 20:38:03 +0100923 readblob() read a file into a Blob
Bram Moolenaar62e1bb42019-04-08 16:25:07 +0200924 readdir() get a List of file names in a directory
Bram Moolenaar6c9ba042020-06-01 16:09:41 +0200925 readdirex() get a List of file information in a directory
Bram Moolenaar314dd792019-02-03 15:27:20 +0100926 writefile() write a List of lines or Blob into a file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927
Bram Moolenaara3f41662010-07-11 19:01:06 +0200928Date and Time: *date-functions* *time-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000929 getftime() get last modification time of a file
930 localtime() get current time in seconds
931 strftime() convert time to a string
Bram Moolenaar10455d42019-11-21 15:36:18 +0100932 strptime() convert a date/time string to time
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000933 reltime() get the current or elapsed time accurately
934 reltimestr() convert reltime() result to a string
Bram Moolenaar03413f42016-04-12 21:07:15 +0200935 reltimefloat() convert reltime() result to a Float
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000936
Bram Moolenaara3f41662010-07-11 19:01:06 +0200937 *buffer-functions* *window-functions* *arg-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938Buffers, windows and the argument list:
939 argc() number of entries in the argument list
940 argidx() current position in the argument list
Bram Moolenaar2d1fe052014-05-28 18:22:57 +0200941 arglistid() get id of the argument list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 argv() get one entry from the argument list
Bram Moolenaar931a2772019-07-04 16:54:54 +0200943 bufadd() add a file to the list of buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 bufexists() check if a buffer exists
945 buflisted() check if a buffer exists and is listed
Bram Moolenaar931a2772019-07-04 16:54:54 +0200946 bufload() ensure a buffer is loaded
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 bufloaded() check if a buffer exists and is loaded
948 bufname() get the name of a specific buffer
949 bufnr() get the buffer number of a specific buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000950 tabpagebuflist() return List of buffers in a tab page
951 tabpagenr() get the number of a tab page
952 tabpagewinnr() like winnr() for a specified tab page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 winnr() get the window number for the current window
Bram Moolenaar82af8712016-06-04 20:20:29 +0200954 bufwinid() get the window ID of a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 bufwinnr() get the window number of a specific buffer
956 winbufnr() get the buffer number of a specific window
Bram Moolenaara3347722019-05-11 21:14:24 +0200957 listener_add() add a callback to listen to changes
Bram Moolenaar68e65602019-05-26 21:33:31 +0200958 listener_flush() invoke listener callbacks
Bram Moolenaara3347722019-05-11 21:14:24 +0200959 listener_remove() remove a listener callback
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200960 win_findbuf() find windows containing a buffer
961 win_getid() get window ID of a window
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200962 win_gettype() get type of window
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200963 win_gotoid() go to window with ID
964 win_id2tabwin() get tab and window nr from window ID
965 win_id2win() get window nr from window ID
Daniel Steinbergee630312022-01-10 13:36:34 +0000966 win_move_separator() move window vertical separator
967 win_move_statusline() move window status line
Bram Moolenaarebacddb2020-06-04 15:22:21 +0200968 win_splitmove() move window to a split of another window
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +0200969 getbufinfo() get a list with buffer information
970 gettabinfo() get a list with tab page information
971 getwininfo() get a list with window information
Bram Moolenaar07ad8162018-02-13 13:59:59 +0100972 getchangelist() get a list of change list entries
Bram Moolenaar4f505882018-02-10 21:06:32 +0100973 getjumplist() get a list of jump list entries
Bram Moolenaarfc65cab2018-08-28 22:58:02 +0200974 swapinfo() information about a swap file
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100975 swapname() get the swap file path of a buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000976
Bram Moolenaara3f41662010-07-11 19:01:06 +0200977Command line: *command-line-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000978 getcmdline() get the current command line
979 getcmdpos() get position of the cursor in the command line
980 setcmdpos() set position of the cursor in the command line
981 getcmdtype() return the current command-line type
Bram Moolenaarfb539272014-08-22 19:21:47 +0200982 getcmdwintype() return the current command-line window type
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200983 getcompletion() list of command-line completion matches
Bram Moolenaar038e09e2021-02-06 12:38:51 +0100984 fullcommand() get full command name
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000985
Bram Moolenaara3f41662010-07-11 19:01:06 +0200986Quickfix and location lists: *quickfix-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000987 getqflist() list of quickfix errors
988 setqflist() modify a quickfix list
989 getloclist() list of location list items
990 setloclist() modify a location list
991
Bram Moolenaara3f41662010-07-11 19:01:06 +0200992Insert mode completion: *completion-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000993 complete() set found matches
994 complete_add() add to found matches
995 complete_check() check if completion should be aborted
Bram Moolenaarfd133322019-03-29 12:20:27 +0100996 complete_info() get current completion information
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000997 pumvisible() check if the popup menu is displayed
Bram Moolenaar5be4cee2019-09-27 19:34:08 +0200998 pum_getpos() position and size of popup menu if visible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999
Bram Moolenaara3f41662010-07-11 19:01:06 +02001000Folding: *folding-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 foldclosed() check for a closed fold at a specific line
1002 foldclosedend() like foldclosed() but return the last line
1003 foldlevel() check for the fold level at a specific line
1004 foldtext() generate the line displayed for a closed fold
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001005 foldtextresult() get the text displayed for a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006
Bram Moolenaara3f41662010-07-11 19:01:06 +02001007Syntax and highlighting: *syntax-functions* *highlighting-functions*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001008 clearmatches() clear all matches defined by |matchadd()| and
1009 the |:match| commands
1010 getmatches() get all matches defined by |matchadd()| and
1011 the |:match| commands
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 hlexists() check if a highlight group exists
Yegappan Lakshmanand1a8d652021-11-03 21:56:45 +00001013 hlget() get highlight group attributes
1014 hlset() set highlight group attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 hlID() get ID of a highlight group
1016 synID() get syntax ID at a specific position
1017 synIDattr() get a specific attribute of a syntax ID
1018 synIDtrans() get translated syntax ID
Bram Moolenaar166af9b2010-11-16 20:34:40 +01001019 synstack() get list of syntax IDs at a specific position
Bram Moolenaar81af9252010-12-10 20:35:50 +01001020 synconcealed() get info about concealing
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001021 diff_hlID() get highlight ID for diff mode at a position
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001022 matchadd() define a pattern to highlight (a "match")
Bram Moolenaarb3414592014-06-17 17:48:32 +02001023 matchaddpos() define a list of positions to highlight
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001024 matcharg() get info about |:match| arguments
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001025 matchdelete() delete a match defined by |matchadd()| or a
1026 |:match| command
1027 setmatches() restore a list of matches saved by
1028 |getmatches()|
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001029
Bram Moolenaara3f41662010-07-11 19:01:06 +02001030Spelling: *spell-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001031 spellbadword() locate badly spelled word at or after cursor
1032 spellsuggest() return suggested spelling corrections
1033 soundfold() return the sound-a-like equivalent of a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034
Bram Moolenaara3f41662010-07-11 19:01:06 +02001035History: *history-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 histadd() add an item to a history
1037 histdel() delete an item from a history
1038 histget() get an item from a history
1039 histnr() get highest index of a history list
1040
Bram Moolenaara3f41662010-07-11 19:01:06 +02001041Interactive: *interactive-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001042 browse() put up a file requester
1043 browsedir() put up a directory requester
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 confirm() let the user make a choice
1045 getchar() get a character from the user
Bram Moolenaarf7a023e2021-06-07 18:50:01 +02001046 getcharstr() get a character from the user as a string
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 getcharmod() get modifiers for the last typed character
Bram Moolenaar09c6f262019-11-17 15:55:14 +01001048 getmousepos() get last known mouse position
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001049 echoraw() output characters as-is
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001050 feedkeys() put characters in the typeahead queue
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 input() get a line from the user
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001052 inputlist() let the user pick an entry from a list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 inputsecret() get a line from the user without showing it
1054 inputdialog() get a line from the user in a dialog
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001055 inputsave() save and clear typeahead
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 inputrestore() restore typeahead
1057
Bram Moolenaara3f41662010-07-11 19:01:06 +02001058GUI: *gui-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001059 getfontname() get name of current font being used
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001060 getwinpos() position of the Vim window
1061 getwinposx() X position of the Vim window
1062 getwinposy() Y position of the Vim window
Bram Moolenaar214641f2017-03-05 17:04:09 +01001063 balloon_show() set the balloon content
Bram Moolenaara2a80162017-11-21 23:09:50 +01001064 balloon_split() split a message for a balloon
Bram Moolenaar691ddee2019-05-09 14:52:41 +02001065 balloon_gettext() get the text in the balloon
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001066
Bram Moolenaara3f41662010-07-11 19:01:06 +02001067Vim server: *server-functions*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 serverlist() return the list of server names
Bram Moolenaar01164a62017-11-02 22:58:42 +01001069 remote_startserver() run a server
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 remote_send() send command characters to a Vim server
1071 remote_expr() evaluate an expression in a Vim server
1072 server2client() send a reply to a client of a Vim server
1073 remote_peek() check if there is a reply from a Vim server
1074 remote_read() read a reply from a Vim server
1075 foreground() move the Vim window to the foreground
1076 remote_foreground() move the Vim server window to the foreground
1077
Bram Moolenaara3f41662010-07-11 19:01:06 +02001078Window size and position: *window-size-functions*
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001079 winheight() get height of a specific window
1080 winwidth() get width of a specific window
Bram Moolenaarf0b03c42017-12-17 17:17:07 +01001081 win_screenpos() get screen position of a window
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001082 winlayout() get layout of windows in a tab page
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001083 winrestcmd() return command to restore window sizes
1084 winsaveview() get view of current window
1085 winrestview() restore saved view of current window
1086
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001087Mappings and Menus: *mapping-functions*
h-east29b85712021-07-26 21:54:04 +02001088 digraph_get() get |digraph|
1089 digraph_getlist() get all |digraph|s
1090 digraph_set() register |digraph|
1091 digraph_setlist() register multiple |digraph|s
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 hasmapto() check if a mapping exists
1093 mapcheck() check if a matching mapping exists
1094 maparg() get rhs of a mapping
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001095 mapset() restore a mapping
Bram Moolenaar0eabd4d2020-03-15 16:13:53 +01001096 menu_info() get information about a menu item
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001097 wildmenumode() check if the wildmode is active
1098
Bram Moolenaar683fa182015-11-30 21:38:24 +01001099Testing: *test-functions*
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001100 assert_equal() assert that two expressions values are equal
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001101 assert_equalfile() assert that two file contents are equal
Bram Moolenaar03413f42016-04-12 21:07:15 +02001102 assert_notequal() assert that two expressions values are not equal
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001103 assert_inrange() assert that an expression is inside a range
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +02001104 assert_match() assert that a pattern matches the value
Bram Moolenaar03413f42016-04-12 21:07:15 +02001105 assert_notmatch() assert that a pattern does not match the value
Bram Moolenaar683fa182015-11-30 21:38:24 +01001106 assert_false() assert that an expression is false
1107 assert_true() assert that an expression is true
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001108 assert_exception() assert that a command throws an exception
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001109 assert_beeps() assert that a command beeps
Bram Moolenaar0df60302021-04-03 15:15:47 +02001110 assert_nobeep() assert that a command does not cause a beep
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +01001111 assert_fails() assert that a command fails
Bram Moolenaar3c2881d2017-03-21 19:18:29 +01001112 assert_report() report a test failure
Yegappan Lakshmanan4dc0dd82022-01-29 13:06:40 +00001113 internal_get_nv_cmdchar() normal/visual command character at an index
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001114 test_alloc_fail() make memory allocation fail
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001115 test_autochdir() enable 'autochdir' during startup
Bram Moolenaar036986f2017-03-16 17:41:02 +01001116 test_override() test with Vim internal overrides
1117 test_garbagecollect_now() free memory right now
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001118 test_garbagecollect_soon() set a flag to free memory soon
Bram Moolenaar68e65602019-05-26 21:33:31 +02001119 test_getvalue() get value of an internal variable
Yegappan Lakshmanan18d46582021-06-23 20:46:52 +02001120 test_gui_drop_files() drop file(s) in a window
Yegappan Lakshmananf1e74492021-06-21 18:44:26 +02001121 test_gui_mouse_event() add a GUI mouse event to the input buffer
Yegappan Lakshmananb0ad2d92022-01-27 13:16:59 +00001122 test_gui_tabline_event() add a GUI tabline event to the input buffer
1123 test_gui_tabmenu_event() add a GUI tabmenu event to the input buffer
Bram Moolenaar214641f2017-03-05 17:04:09 +01001124 test_ignore_error() ignore a specific error message
Bram Moolenaar314dd792019-02-03 15:27:20 +01001125 test_null_blob() return a null Blob
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001126 test_null_channel() return a null Channel
1127 test_null_dict() return a null Dict
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001128 test_null_function() return a null Funcref
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001129 test_null_job() return a null Job
1130 test_null_list() return a null List
1131 test_null_partial() return a null Partial function
1132 test_null_string() return a null String
Bram Moolenaar214641f2017-03-05 17:04:09 +01001133 test_settime() set the time Vim uses internally
Bram Moolenaarbb8476b2019-05-04 15:47:48 +02001134 test_setmouse() set the mouse position
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001135 test_feedinput() add key sequence to input buffer
1136 test_option_not_set() reset flag indicating option was set
1137 test_scrollbar() simulate scrollbar movement in the GUI
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001138 test_refcount() return an expression's reference count
1139 test_srand_seed() set the seed value for srand()
1140 test_unknown() return a value with unknown type
1141 test_void() return a value with void type
Bram Moolenaar683fa182015-11-30 21:38:24 +01001142
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001143Inter-process communication: *channel-functions*
Bram Moolenaar51628222016-12-01 23:03:28 +01001144 ch_canread() check if there is something to read
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001145 ch_open() open a channel
1146 ch_close() close a channel
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001147 ch_close_in() close the in part of a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001148 ch_read() read a message from a channel
Bram Moolenaard09091d2019-01-17 16:07:22 +01001149 ch_readblob() read a Blob from a channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001150 ch_readraw() read a raw message from a channel
Bram Moolenaar681baaf2016-02-04 20:57:07 +01001151 ch_sendexpr() send a JSON message over a channel
1152 ch_sendraw() send a raw message over a channel
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001153 ch_evalexpr() evaluate an expression over channel
1154 ch_evalraw() evaluate a raw string over channel
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001155 ch_status() get status of a channel
1156 ch_getbufnr() get the buffer number of a channel
1157 ch_getjob() get the job associated with a channel
1158 ch_info() get channel information
1159 ch_log() write a message in the channel log file
1160 ch_logfile() set the channel log file
1161 ch_setoptions() set the options for a channel
Bram Moolenaara02a5512016-06-17 12:48:11 +02001162 json_encode() encode an expression to a JSON string
1163 json_decode() decode a JSON string to Vim types
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001164 js_encode() encode an expression to a JSON string
1165 js_decode() decode a JSON string to Vim types
1166
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001167Jobs: *job-functions*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001168 job_start() start a job
1169 job_stop() stop a job
1170 job_status() get the status of a job
1171 job_getchannel() get the channel used by a job
1172 job_info() get information about a job
1173 job_setoptions() set options for a job
1174
Bram Moolenaar162b7142018-12-21 15:17:36 +01001175Signs: *sign-functions*
1176 sign_define() define or update a sign
1177 sign_getdefined() get a list of defined signs
1178 sign_getplaced() get a list of placed signs
Bram Moolenaar6b7b7192019-01-11 13:42:41 +01001179 sign_jump() jump to a sign
Bram Moolenaar162b7142018-12-21 15:17:36 +01001180 sign_place() place a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001181 sign_placelist() place a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001182 sign_undefine() undefine a sign
1183 sign_unplace() unplace a sign
Bram Moolenaar809ce4d2019-07-13 21:21:40 +02001184 sign_unplacelist() unplace a list of signs
Bram Moolenaar162b7142018-12-21 15:17:36 +01001185
Bram Moolenaarc572da52017-08-27 16:52:01 +02001186Terminal window: *terminal-functions*
1187 term_start() open a terminal window and run a job
1188 term_list() get the list of terminal buffers
1189 term_sendkeys() send keystrokes to a terminal
1190 term_wait() wait for screen to be updated
1191 term_getjob() get the job associated with a terminal
1192 term_scrape() get row of a terminal screen
1193 term_getline() get a line of text from a terminal
1194 term_getattr() get the value of attribute {what}
1195 term_getcursor() get the cursor position of a terminal
1196 term_getscrolled() get the scroll count of a terminal
1197 term_getaltscreen() get the alternate screen flag
1198 term_getsize() get the size of a terminal
1199 term_getstatus() get the status of a terminal
1200 term_gettitle() get the title of a terminal
1201 term_gettty() get the tty name of a terminal
Bram Moolenaar7dda86f2018-04-20 22:36:41 +02001202 term_setansicolors() set 16 ANSI colors, used for GUI
1203 term_getansicolors() get 16 ANSI colors, used for GUI
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001204 term_dumpdiff() display difference between two screen dumps
1205 term_dumpload() load a terminal screen dump in a window
1206 term_dumpwrite() dump contents of a terminal screen to a file
1207 term_setkill() set signal to stop job in a terminal
1208 term_setrestore() set command to restore a terminal
1209 term_setsize() set the size of a terminal
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001210 term_setapi() set terminal JSON API function name prefix
Bram Moolenaarc572da52017-08-27 16:52:01 +02001211
Bram Moolenaar931a2772019-07-04 16:54:54 +02001212Popup window: *popup-window-functions*
1213 popup_create() create popup centered in the screen
1214 popup_atcursor() create popup just above the cursor position,
1215 closes when the cursor moves away
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001216 popup_beval() at the position indicated by v:beval_
1217 variables, closes when the mouse moves away
Bram Moolenaar931a2772019-07-04 16:54:54 +02001218 popup_notification() show a notification for three seconds
1219 popup_dialog() create popup centered with padding and border
1220 popup_menu() prompt for selecting an item from a list
1221 popup_hide() hide a popup temporarily
1222 popup_show() show a previously hidden popup
1223 popup_move() change the position and size of a popup
1224 popup_setoptions() override options of a popup
1225 popup_settext() replace the popup buffer contents
1226 popup_close() close one popup
1227 popup_clear() close all popups
1228 popup_filter_menu() select from a list of items
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001229 popup_filter_yesno() block until 'y' or 'n' is pressed
Bram Moolenaar931a2772019-07-04 16:54:54 +02001230 popup_getoptions() get current options for a popup
1231 popup_getpos() get actual position and size of a popup
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001232 popup_findinfo() get window ID for popup info window
1233 popup_findpreview() get window ID for popup preview window
1234 popup_list() get list of all popup window IDs
1235 popup_locate() get popup window ID from its screen position
Bram Moolenaar931a2772019-07-04 16:54:54 +02001236
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001237Timers: *timer-functions*
1238 timer_start() create a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001239 timer_pause() pause or unpause a timer
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001240 timer_stop() stop a timer
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +02001241 timer_stopall() stop all timers
1242 timer_info() get information about timers
Bram Moolenaar298b4402016-01-28 22:38:53 +01001243
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001244Tags: *tag-functions*
1245 taglist() get list of matching tags
1246 tagfiles() get a list of tags files
1247 gettagstack() get the tag stack of a window
1248 settagstack() modify the tag stack of a window
1249
1250Prompt Buffer: *promptbuffer-functions*
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001251 prompt_getprompt() get the effective prompt text for a buffer
Bram Moolenaarb730f0c2018-11-25 03:56:26 +01001252 prompt_setcallback() set prompt callback for a buffer
1253 prompt_setinterrupt() set interrupt callback for a buffer
1254 prompt_setprompt() set the prompt text for a buffer
1255
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001256Text Properties: *text-property-functions*
1257 prop_add() attach a property at a position
Yegappan Lakshmananccfb7c62021-08-16 21:39:09 +02001258 prop_add_list() attach a property at multiple positions
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001259 prop_clear() remove all properties from a line or lines
1260 prop_find() search for a property
1261 prop_list() return a list of all properties in a line
1262 prop_remove() remove a property from a line
1263 prop_type_add() add/define a property type
1264 prop_type_change() change properties of a type
1265 prop_type_delete() remove a text property type
1266 prop_type_get() return the properties of a type
1267 prop_type_list() return a list of all property types
1268
1269Sound: *sound-functions*
1270 sound_clear() stop playing all sounds
1271 sound_playevent() play an event's sound
1272 sound_playfile() play a sound file
1273 sound_stop() stop playing a sound
1274
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001275Various: *various-functions*
1276 mode() get current editing mode
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001277 state() get current busy state
Bram Moolenaar26402cb2013-02-20 21:26:00 +01001278 visualmode() last visual mode used
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 exists() check if a variable, function, etc. exists
Bram Moolenaar26735992021-08-08 14:43:22 +02001280 exists_compiled() like exists() but check at compile time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 has() check if a feature is supported in Vim
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001282 changenr() return number of most recent change
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 cscope_connection() check if a cscope connection exists
1284 did_filetype() check if a FileType autocommand was used
1285 eventhandler() check if invoked by an event handler
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001286 getpid() get process ID of Vim
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001287 getimstatus() check if IME status is active
1288 interrupt() interrupt script execution
1289 windowsversion() get MS-Windows version
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001290 terminalprops() properties of the terminal
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001291
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 libcall() call a function in an external library
1293 libcallnr() idem, returning a number
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001294
Bram Moolenaar8d043172014-01-23 14:24:41 +01001295 undofile() get the name of the undo file
1296 undotree() return the state of the undo tree
1297
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 getreg() get contents of a register
Bram Moolenaarbb861e22020-06-07 18:16:36 +02001299 getreginfo() get information about a register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 getregtype() get type of a register
1301 setreg() set contents and type of a register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001302 reg_executing() return the name of the register being executed
1303 reg_recording() return the name of the register being recorded
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00001304
Bram Moolenaar8d043172014-01-23 14:24:41 +01001305 shiftwidth() effective value of 'shiftwidth'
1306
Bram Moolenaar063b9d12016-07-09 20:21:48 +02001307 wordcount() get byte/word/char count of buffer
1308
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001309 luaeval() evaluate |Lua| expression
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001310 mzeval() evaluate |MzScheme| expression
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001311 perleval() evaluate Perl expression (|+perl|)
Bram Moolenaar8d043172014-01-23 14:24:41 +01001312 py3eval() evaluate Python expression (|+python3|)
1313 pyeval() evaluate Python expression (|+python|)
Bram Moolenaar690afe12017-01-28 18:34:47 +01001314 pyxeval() evaluate |python_x| expression
Bram Moolenaarebacddb2020-06-04 15:22:21 +02001315 rubyeval() evaluate |Ruby| expression
1316
Bram Moolenaar9d87a372018-12-18 21:41:50 +01001317 debugbreak() interrupt a program being debugged
Bram Moolenaar7e506b62010-01-19 15:55:06 +01001318
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319==============================================================================
1320*41.7* Defining a function
1321
1322Vim enables you to define your own functions. The basic function declaration
1323begins as follows: >
1324
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001325 def {name}({var1}, {var2}, ...): return-type
1326 {body}
1327 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328<
1329 Note:
1330 Function names must begin with a capital letter.
1331
1332Let's define a short function to return the smaller of two numbers. It starts
1333with this line: >
1334
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001335 def Min(num1: number, num2: number): number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001337This tells Vim that the function is named "Min", it takes two arguments that
1338are numbers: "num1" and "num2" and returns a number.
1339
1340The first thing you need to do is to check to see which number is smaller:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 >
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001342 if num1 < num2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344Let's assign the variable "smaller" the value of the smallest number: >
1345
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001346 var smaller: number
1347 if num1 < num2
1348 smaller = num1
1349 else
1350 smaller = num2
1351 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352
1353The variable "smaller" is a local variable. Variables used inside a function
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001354are local unless prefixed by something like "g:", "w:", or "s:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
1356 Note:
1357 To access a global variable from inside a function you must prepend
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001358 "g:" to it. Thus "g:today" inside a function is used for the global
1359 variable "today", and "today" is another variable, local to the
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001360 function or the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001362You now use the `return` statement to return the smallest number to the user.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363Finally, you end the function: >
1364
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001365 return smaller
1366 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367
1368The complete function definition is as follows: >
1369
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001370 def Min(num1: number, num2: number): number
1371 var smaller: number
1372 if num1 < num2
1373 smaller = num1
1374 else
1375 smaller = num2
1376 endif
1377 return smaller
1378 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001380Obviously this is a verbose example. You can make it shorter by using two
1381return commands: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001382
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001383 def Min(num1: number, num2: number): number
1384 if num1 < num2
1385 return num1
1386 endif
1387 return num2
1388 enddef
1389
1390And if you remember the conditional expression, you need only one line: >
1391
1392 def Min(num1: number, num2: number): number
1393 return num1 < num2 ? num1 : num2
1394 enddef
Bram Moolenaar7c626922005-02-07 22:01:03 +00001395
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001396A user defined function is called in exactly the same way as a built-in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397function. Only the name is different. The Min function can be used like
1398this: >
1399
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001400 echo Min(5, 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001402Only now will the function be executed and the lines be parsed by Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403If there are mistakes, like using an undefined variable or function, you will
1404now get an error message. When defining the function these errors are not
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001405detected. To get the errors sooner you can tell Vim to compile all the
1406functions in the script: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001408 defcompile
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001410For a function that does not return anything leave out the return type: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001412 def SayIt(text: string)
1413 echo text
1414 enddef
1415
1416It is also possible to define a legacy function with `function` and
1417`endfunction`. These do not have types and are not compiled. They execute
1418much slower.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419
1420
1421USING A RANGE
1422
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001423A line range can be used with a function call. The function will be called
1424once for every line in the range, with the cursor in that line. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001426 def Number()
1427 echo "line " .. line(".") .. " contains: " .. getline(".")
1428 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429
1430If you call this function with: >
1431
1432 :10,15call Number()
1433
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001434The function will be called six times, starting on line 10 and ending on line
143515.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436
1437
1438VARIABLE NUMBER OF ARGUMENTS
1439
1440Vim enables you to define functions that have a variable number of arguments.
1441The following command, for instance, defines a function that must have 1
1442argument (start) and can have up to 20 additional arguments: >
1443
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001444 def Show(start: string, ...items: list<string>)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001446The variable "items" will be a list containing the extra arguments. You can
1447use it like any list, for example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001449 def Show(start: string, ...items: list<string>)
1450 echohl Title
1451 echo "start is " .. start
1452 echohl None
1453 for index in range(len(items))
1454 echon " Arg " .. index .. " is " .. items[index]
1455 endfor
1456 echo
1457 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001459You can call it like this: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001461 Show('Title', 'one', 'two', 'three')
1462< start is Title Arg 0 is one Arg 1 is two Arg 2 is three ~
1463
1464This uses the `echohl` command to specify the highlighting used for the
1465following `echo` command. `echohl None` stops it again. The `echon` command
1466works like `echo`, but doesn't output a line break.
1467
1468If you call it with one argument the "items" list will be empty.
1469`range(len(items))` returns a list with the indexes, what `for` loops over,
1470we'll explain that further down.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001471
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472
1473LISTING FUNCTIONS
1474
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001475The `function` command lists the names and arguments of all user-defined
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476functions: >
1477
1478 :function
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001479< def <SNR>86_Show(start: string, ...items: list<string>) ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 function GetVimIndent() ~
1481 function SetSyn(name) ~
1482
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001483The "<SNR>" prefix means that a function is script-local. |Vim9| functions
1484wil start with "def" and include argument and return types. Legacy functions
1485are listed with "function".
1486
1487To see what a function does, use its name as an argument for `function`: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488
1489 :function SetSyn
1490< 1 if &syntax == '' ~
1491 2 let &syntax = a:name ~
1492 3 endif ~
1493 endfunction ~
1494
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001495To see the "Show" function you need to include the script prefix, since a
1496"Show" function can be defined multiple times in different scripts. To find
1497the exact name you can use `function`, but the result may be a very long list.
1498To only get the functions matching a pattern you can use the `filter` prefix:
1499>
1500
1501 :filter Show function
1502< def <SNR>86_Show(start: string, ...items: list<string>) ~
1503>
1504 :function <SNR>86_Show
1505< 1 echohl Title ~
1506 2 echo "start is " .. start ~
1507 etc.
1508
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509
1510DEBUGGING
1511
1512The line number is useful for when you get an error message or when debugging.
1513See |debug-scripts| about debugging mode.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001514
1515You can also set the 'verbose' option to 12 or higher to see all function
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516calls. Set it to 15 or higher to see every executed line.
1517
1518
1519DELETING A FUNCTION
1520
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001521To delete the SetSyn() function: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001523 :delfunction SetSyn
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001525Deleting only works for global functions and functions in legacy script, not
1526for functions defined in a |Vim9| script.
1527
1528You get an error when the function doesn't exist or cannot be deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529
Bram Moolenaar7c626922005-02-07 22:01:03 +00001530
1531FUNCTION REFERENCES
1532
1533Sometimes it can be useful to have a variable point to one function or
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001534another. You can do it with function reference variable. Often shortened to
1535"funcref". Example: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001536
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001537 def Right()
1538 return 'Right!'
1539 enddef
1540 def Wrong()
1541 return 'Wrong!'
1542 enddef
1543
1544 var Afunc = g:result == 1 ? Right : Wrong
1545 Afunc()
Bram Moolenaar7c626922005-02-07 22:01:03 +00001546< Wrong! ~
1547
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001548This assumes "g:result" is not one.
1549
Bram Moolenaar7c626922005-02-07 22:01:03 +00001550Note that the name of a variable that holds a function reference must start
1551with a capital. Otherwise it could be confused with the name of a builtin
1552function.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001553
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02001554More information about defining your own functions here: |user-functions|.
1555
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00001557*41.8* Lists and Dictionaries
1558
1559So far we have used the basic types String and Number. Vim also supports two
1560composite types: List and Dictionary.
1561
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001562A List is an ordered sequence of items. The items can be any kind of value,
Bram Moolenaar7c626922005-02-07 22:01:03 +00001563thus you can make a List of numbers, a List of Lists and even a List of mixed
1564items. To create a List with three strings: >
1565
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001566 var alist = ['aap', 'mies', 'noot']
Bram Moolenaar7c626922005-02-07 22:01:03 +00001567
1568The List items are enclosed in square brackets and separated by commas. To
1569create an empty List: >
1570
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001571 var alist = []
Bram Moolenaar7c626922005-02-07 22:01:03 +00001572
1573You can add items to a List with the add() function: >
1574
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001575 var alist = []
1576 add(alist, 'foo')
1577 add(alist, 'bar')
1578 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001579< ['foo', 'bar'] ~
1580
1581List concatenation is done with +: >
1582
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001583 var alist = ['foo', 'bar']
1584 alist = alist + ['and', 'more']
1585 echo alist
1586< ['foo', 'bar', 'and', 'more'] ~
Bram Moolenaar7c626922005-02-07 22:01:03 +00001587
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001588Or, if you want to extend a List with a function: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001589
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001590 var alist = ['one']
1591 extend(alist, ['two', 'three'])
1592 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001593< ['one', 'two', 'three'] ~
1594
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001595Notice that using `add()` will have a different effect: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001596
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001597 var alist = ['one']
1598 add(alist, ['two', 'three'])
1599 echo alist
Bram Moolenaar7c626922005-02-07 22:01:03 +00001600< ['one', ['two', 'three']] ~
1601
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001602The second argument of add() is added as an item, now you have a nested list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001603
1604
1605FOR LOOP
1606
1607One of the nice things you can do with a List is iterate over it: >
1608
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001609 var alist = ['one', 'two', 'three']
1610 for n in alist
1611 echo n
1612 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001613< one ~
1614 two ~
1615 three ~
1616
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001617This will loop over each element in List "alist", assigning each value to
Bram Moolenaar7c626922005-02-07 22:01:03 +00001618variable "n". The generic form of a for loop is: >
1619
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001620 for {varname} in {listexpression}
1621 {commands}
1622 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001623
1624To loop a certain number of times you need a List of a specific length. The
1625range() function creates one for you: >
1626
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001627 for a in range(3)
1628 echo a
1629 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001630< 0 ~
1631 1 ~
1632 2 ~
1633
1634Notice that the first item of the List that range() produces is zero, thus the
1635last item is one less than the length of the list.
Bram Moolenaar7c626922005-02-07 22:01:03 +00001636
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001637You can also specify the maximum value, the stride and even go backwards: >
1638
1639 for a in range(8, 4, -2)
1640 echo a
1641 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001642< 8 ~
1643 6 ~
1644 4 ~
1645
1646A more useful example, looping over lines in the buffer: >
1647
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001648 for line in getline(1, 20)
1649 if line =~ "Date: "
1650 echo line
1651 endif
1652 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001653
1654This looks into lines 1 to 20 (inclusive) and echoes any date found in there.
1655
1656
1657DICTIONARIES
1658
1659A Dictionary stores key-value pairs. You can quickly lookup a value if you
1660know the key. A Dictionary is created with curly braces: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001661
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001662 var uk2nl = {one: 'een', two: 'twee', three: 'drie'}
Bram Moolenaar7c626922005-02-07 22:01:03 +00001663
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001664Now you can lookup words by putting the key in square brackets: >
Bram Moolenaar7c626922005-02-07 22:01:03 +00001665
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001666 echo uk2nl['two']
1667< twee ~
1668
1669If the key does not have special characters, you can use the dot notation: >
1670
1671 echo uk2nl.two
Bram Moolenaar7c626922005-02-07 22:01:03 +00001672< twee ~
1673
1674The generic form for defining a Dictionary is: >
1675
1676 {<key> : <value>, ...}
1677
1678An empty Dictionary is one without any keys: >
1679
1680 {}
1681
1682The possibilities with Dictionaries are numerous. There are various functions
1683for them as well. For example, you can obtain a list of the keys and loop
1684over them: >
1685
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001686 for key in keys(uk2nl)
1687 echo key
1688 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001689< three ~
1690 one ~
1691 two ~
1692
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001693You will notice the keys are not ordered. You can sort the list to get a
Bram Moolenaar7c626922005-02-07 22:01:03 +00001694specific order: >
1695
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001696 for key in sort(keys(uk2nl))
1697 echo key
1698 endfor
Bram Moolenaar7c626922005-02-07 22:01:03 +00001699< one ~
1700 three ~
1701 two ~
1702
1703But you can never get back the order in which items are defined. For that you
1704need to use a List, it stores items in an ordered sequence.
1705
1706
Bram Moolenaar7c626922005-02-07 22:01:03 +00001707For further reading see |Lists| and |Dictionaries|.
1708
1709==============================================================================
1710*41.9* Exceptions
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711
1712Let's start with an example: >
1713
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001714 try
1715 read ~/templates/pascal.tmpl
1716 catch /E484:/
1717 echo "Sorry, the Pascal template file cannot be found."
1718 endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001720The `read` command will fail if the file does not exist. Instead of
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721generating an error message, this code catches the error and gives the user a
Bram Moolenaar00654022011-02-25 14:42:19 +01001722nice message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001724For the commands in between `try` and `endtry` errors are turned into
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725exceptions. An exception is a string. In the case of an error the string
1726contains the error message. And every error message has a number. In this
1727case, the error we catch contains "E484:". This number is guaranteed to stay
1728the same (the text may change, e.g., it may be translated).
1729
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001730Besides being able to give a nice error message, Vim will also continue
1731executing commands. Otherwise, once an uncaught error is encountered,
1732execution will be aborted.
1733
1734When the `read` command causes another error, the pattern "E484:" will not
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735match in it. Thus this exception will not be caught and result in the usual
1736error message.
1737
1738You might be tempted to do this: >
1739
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001740 try
1741 read ~/templates/pascal.tmpl
1742 catch
1743 echo "Sorry, the Pascal template file cannot be found."
1744 endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001746This means all errors are caught. But then you will not see an error that
1747would indicate a completely different problem, such as "E21: Cannot make
1748changes, 'modifiable' is off".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001750Another useful mechanism is the `finally` command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001752 var tmp = tempname()
1753 try
1754 exe ":.,$write " .. tmp
1755 exe "!filter " .. tmp
1756 :.,$delete
1757 exe ":$read " .. tmp
1758 finally
1759 call delete(tmp)
1760 endtry
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761
1762This filters the lines from the cursor until the end of the file through the
1763"filter" command, which takes a file name argument. No matter if the
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001764filtering works, something goes wrong in between `try` and `finally` or the
1765user cancels the filtering by pressing CTRL-C, the `call delete(tmp)` is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766always executed. This makes sure you don't leave the temporary file behind.
1767
1768More information about exception handling can be found in the reference
1769manual: |exception-handling|.
1770
1771==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00001772*41.10* Various remarks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001774Here is a summary of items that are useful to know when writing Vim scripts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001776The end-of-line character depends on the system. For Vim scripts it is
1777recommended to always use the Unix fileformat, this also works on any other
1778system. That way you can copy your Vim scripts from MS-Windows to Unix and
1779they still work. See |:source_crnl|. To be sure it is set right, do this
1780before writing the file: >
1781
1782 :setlocal fileformat=unix
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783
1784
1785WHITE SPACE
1786
1787Blank lines are allowed and ignored.
1788
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001789Leading whitespace characters (blanks and TABs) are always ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001791Trailing whitespace is often ignored, but not always. One command that
1792includes it is `map`.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793
1794To include a whitespace character in the value of an option, it must be
1795escaped by a "\" (backslash) as in the following example: >
1796
1797 :set tags=my\ nice\ file
1798
Bram Moolenaar00654022011-02-25 14:42:19 +01001799The same example written as: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800
1801 :set tags=my nice file
1802
1803will issue an error, because it is interpreted as: >
1804
1805 :set tags=my
1806 :set nice
1807 :set file
1808
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001809|Vim9| script is very picky when it comes to white space. This was done
1810intentionally to make sure scripts are easy to read and to avoid mistakes.
1811
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812
1813COMMENTS
1814
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001815In |Vim9| script the character # starts a comment. Everything after
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816and including this character until the end-of-line is considered a comment and
1817is ignored, except for commands that don't consider comments, as shown in
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001818examples below. A comment can start on any character position on the line,
1819but not when it is part of the command, e.g. in a string.
1820
1821The character " (the double quote mark) starts a comment in legacy script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822
1823There is a little "catch" with comments for some commands. Examples: >
1824
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001825 abbrev dev development # shorthand
1826 map <F3> o#include # insert include
1827 execute cmd # do it
1828 !ls *.c # list C files
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001830The abbreviation 'dev' will be expanded to 'development # shorthand'. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831mapping of <F3> will actually be the whole line after the 'o# ....' including
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001832the '# insert include'. The `execute` command will give an error. The `!`
1833command will send everything after it to the shell, most likely causing an
1834error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001836There can be no comment after `map`, `abbreviate`, `execute` and `!` commands
1837(there are a few more commands with this restriction). For the `map`,
1838`abbreviate` and `execute` commands there is a trick: >
1839
1840 abbrev dev development|# shorthand
1841 map <F3> o#include|# insert include
1842 execute '!ls *.c' |# do it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843
1844With the '|' character the command is separated from the next one. And that
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001845next command is only a comment. The last command, using `execute` is a
1846general solution, it works for all commands that do not accept a comment or a
1847'|' to separate the next command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848
1849Notice that there is no white space before the '|' in the abbreviation and
1850mapping. For these commands, any character until the end-of-line or '|' is
1851included. As a consequence of this behavior, you don't always see that
1852trailing whitespace is included: >
1853
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001854 map <F4> o#include
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001856To spot these problems, you can highlight trailing spaces: >
1857 match Search /\s\+$/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001859For Unix there is one special way to comment a line, that allows making a Vim
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001860script executable, and it also works in legacy script: >
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001861 #!/usr/bin/env vim -S
1862 echo "this is a Vim script"
1863 quit
1864
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865
1866PITFALLS
1867
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001868An even bigger problem arises in the following example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001870 map ,ab o#include
1871 unmap ,ab
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872
1873Here the unmap command will not work, because it tries to unmap ",ab ". This
1874does not exist as a mapped sequence. An error will be issued, which is very
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001875hard to identify, because the ending whitespace character in `unmap ,ab ` is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876not visible.
1877
1878And this is the same as what happens when one uses a comment after an 'unmap'
1879command: >
1880
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001881 unmap ,ab # comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882
1883Here the comment part will be ignored. However, Vim will try to unmap
1884',ab ', which does not exist. Rewrite it as: >
1885
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001886 unmap ,ab| # comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887
1888
1889RESTORING THE VIEW
1890
Bram Moolenaar3a0d8092012-10-21 03:02:54 +02001891Sometimes you want to make a change and go back to where the cursor was.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892Restoring the relative position would also be nice, so that the same line
1893appears at the top of the window.
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001894
1895This example yanks the current line, puts it above the first line in the file
1896and then restores the view: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897
1898 map ,p ma"aYHmbgg"aP`bzt`a
1899
1900What this does: >
1901 ma"aYHmbgg"aP`bzt`a
1902< ma set mark a at cursor position
1903 "aY yank current line into register a
1904 Hmb go to top line in window and set mark b there
1905 gg go to first line in file
1906 "aP put the yanked line above it
1907 `b go back to top line in display
1908 zt position the text in the window as before
1909 `a go back to saved cursor position
1910
1911
1912PACKAGING
1913
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001914Sometimes you will want to use global variables or functions, so that they can
1915be used anywhere. A good example is a global variable that passes a
1916preference to a plugin. To avoid other scripts using the same name, use a
1917prefix that is very unlikely to be used elsewhere. For example, if you have a
1918"mytags" plugin, you could use: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001920 g:mytags_location = '$HOME/project'
1921 g:mytags_style = 'fast'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001923To minimize interference between plugins keep as much as possible local to the
1924script. |Vim9| script helps you with that, by default functions and variables
1925are script-local.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001927If you split your plugin into parts, you can use `import` and `export` to
1928share items between those parts. See `:export` for the details.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929
1930==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00001931*41.11* Writing a plugin *write-plugin*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932
1933You can write a Vim script in such a way that many people can use it. This is
1934called a plugin. Vim users can drop your script in their plugin directory and
1935use its features right away |add-plugin|.
1936
1937There are actually two types of plugins:
1938
1939 global plugins: For all types of files.
1940filetype plugins: Only for files of a specific type.
1941
1942In this section the first type is explained. Most items are also relevant for
1943writing filetype plugins. The specifics for filetype plugins are in the next
1944section |write-filetype-plugin|.
1945
1946
1947NAME
1948
1949First of all you must choose a name for your plugin. The features provided
1950by the plugin should be clear from its name. And it should be unlikely that
1951someone else writes a plugin with the same name but which does something
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001952different.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001954A script that corrects typing mistakes could be called "typecorrect.vim". We
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955will use it here as an example.
1956
1957For the plugin to work for everybody, it should follow a few guidelines. This
1958will be explained step-by-step. The complete example plugin is at the end.
1959
1960
1961BODY
1962
1963Let's start with the body of the plugin, the lines that do the actual work: >
1964
1965 14 iabbrev teh the
1966 15 iabbrev otehr other
1967 16 iabbrev wnat want
1968 17 iabbrev synchronisation
1969 18 \ synchronization
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970
1971The actual list should be much longer, of course.
1972
1973The line numbers have only been added to explain a few things, don't put them
1974in your plugin file!
1975
1976
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001977FIRST LINE
1978>
1979 1 vim9script noclear
1980
1981You need to use `vimscript` as the very first command. Best is to put it in
1982the very first line.
1983
1984The script we are writing will have a `finish` command to bail out when it is
1985loaded a second time. To avoid the items defined in the script are lost the
1986"noclear" argument is used. More info about this at |vim9-reload|.
1987
1988
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989HEADER
1990
1991You will probably add new corrections to the plugin and soon have several
Bram Moolenaard09acef2012-09-21 14:54:30 +02001992versions lying around. And when distributing this file, people will want to
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993know who wrote this wonderful plugin and where they can send remarks.
1994Therefore, put a header at the top of your plugin: >
1995
Bram Moolenaar04fb9162021-12-30 20:24:12 +00001996 2 # Vim global plugin for correcting typing mistakes
1997 3 # Last Change: 2021 Dec 30
1998 4 # Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
2000About copyright and licensing: Since plugins are very useful and it's hardly
2001worth restricting their distribution, please consider making your plugin
2002either public domain or use the Vim |license|. A short note about this near
2003the top of the plugin should be sufficient. Example: >
2004
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002005 5 # License: This file is placed in the public domain.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002008LINE CONTINUATION AND AVOIDING SIDE EFFECTS *use-cpo-save*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009
2010In line 18 above, the line-continuation mechanism is used |line-continuation|.
2011Users with 'compatible' set will run into trouble here, they will get an error
2012message. We can't just reset 'compatible', because that has a lot of side
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002013effects. Instead, we will set the 'cpoptions' option to its Vim default
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014value and restore it later. That will allow the use of line-continuation and
2015make the script work for most people. It is done like this: >
2016
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002017 11 var save_cpo = &cpo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 12 set cpo&vim
2019 ..
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002020 42 &cpo = save_cpo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002022We first store the old value of 'cpoptions' in the "save_cpo" variable. At
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023the end of the plugin this value is restored.
2024
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002025Notice that "save_cpo" is a script-local variable. A global variable could
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026already be in use for something else. Always use script-local variables for
2027things that are only used in the script.
2028
2029
2030NOT LOADING
2031
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002032It is possible that a user doesn't always want to load this plugin. Or the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033system administrator has dropped it in the system-wide plugin directory, but a
2034user has his own plugin he wants to use. Then the user must have a chance to
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002035disable loading this specific plugin. These lines will make it possible: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002037 7 if exists("g:loaded_typecorrect")
2038 8 finish
2039 9 endif
2040 10 g:loaded_typecorrect = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002042This also avoids that when the script is loaded twice it would pointlessly
2043redefine functions and cause trouble for autocommands that are added twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002045The name is recommended to start with "g:loaded_" and then the file name of
2046the plugin, literally. The "g:" is prepended to make the variable global, so
2047that other places can check whether its functionality is available. Without
2048"g:" it would be local to the script.
Bram Moolenaarc5604bc2010-07-17 15:20:30 +02002049
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002050Using `finish` stops Vim from reading the rest of the file, it's much quicker
2051than using if-endif around the whole file, since Vim would still need to parse
2052the commands to find the `endif`.
Bram Moolenaarc5604bc2010-07-17 15:20:30 +02002053
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054
2055MAPPING
2056
2057Now let's make the plugin more interesting: We will add a mapping that adds a
2058correction for the word under the cursor. We could just pick a key sequence
2059for this mapping, but the user might already use it for something else. To
2060allow the user to define which keys a mapping in a plugin uses, the <Leader>
2061item can be used: >
2062
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002063 22 map <unique> <Leader>a <Plug>TypecorrAdd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002065The "<Plug>TypecorrAdd;" thing will do the work, more about that further on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002067The user can set the "g:mapleader" variable to the key sequence that he wants
2068plugin mappings to start with. Thus if the user has done: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002070 g:mapleader = "_"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
2072the mapping will define "_a". If the user didn't do this, the default value
2073will be used, which is a backslash. Then a map for "\a" will be defined.
2074
2075Note that <unique> is used, this will cause an error message if the mapping
2076already happened to exist. |:map-<unique>|
2077
2078But what if the user wants to define his own key sequence? We can allow that
2079with this mechanism: >
2080
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002081 21 if !hasmapto('<Plug>TypecorrAdd;')
2082 22 map <unique> <Leader>a <Plug>TypecorrAdd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 23 endif
2084
Bram Moolenaar207f0092020-08-30 17:20:20 +02002085This checks if a mapping to "<Plug>TypecorrAdd;" already exists, and only
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086defines the mapping from "<Leader>a" if it doesn't. The user then has a
2087chance of putting this in his vimrc file: >
2088
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002089 map ,c <Plug>TypecorrAdd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090
2091Then the mapped key sequence will be ",c" instead of "_a" or "\a".
2092
2093
2094PIECES
2095
2096If a script gets longer, you often want to break up the work in pieces. You
2097can use functions or mappings for this. But you don't want these functions
2098and mappings to interfere with the ones from other scripts. For example, you
2099could define a function Add(), but another script could try to define the same
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002100function. To avoid this, we define the function local to the script.
2101Fortunately, in |Vim9| script this is the default. In a legacy script you
2102would need to prefix the name with "s:".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103
2104We will define a function that adds a new typing correction: >
2105
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002106 30 def Add(from: string, correct: bool)
2107 31 var to = input("type the correction for " .. from .. ": ")
2108 32 exe ":iabbrev " .. from .. " " .. to
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 ..
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002110 36 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002112Now we can call the function Add() from within this script. If another
2113script also defines Add(), it will be local to that script and can only
2114be called from that script. There can also be a global g:Add() function,
2115which is again another function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116
2117<SID> can be used with mappings. It generates a script ID, which identifies
2118the current script. In our typing correction plugin we use it like this: >
2119
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002120 24 noremap <unique> <script> <Plug>TypecorrAdd; <SID>Add
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 ..
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002122 28 noremap <SID>Add :call <SID>Add(expand("<cword>"), true)<CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123
2124Thus when a user types "\a", this sequence is invoked: >
2125
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002126 \a -> <Plug>TypecorrAdd; -> <SID>Add -> :call <SID>Add(...)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002128If another script also maps <SID>Add, it will get another script ID and
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129thus define another mapping.
2130
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002131Note that instead of Add() we use <SID>Add() here. That is because the
2132mapping is typed by the user, thus outside of the script context. The <SID>
2133is translated to the script ID, so that Vim knows in which script to look for
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134the Add() function.
2135
2136This is a bit complicated, but it's required for the plugin to work together
2137with other plugins. The basic rule is that you use <SID>Add() in mappings and
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002138Add() in other places (the script itself, autocommands, user commands).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139
2140We can also add a menu entry to do the same as the mapping: >
2141
2142 26 noremenu <script> Plugin.Add\ Correction <SID>Add
2143
2144The "Plugin" menu is recommended for adding menu items for plugins. In this
2145case only one item is used. When adding more items, creating a submenu is
2146recommended. For example, "Plugin.CVS" could be used for a plugin that offers
2147CVS operations "Plugin.CVS.checkin", "Plugin.CVS.checkout", etc.
2148
2149Note that in line 28 ":noremap" is used to avoid that any other mappings cause
2150trouble. Someone may have remapped ":call", for example. In line 24 we also
2151use ":noremap", but we do want "<SID>Add" to be remapped. This is why
2152"<script>" is used here. This only allows mappings which are local to the
2153script. |:map-<script>| The same is done in line 26 for ":noremenu".
2154|:menu-<script>|
2155
2156
2157<SID> AND <Plug> *using-<Plug>*
2158
2159Both <SID> and <Plug> are used to avoid that mappings of typed keys interfere
2160with mappings that are only to be used from other mappings. Note the
2161difference between using <SID> and <Plug>:
2162
2163<Plug> is visible outside of the script. It is used for mappings which the
2164 user might want to map a key sequence to. <Plug> is a special code
2165 that a typed key will never produce.
2166 To make it very unlikely that other plugins use the same sequence of
2167 characters, use this structure: <Plug> scriptname mapname
2168 In our example the scriptname is "Typecorr" and the mapname is "Add".
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002169 We add a semicolon as the terminator. This results in
2170 "<Plug>TypecorrAdd;". Only the first character of scriptname and
2171 mapname is uppercase, so that we can see where mapname starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172
2173<SID> is the script ID, a unique identifier for a script.
2174 Internally Vim translates <SID> to "<SNR>123_", where "123" can be any
2175 number. Thus a function "<SID>Add()" will have a name "<SNR>11_Add()"
2176 in one script, and "<SNR>22_Add()" in another. You can see this if
2177 you use the ":function" command to get a list of functions. The
2178 translation of <SID> in mappings is exactly the same, that's how you
2179 can call a script-local function from a mapping.
2180
2181
2182USER COMMAND
2183
2184Now let's add a user command to add a correction: >
2185
2186 38 if !exists(":Correct")
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002187 39 command -nargs=1 Correct :call Add(<q-args>, false)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 40 endif
2189
2190The user command is defined only if no command with the same name already
2191exists. Otherwise we would get an error here. Overriding the existing user
2192command with ":command!" is not a good idea, this would probably make the user
2193wonder why the command he defined himself doesn't work. |:command|
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002194If it did happen you can find out who to blame with: >
2195
2196 verbose command Correct
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197
2198
2199SCRIPT VARIABLES
2200
2201When a variable starts with "s:" it is a script variable. It can only be used
2202inside a script. Outside the script it's not visible. This avoids trouble
2203with using the same variable name in different scripts. The variables will be
2204kept as long as Vim is running. And the same variables are used when sourcing
2205the same script again. |s:var|
2206
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002207The nice thing about |Vim9| script is that variables are local to the script
2208by default. You can prepend "s:" if you like, but you do not need to. And
2209functions in the script can also use the script variables without a prefix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002211Script-local variables can also be used in functions, autocommands and user
2212commands that are defined in the script. Thus they are the perfect way to
2213share information between parts of your plugin, without it leaking out. In
2214our example we can add a few lines to count the number of corrections: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002216 19 var count = 4
2217 ..
2218 30 def Add(from: string, correct: bool)
2219 ..
2220 34 count += 1
2221 35 echo "you now have " .. count .. " corrections"
2222 36 enddef
2223
2224"count" is declared and initialized to 4 in the script itself. When later
2225the Add() function is called, it increments "count". It doesn't matter from
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226where the function was called, since it has been defined in the script, it
2227will use the local variables from this script.
2228
2229
2230THE RESULT
2231
2232Here is the resulting complete example: >
2233
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002234 1 vim9script noclear
2235 2 # Vim global plugin for correcting typing mistakes
2236 3 # Last Change: 2021 Dec 30
2237 4 # Maintainer: Bram Moolenaar <Bram@vim.org>
2238 5 # License: This file is placed in the public domain.
2239 6
2240 7 if exists("g:loaded_typecorrect")
2241 8 finish
2242 9 endif
2243 10 g:loaded_typecorrect = 1
2244 11 var save_cpo = &cpo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 12 set cpo&vim
2246 13
2247 14 iabbrev teh the
2248 15 iabbrev otehr other
2249 16 iabbrev wnat want
2250 17 iabbrev synchronisation
2251 18 \ synchronization
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002252 19 var count = 4
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 20
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002254 21 if !hasmapto('<Plug>TypecorrAdd;')
2255 22 map <unique> <Leader>a <Plug>TypecorrAdd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 23 endif
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002257 24 noremap <unique> <script> <Plug>TypecorrAdd; <SID>Add
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 25
2259 26 noremenu <script> Plugin.Add\ Correction <SID>Add
2260 27
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002261 28 noremap <SID>Add :call <SID>Add(expand("<cword>"), true)<CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 29
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002263 30 def Add(from: string, correct: bool)
2264 31 var to = input("type the correction for " .. from .. ": ")
2265 32 exe ":iabbrev " .. from .. " " .. to
2266 33 if correct | exe "normal viws\<C-R>\" \b\e" | endif
2267 34 count += 1
2268 35 echo "you now have " .. count .. " corrections"
2269 36 enddef
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 37
2271 38 if !exists(":Correct")
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002272 39 command -nargs=1 Correct call Add(<q-args>, false)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 40 endif
2274 41
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002275 42 &cpo = save_cpo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276
2277Line 33 wasn't explained yet. It applies the new correction to the word under
2278the cursor. The |:normal| command is used to use the new abbreviation. Note
2279that mappings and abbreviations are expanded here, even though the function
2280was called from a mapping defined with ":noremap".
2281
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282
2283DOCUMENTATION *write-local-help*
2284
2285It's a good idea to also write some documentation for your plugin. Especially
2286when its behavior can be changed by the user. See |add-local-help| for how
2287they are installed.
2288
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002289Here is a simple example for a plugin help file, called "typecorrect.txt": >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002291 1 *typecorrect.txt* Plugin for correcting typing mistakes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 2
2293 3 If you make typing mistakes, this plugin will have them corrected
2294 4 automatically.
2295 5
2296 6 There are currently only a few corrections. Add your own if you like.
2297 7
2298 8 Mappings:
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002299 9 <Leader>a or <Plug>TypecorrAdd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 10 Add a correction for the word under the cursor.
2301 11
2302 12 Commands:
2303 13 :Correct {word}
2304 14 Add a correction for {word}.
2305 15
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002306 16 *typecorrect-settings*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 17 This plugin doesn't have any settings.
2308
2309The first line is actually the only one for which the format matters. It will
2310be extracted from the help file to be put in the "LOCAL ADDITIONS:" section of
2311help.txt |local-additions|. The first "*" must be in the first column of the
2312first line. After adding your help file do ":help" and check that the entries
2313line up nicely.
2314
2315You can add more tags inside ** in your help file. But be careful not to use
2316existing help tags. You would probably use the name of your plugin in most of
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002317them, like "typecorrect-settings" in the example.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318
2319Using references to other parts of the help in || is recommended. This makes
2320it easy for the user to find associated help.
2321
2322
2323FILETYPE DETECTION *plugin-filetype*
2324
2325If your filetype is not already detected by Vim, you should create a filetype
2326detection snippet in a separate file. It is usually in the form of an
2327autocommand that sets the filetype when the file name matches a pattern.
2328Example: >
2329
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002330 au BufNewFile,BufRead *.foo setlocal filetype=foofoo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331
2332Write this single-line file as "ftdetect/foofoo.vim" in the first directory
2333that appears in 'runtimepath'. For Unix that would be
2334"~/.vim/ftdetect/foofoo.vim". The convention is to use the name of the
2335filetype for the script name.
2336
2337You can make more complicated checks if you like, for example to inspect the
2338contents of the file to recognize the language. Also see |new-filetype|.
2339
2340
2341SUMMARY *plugin-special*
2342
2343Summary of special things to use in a plugin:
2344
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002345var name Variable local to the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346
2347<SID> Script-ID, used for mappings and functions local to
2348 the script.
2349
2350hasmapto() Function to test if the user already defined a mapping
2351 for functionality the script offers.
2352
2353<Leader> Value of "mapleader", which the user defines as the
2354 keys that plugin mappings start with.
2355
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002356map <unique> Give a warning if a mapping already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002358noremap <script> Use only mappings local to the script, not global
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 mappings.
2360
2361exists(":Cmd") Check if a user command already exists.
2362
2363==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00002364*41.12* Writing a filetype plugin *write-filetype-plugin* *ftplugin*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365
2366A filetype plugin is like a global plugin, except that it sets options and
2367defines mappings for the current buffer only. See |add-filetype-plugin| for
2368how this type of plugin is used.
2369
Bram Moolenaar7c626922005-02-07 22:01:03 +00002370First read the section on global plugins above |41.11|. All that is said there
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371also applies to filetype plugins. There are a few extras, which are explained
2372here. The essential thing is that a filetype plugin should only have an
2373effect on the current buffer.
2374
2375
2376DISABLING
2377
2378If you are writing a filetype plugin to be used by many people, they need a
2379chance to disable loading it. Put this at the top of the plugin: >
2380
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002381 # Only do this when not done yet for this buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 if exists("b:did_ftplugin")
2383 finish
2384 endif
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002385 b:did_ftplugin = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386
2387This also needs to be used to avoid that the same plugin is executed twice for
2388the same buffer (happens when using an ":edit" command without arguments).
2389
2390Now users can disable loading the default plugin completely by making a
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002391filetype plugin with only these lines: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002393 vim9script
2394 b:did_ftplugin = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395
2396This does require that the filetype plugin directory comes before $VIMRUNTIME
2397in 'runtimepath'!
2398
2399If you do want to use the default plugin, but overrule one of the settings,
2400you can write the different setting in a script: >
2401
2402 setlocal textwidth=70
2403
2404Now write this in the "after" directory, so that it gets sourced after the
2405distributed "vim.vim" ftplugin |after-directory|. For Unix this would be
2406"~/.vim/after/ftplugin/vim.vim". Note that the default plugin will have set
2407"b:did_ftplugin", but it is ignored here.
2408
2409
2410OPTIONS
2411
2412To make sure the filetype plugin only affects the current buffer use the >
2413
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002414 setlocal
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415
2416command to set options. And only set options which are local to a buffer (see
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002417the help for the option to check that). When using `:setlocal` for global
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418options or options local to a window, the value will change for many buffers,
2419and that is not what a filetype plugin should do.
2420
2421When an option has a value that is a list of flags or items, consider using
2422"+=" and "-=" to keep the existing value. Be aware that the user may have
2423changed an option value already. First resetting to the default value and
Bram Moolenaard58e9292011-02-09 17:07:58 +01002424then changing it is often a good idea. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002426 setlocal formatoptions& formatoptions+=ro
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427
2428
2429MAPPINGS
2430
2431To make sure mappings will only work in the current buffer use the >
2432
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002433 map <buffer>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434
2435command. This needs to be combined with the two-step mapping explained above.
2436An example of how to define functionality in a filetype plugin: >
2437
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002438 if !hasmapto('<Plug>JavaImport;')
2439 map <buffer> <unique> <LocalLeader>i <Plug>JavaImport;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 endif
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002441 noremap <buffer> <unique> <Plug>JavaImport; oimport ""<Left><Esc>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442
2443|hasmapto()| is used to check if the user has already defined a map to
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002444<Plug>JavaImport;. If not, then the filetype plugin defines the default
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445mapping. This starts with |<LocalLeader>|, which allows the user to select
2446the key(s) he wants filetype plugin mappings to start with. The default is a
2447backslash.
2448"<unique>" is used to give an error message if the mapping already exists or
2449overlaps with an existing mapping.
2450|:noremap| is used to avoid that any other mappings that the user has defined
2451interferes. You might want to use ":noremap <script>" to allow remapping
2452mappings defined in this script that start with <SID>.
2453
2454The user must have a chance to disable the mappings in a filetype plugin,
2455without disabling everything. Here is an example of how this is done for a
2456plugin for the mail filetype: >
2457
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002458 # Add mappings, unless the user didn't want this.
2459 if !exists("g:no_plugin_maps") && !exists("g:no_mail_maps")
2460 # Quote text by inserting "> "
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002461 if !hasmapto('<Plug>MailQuote;')
2462 vmap <buffer> <LocalLeader>q <Plug>MailQuote;
2463 nmap <buffer> <LocalLeader>q <Plug>MailQuote;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 endif
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02002465 vnoremap <buffer> <Plug>MailQuote; :s/^/> /<CR>
2466 nnoremap <buffer> <Plug>MailQuote; :.,$s/^/> /<CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 endif
2468
2469Two global variables are used:
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002470|g:no_plugin_maps| disables mappings for all filetype plugins
2471|g:no_mail_maps| disables mappings for the "mail" filetype
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472
2473
2474USER COMMANDS
2475
2476To add a user command for a specific file type, so that it can only be used in
2477one buffer, use the "-buffer" argument to |:command|. Example: >
2478
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002479 command -buffer Make make %:r.s
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480
2481
2482VARIABLES
2483
2484A filetype plugin will be sourced for each buffer of the type it's for. Local
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002485script variables will be shared between all invocations. Use local buffer
2486variables |b:var| if you want a variable specifically for one buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487
2488
2489FUNCTIONS
2490
2491When defining a function, this only needs to be done once. But the filetype
2492plugin will be sourced every time a file with this filetype will be opened.
Bram Moolenaar06b5d512010-05-22 15:37:44 +02002493This construct makes sure the function is only defined once: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002495 if !exists("*Func")
2496 def Func(arg)
2497 ...
2498 enddef
2499 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500<
2501
Bram Moolenaar38a55632016-02-15 22:07:32 +01002502UNDO *undo_indent* *undo_ftplugin*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503
2504When the user does ":setfiletype xyz" the effect of the previous filetype
2505should be undone. Set the b:undo_ftplugin variable to the commands that will
2506undo the settings in your filetype plugin. Example: >
2507
Bram Moolenaarf10911e2022-01-29 22:20:48 +00002508 let b:undo_ftplugin = "setlocal fo< com< tw< commentstring<"
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02002509 \ .. "| unlet b:match_ignorecase b:match_words b:match_skip"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510
2511Using ":setlocal" with "<" after the option name resets the option to its
2512global value. That is mostly the best way to reset the option value.
2513
2514This does require removing the "C" flag from 'cpoptions' to allow line
2515continuation, as mentioned above |use-cpo-save|.
2516
Bram Moolenaar38a55632016-02-15 22:07:32 +01002517For undoing the effect of an indent script, the b:undo_indent variable should
2518be set accordingly.
2519
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520
2521FILE NAME
2522
2523The filetype must be included in the file name |ftplugin-name|. Use one of
2524these three forms:
2525
2526 .../ftplugin/stuff.vim
2527 .../ftplugin/stuff_foo.vim
2528 .../ftplugin/stuff/bar.vim
2529
2530"stuff" is the filetype, "foo" and "bar" are arbitrary names.
2531
2532
2533SUMMARY *ftplugin-special*
2534
2535Summary of special things to use in a filetype plugin:
2536
2537<LocalLeader> Value of "maplocalleader", which the user defines as
2538 the keys that filetype plugin mappings start with.
2539
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002540map <buffer> Define a mapping local to the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002542noremap <script> Only remap mappings defined in this script that start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 with <SID>.
2544
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002545setlocal Set an option for the current buffer only.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002547command -buffer Define a user command local to the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548
2549exists("*s:Func") Check if a function was already defined.
2550
2551Also see |plugin-special|, the special things used for all plugins.
2552
2553==============================================================================
Bram Moolenaar7c626922005-02-07 22:01:03 +00002554*41.13* Writing a compiler plugin *write-compiler-plugin*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555
2556A compiler plugin sets options for use with a specific compiler. The user can
2557load it with the |:compiler| command. The main use is to set the
2558'errorformat' and 'makeprg' options.
2559
2560Easiest is to have a look at examples. This command will edit all the default
2561compiler plugins: >
2562
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002563 next $VIMRUNTIME/compiler/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002565Type `:next` to go to the next plugin file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566
2567There are two special items about these files. First is a mechanism to allow
2568a user to overrule or add to the default file. The default files start with: >
2569
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002570 if exists("g:current_compiler")
2571 finish
2572 endif
2573 g:current_compiler = "mine"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574
2575When you write a compiler file and put it in your personal runtime directory
2576(e.g., ~/.vim/compiler for Unix), you set the "current_compiler" variable to
2577make the default file skip the settings.
Bram Moolenaarc6039d82005-12-02 00:44:04 +00002578 *:CompilerSet*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579The second mechanism is to use ":set" for ":compiler!" and ":setlocal" for
2580":compiler". Vim defines the ":CompilerSet" user command for this. However,
2581older Vim versions don't, thus your plugin should define it then. This is an
2582example: >
2583
2584 if exists(":CompilerSet") != 2
2585 command -nargs=* CompilerSet setlocal <args>
2586 endif
2587 CompilerSet errorformat& " use the default 'errorformat'
2588 CompilerSet makeprg=nmake
2589
2590When you write a compiler plugin for the Vim distribution or for a system-wide
2591runtime directory, use the mechanism mentioned above. When
2592"current_compiler" was already set by a user plugin nothing will be done.
2593
2594When you write a compiler plugin to overrule settings from a default plugin,
2595don't check "current_compiler". This plugin is supposed to be loaded
2596last, thus it should be in a directory at the end of 'runtimepath'. For Unix
2597that could be ~/.vim/after/compiler.
2598
2599==============================================================================
Bram Moolenaar05159a02005-02-26 23:04:13 +00002600*41.14* Writing a plugin that loads quickly *write-plugin-quickload*
2601
2602A plugin may grow and become quite long. The startup delay may become
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002603noticeable, while you hardly ever use the plugin. Then it's time for a
Bram Moolenaar05159a02005-02-26 23:04:13 +00002604quickload plugin.
2605
2606The basic idea is that the plugin is loaded twice. The first time user
2607commands and mappings are defined that offer the functionality. The second
2608time the functions that implement the functionality are defined.
2609
2610It may sound surprising that quickload means loading a script twice. What we
2611mean is that it loads quickly the first time, postponing the bulk of the
2612script to the second time, which only happens when you actually use it. When
2613you always use the functionality it actually gets slower!
2614
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002615This uses a FuncUndefined autocommand. Since Vim 7 there is an alternative:
2616use the |autoload| functionality |41.15|. That will also use |Vim9| script
2617instead of legacy script that is used here.
Bram Moolenaar76916e62006-03-21 21:23:25 +00002618
Bram Moolenaar05159a02005-02-26 23:04:13 +00002619The following example shows how it's done: >
2620
2621 " Vim global plugin for demonstrating quick loading
2622 " Last Change: 2005 Feb 25
2623 " Maintainer: Bram Moolenaar <Bram@vim.org>
2624 " License: This file is placed in the public domain.
2625
2626 if !exists("s:did_load")
2627 command -nargs=* BNRead call BufNetRead(<f-args>)
2628 map <F19> :call BufNetWrite('something')<CR>
2629
2630 let s:did_load = 1
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02002631 exe 'au FuncUndefined BufNet* source ' .. expand('<sfile>')
Bram Moolenaar05159a02005-02-26 23:04:13 +00002632 finish
2633 endif
2634
2635 function BufNetRead(...)
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02002636 echo 'BufNetRead(' .. string(a:000) .. ')'
Bram Moolenaar05159a02005-02-26 23:04:13 +00002637 " read functionality here
2638 endfunction
2639
2640 function BufNetWrite(...)
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02002641 echo 'BufNetWrite(' .. string(a:000) .. ')'
Bram Moolenaar05159a02005-02-26 23:04:13 +00002642 " write functionality here
2643 endfunction
2644
2645When the script is first loaded "s:did_load" is not set. The commands between
2646the "if" and "endif" will be executed. This ends in a |:finish| command, thus
2647the rest of the script is not executed.
2648
2649The second time the script is loaded "s:did_load" exists and the commands
2650after the "endif" are executed. This defines the (possible long)
2651BufNetRead() and BufNetWrite() functions.
2652
2653If you drop this script in your plugin directory Vim will execute it on
2654startup. This is the sequence of events that happens:
2655
26561. The "BNRead" command is defined and the <F19> key is mapped when the script
2657 is sourced at startup. A |FuncUndefined| autocommand is defined. The
2658 ":finish" command causes the script to terminate early.
2659
26602. The user types the BNRead command or presses the <F19> key. The
2661 BufNetRead() or BufNetWrite() function will be called.
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002662
Bram Moolenaar05159a02005-02-26 23:04:13 +000026633. Vim can't find the function and triggers the |FuncUndefined| autocommand
2664 event. Since the pattern "BufNet*" matches the invoked function, the
2665 command "source fname" will be executed. "fname" will be equal to the name
2666 of the script, no matter where it is located, because it comes from
2667 expanding "<sfile>" (see |expand()|).
2668
26694. The script is sourced again, the "s:did_load" variable exists and the
2670 functions are defined.
2671
2672Notice that the functions that are loaded afterwards match the pattern in the
2673|FuncUndefined| autocommand. You must make sure that no other plugin defines
2674functions that match this pattern.
2675
2676==============================================================================
2677*41.15* Writing library scripts *write-library-script*
2678
2679Some functionality will be required in several places. When this becomes more
2680than a few lines you will want to put it in one script and use it from many
2681scripts. We will call that one script a library script.
2682
2683Manually loading a library script is possible, so long as you avoid loading it
2684when it's already done. You can do this with the |exists()| function.
2685Example: >
2686
2687 if !exists('*MyLibFunction')
2688 runtime library/mylibscript.vim
2689 endif
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002690 MyLibFunction(arg)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002691
2692Here you need to know that MyLibFunction() is defined in a script
2693"library/mylibscript.vim" in one of the directories in 'runtimepath'.
2694
2695To make this a bit simpler Vim offers the autoload mechanism. Then the
2696example looks like this: >
2697
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002698 mylib#myfunction(arg)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002699
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002700That's a lot simpler, isn't it? Vim will recognize the function name by the
2701embedded "#" character and when it's not defined search for the script
2702"autoload/mylib.vim" in 'runtimepath'. That script must define the
2703"mylib#myfunction()" function.
Bram Moolenaar05159a02005-02-26 23:04:13 +00002704
2705You can put many other functions in the mylib.vim script, you are free to
2706organize your functions in library scripts. But you must use function names
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002707where the part before the '#' matches the script name. Otherwise Vim would
2708not know what script to load.
Bram Moolenaar05159a02005-02-26 23:04:13 +00002709
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002710If you get really enthusiastic and write lots of library scripts, you may
Bram Moolenaar05159a02005-02-26 23:04:13 +00002711want to use subdirectories. Example: >
2712
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002713 netlib#ftp#read('somefile')
Bram Moolenaar05159a02005-02-26 23:04:13 +00002714
2715For Unix the library script used for this could be:
2716
2717 ~/.vim/autoload/netlib/ftp.vim
2718
2719Where the function is defined like this: >
2720
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002721 def netlib#ftp#read(fname: string)
2722 # Read the file fname through ftp
2723 enddef
Bram Moolenaar05159a02005-02-26 23:04:13 +00002724
2725Notice that the name the function is defined with is exactly the same as the
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002726name used for calling the function. And the part before the last '#'
Bram Moolenaar05159a02005-02-26 23:04:13 +00002727exactly matches the subdirectory and script name.
2728
2729You can use the same mechanism for variables: >
2730
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002731 var weekdays = dutch#weekdays
Bram Moolenaar05159a02005-02-26 23:04:13 +00002732
2733This will load the script "autoload/dutch.vim", which should contain something
2734like: >
2735
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002736 var dutch#weekdays = ['zondag', 'maandag', 'dinsdag', 'woensdag',
Bram Moolenaar05159a02005-02-26 23:04:13 +00002737 \ 'donderdag', 'vrijdag', 'zaterdag']
2738
2739Further reading: |autoload|.
2740
2741==============================================================================
Bram Moolenaar76916e62006-03-21 21:23:25 +00002742*41.16* Distributing Vim scripts *distribute-script*
2743
2744Vim users will look for scripts on the Vim website: http://www.vim.org.
2745If you made something that is useful for others, share it!
2746
Bram Moolenaar04fb9162021-12-30 20:24:12 +00002747Another place is github. But there you need to know where to find it! The
2748advantage is that most plugin managers fetch plugins from github. You'll have
2749to use your favorite search engine to find them.
2750
2751Vim scripts can be used on any system. However, there might not be a tar or
2752gzip command. If you want to pack files together and/or compress them the
2753"zip" utility is recommended.
Bram Moolenaar76916e62006-03-21 21:23:25 +00002754
2755For utmost portability use Vim itself to pack scripts together. This can be
2756done with the Vimball utility. See |vimball|.
2757
Bram Moolenaarc01140a2006-03-24 22:21:52 +00002758It's good if you add a line to allow automatic updating. See |glvs-plugins|.
2759
Bram Moolenaar76916e62006-03-21 21:23:25 +00002760==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761
2762Next chapter: |usr_42.txt| Add new menus
2763
Bram Moolenaard473c8c2018-08-11 18:00:22 +02002764Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: