Mercurial > vim
annotate runtime/doc/usr_41.txt @ 23573:e2e2cc5d0856
Update runtime files.
Commit: https://github.com/vim/vim/commit/82be4849eed0b8fbee45bc8da99b685ec89af59a
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jan 11 19:40:15 2021 +0100
Update runtime files.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 11 Jan 2021 19:45:05 +0100 |
parents | 87671ccc6c6b |
children | 510088f8c66f |
rev | line source |
---|---|
23573 | 1 *usr_41.txt* For Vim version 8.2. Last change: 2021 Jan 08 |
7 | 2 |
3 VIM USER MANUAL - by Bram Moolenaar | |
4 | |
5 Write a Vim script | |
6 | |
7 | |
8 The Vim script language is used for the startup vimrc file, syntax files, and | |
9 many other things. This chapter explains the items that can be used in a Vim | |
10 script. 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 | |
161 | 19 |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 | |
170 | 25 |41.14| Writing a plugin that loads quickly |
26 |41.15| Writing library scripts | |
793 | 27 |41.16| Distributing Vim scripts |
7 | 28 |
29 Next chapter: |usr_42.txt| Add new menus | |
30 Previous chapter: |usr_40.txt| Make new commands | |
31 Table of contents: |usr_toc.txt| | |
32 | |
33 ============================================================================== | |
129 | 34 *41.1* Introduction *vim-script-intro* *script* |
7 | 35 |
36 Your first experience with Vim scripts is the vimrc file. Vim reads it when | |
37 it starts up and executes the commands. You can set options to values you | |
38 prefer. 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). | |
40 Syntax files are also Vim scripts. As are files that set options for a | |
41 specific file type. A complicated macro can be defined by a separate Vim | |
42 script file. You can think of other uses yourself. | |
43 | |
20856 | 44 If you are familiar with Python, you can find a comparison between |
45 Python and Vim script here, with pointers to other documents: | |
46 https://gist.github.com/yegappan/16d964a37ead0979b05e655aa036cad0 | |
21676 | 47 And if you are familiar with JavaScript: |
20856 | 48 https://w0rp.com/blog/post/vim-script-for-the-javascripter/ |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
49 |
7 | 50 Let's start with a simple example: > |
51 | |
52 :let i = 1 | |
53 :while i < 5 | |
54 : echo "count is" i | |
161 | 55 : let i += 1 |
7 | 56 :endwhile |
57 < | |
58 Note: | |
59 The ":" characters are not really needed here. You only need to use | |
60 them when you type a command. In a Vim script file they can be left | |
61 out. We will use them here anyway to make clear these are colon | |
62 commands and make them stand out from Normal mode commands. | |
161 | 63 Note: |
64 You can try out the examples by yanking the lines from the text here | |
65 and executing them with :@" | |
66 | |
67 The output of the example code is: | |
68 | |
69 count is 1 ~ | |
70 count is 2 ~ | |
71 count is 3 ~ | |
72 count is 4 ~ | |
73 | |
74 In the first line the ":let" command assigns a value to a variable. The | |
75 generic form is: > | |
7 | 76 |
77 :let {variable} = {expression} | |
78 | |
79 In this case the variable name is "i" and the expression is a simple value, | |
80 the number one. | |
81 The ":while" command starts a loop. The generic form is: > | |
82 | |
83 :while {condition} | |
84 : {statements} | |
85 :endwhile | |
86 | |
87 The statements until the matching ":endwhile" are executed for as long as the | |
88 condition is true. The condition used here is the expression "i < 5". This | |
89 is true when the variable i is smaller than five. | |
90 Note: | |
91 If you happen to write a while loop that keeps on running, you can | |
92 interrupt it by pressing CTRL-C (CTRL-Break on MS-Windows). | |
161 | 93 |
94 The ":echo" command prints its arguments. In this case the string "count is" | |
95 and the value of the variable i. Since i is one, this will print: | |
96 | |
97 count is 1 ~ | |
98 | |
99 Then there is the ":let i += 1" command. This does the same thing as | |
100 ":let i = i + 1". This adds one to the variable i and assigns the new value | |
101 to the same variable. | |
20856 | 102 Note: this is how it works in legacy Vim script, which is what we discuss in |
103 this file. In Vim9 script it's a bit different, see |usr_46.txt|. | |
161 | 104 |
105 The example was given to explain the commands, but would you really want to | |
11062 | 106 make such a loop, it can be written much more compact: > |
112 | 107 |
108 :for i in range(1, 4) | |
109 : echo "count is" i | |
110 :endfor | |
111 | |
161 | 112 We won't explain how |:for| and |range()| work until later. Follow the links |
113 if you are impatient. | |
112 | 114 |
7 | 115 |
16871 | 116 FOUR KINDS OF NUMBERS |
117 | |
118 Numbers can be decimal, hexadecimal, octal or binary. A hexadecimal number | |
119 starts with "0x" or "0X". For example "0x1f" is decimal 31. An octal number | |
120 starts with a zero. "017" is decimal 15. A binary number starts with "0b" or | |
121 "0B". For example "0b101" is decimal 5. Careful: don't put a zero before a | |
122 decimal number, it will be interpreted as an octal number! | |
7 | 123 The ":echo" command always prints decimal numbers. Example: > |
124 | |
23573 | 125 :echo 0x7f 0o36 |
7 | 126 < 127 30 ~ |
127 | |
16871 | 128 A number is made negative with a minus sign. This also works for hexadecimal, |
129 octal and binary numbers. A minus sign is also used for subtraction. Compare | |
130 this with the previous example: > | |
7 | 131 |
23573 | 132 :echo 0x7f -0o36 |
7 | 133 < 97 ~ |
134 | |
135 White space in an expression is ignored. However, it's recommended to use it | |
136 for separating items, to make the expression easier to read. For example, to | |
161 | 137 avoid the confusion with a negative number above, put a space between the |
138 minus sign and the following number: > | |
7 | 139 |
23573 | 140 :echo 0x7f - 0o36 |
7 | 141 |
142 ============================================================================== | |
143 *41.2* Variables | |
144 | |
145 A variable name consists of ASCII letters, digits and the underscore. It | |
146 cannot start with a digit. Valid variable names are: | |
147 | |
148 counter | |
149 _aap3 | |
150 very_long_variable_name_with_underscores | |
151 FuncLength | |
152 LENGTH | |
153 | |
154 Invalid names are "foo+bar" and "6var". | |
155 These variables are global. To see a list of currently defined variables | |
156 use this command: > | |
157 | |
158 :let | |
159 | |
160 You can use global variables everywhere. This also means that when the | |
161 variable "count" is used in one script file, it might also be used in another | |
162 file. This leads to confusion at least, and real problems at worst. To avoid | |
163 this, you can use a variable local to a script file by prepending "s:". For | |
164 example, one script contains this code: > | |
165 | |
166 :let s:count = 1 | |
167 :while s:count < 5 | |
168 : source other.vim | |
161 | 169 : let s:count += 1 |
7 | 170 :endwhile |
171 | |
172 Since "s:count" is local to this script, you can be sure that sourcing the | |
173 "other.vim" script will not change this variable. If "other.vim" also uses an | |
174 "s:count" variable, it will be a different copy, local to that script. More | |
175 about script-local variables here: |script-variable|. | |
176 | |
177 There are more kinds of variables, see |internal-variables|. The most often | |
178 used ones are: | |
179 | |
180 b:name variable local to a buffer | |
181 w:name variable local to a window | |
182 g:name global variable (also in a function) | |
183 v:name variable predefined by Vim | |
184 | |
185 | |
186 DELETING VARIABLES | |
187 | |
188 Variables take up memory and show up in the output of the ":let" command. To | |
189 delete a variable use the ":unlet" command. Example: > | |
190 | |
191 :unlet s:count | |
192 | |
193 This deletes the script-local variable "s:count" to free up the memory it | |
194 uses. If you are not sure if the variable exists, and don't want an error | |
195 message when it doesn't, append !: > | |
196 | |
197 :unlet! s:count | |
198 | |
199 When a script finishes, the local variables used there will not be | |
200 automatically freed. The next time the script executes, it can still use the | |
201 old value. Example: > | |
202 | |
203 :if !exists("s:call_count") | |
204 : let s:call_count = 0 | |
205 :endif | |
206 :let s:call_count = s:call_count + 1 | |
207 :echo "called" s:call_count "times" | |
208 | |
209 The "exists()" function checks if a variable has already been defined. Its | |
210 argument is the name of the variable you want to check. Not the variable | |
211 itself! If you would do this: > | |
212 | |
213 :if !exists(s:call_count) | |
214 | |
215 Then the value of s:call_count will be used as the name of the variable that | |
216 exists() checks. That's not what you want. | |
217 The exclamation mark ! negates a value. When the value was true, it | |
218 becomes false. When it was false, it becomes true. You can read it as "not". | |
219 Thus "if !exists()" can be read as "if not exists()". | |
161 | 220 What Vim calls true is anything that is not zero. Zero is false. |
856 | 221 Note: |
161 | 222 Vim automatically converts a string to a number when it is looking for |
223 a number. When using a string that doesn't start with a digit the | |
224 resulting number is zero. Thus look out for this: > | |
225 :if "true" | |
226 < The "true" will be interpreted as a zero, thus as false! | |
7 | 227 |
228 | |
229 STRING VARIABLES AND CONSTANTS | |
230 | |
231 So far only numbers were used for the variable value. Strings can be used as | |
161 | 232 well. Numbers and strings are the basic types of variables that Vim supports. |
233 The type is dynamic, it is set each time when assigning a value to the | |
234 variable with ":let". More about types in |41.8|. | |
7 | 235 To assign a string value to a variable, you need to use a string constant. |
236 There are two types of these. First the string in double quotes: > | |
237 | |
238 :let name = "peter" | |
239 :echo name | |
240 < peter ~ | |
241 | |
242 If you want to include a double quote inside the string, put a backslash in | |
243 front of it: > | |
244 | |
245 :let name = "\"peter\"" | |
246 :echo name | |
247 < "peter" ~ | |
248 | |
249 To avoid the need for a backslash, you can use a string in single quotes: > | |
250 | |
251 :let name = '"peter"' | |
252 :echo name | |
253 < "peter" ~ | |
254 | |
161 | 255 Inside a single-quote string all the characters are as they are. Only the |
256 single quote itself is special: you need to use two to get one. A backslash | |
257 is taken literally, thus you can't use it to change the meaning of the | |
7 | 258 character after it. |
259 In double-quote strings it is possible to use special characters. Here are | |
260 a few useful ones: | |
261 | |
262 \t <Tab> | |
263 \n <NL>, line break | |
264 \r <CR>, <Enter> | |
265 \e <Esc> | |
266 \b <BS>, backspace | |
267 \" " | |
268 \\ \, backslash | |
269 \<Esc> <Esc> | |
270 \<C-W> CTRL-W | |
271 | |
272 The last two are just examples. The "\<name>" form can be used to include | |
273 the special key "name". | |
274 See |expr-quote| for the full list of special items in a string. | |
275 | |
276 ============================================================================== | |
277 *41.3* Expressions | |
278 | |
279 Vim has a rich, yet simple way to handle expressions. You can read the | |
280 definition here: |expression-syntax|. Here we will show the most common | |
281 items. | |
282 The numbers, strings and variables mentioned above are expressions by | |
283 themselves. Thus everywhere an expression is expected, you can use a number, | |
284 string or variable. Other basic items in an expression are: | |
285 | |
286 $NAME environment variable | |
287 &name option | |
288 @r register | |
289 | |
290 Examples: > | |
291 | |
292 :echo "The value of 'tabstop' is" &ts | |
293 :echo "Your home directory is" $HOME | |
294 :if @a > 5 | |
295 | |
296 The &name form can be used to save an option value, set it to a new value, | |
297 do something and restore the old value. Example: > | |
298 | |
299 :let save_ic = &ic | |
300 :set noic | |
301 :/The Start/,$delete | |
302 :let &ic = save_ic | |
303 | |
304 This makes sure the "The Start" pattern is used with the 'ignorecase' option | |
161 | 305 off. Still, it keeps the value that the user had set. (Another way to do |
306 this would be to add "\C" to the pattern, see |/\C|.) | |
7 | 307 |
308 | |
309 MATHEMATICS | |
310 | |
311 It becomes more interesting if we combine these basic items. Let's start with | |
312 mathematics on numbers: | |
313 | |
314 a + b add | |
315 a - b subtract | |
316 a * b multiply | |
317 a / b divide | |
318 a % b modulo | |
319 | |
320 The usual precedence is used. Example: > | |
321 | |
322 :echo 10 + 5 * 2 | |
323 < 20 ~ | |
324 | |
2709 | 325 Grouping is done with parentheses. No surprises here. Example: > |
7 | 326 |
327 :echo (10 + 5) * 2 | |
328 < 30 ~ | |
329 | |
22171 | 330 Strings can be concatenated with ".." (see |expr6|). Example: > |
331 | |
332 :echo "foo" .. "bar" | |
7 | 333 < foobar ~ |
334 | |
335 When the ":echo" command gets multiple arguments, it separates them with a | |
336 space. In the example the argument is a single expression, thus no space is | |
337 inserted. | |
338 | |
339 Borrowed from the C language is the conditional expression: | |
340 | |
341 a ? b : c | |
342 | |
343 If "a" evaluates to true "b" is used, otherwise "c" is used. Example: > | |
344 | |
345 :let i = 4 | |
346 :echo i > 5 ? "i is big" : "i is small" | |
347 < i is small ~ | |
348 | |
349 The three parts of the constructs are always evaluated first, thus you could | |
350 see it work as: | |
351 | |
352 (a) ? (b) : (c) | |
353 | |
354 ============================================================================== | |
355 *41.4* Conditionals | |
356 | |
357 The ":if" commands executes the following statements, until the matching | |
358 ":endif", only when a condition is met. The generic form is: | |
359 | |
360 :if {condition} | |
361 {statements} | |
362 :endif | |
363 | |
364 Only when the expression {condition} evaluates to true (non-zero) will the | |
365 {statements} be executed. These must still be valid commands. If they | |
366 contain garbage, Vim won't be able to find the ":endif". | |
367 You can also use ":else". The generic form for this is: | |
368 | |
369 :if {condition} | |
370 {statements} | |
371 :else | |
372 {statements} | |
373 :endif | |
374 | |
375 The second {statements} is only executed if the first one isn't. | |
376 Finally, there is ":elseif": | |
377 | |
378 :if {condition} | |
379 {statements} | |
380 :elseif {condition} | |
381 {statements} | |
382 :endif | |
383 | |
384 This works just like using ":else" and then "if", but without the need for an | |
385 extra ":endif". | |
386 A useful example for your vimrc file is checking the 'term' option and | |
387 doing something depending upon its value: > | |
388 | |
389 :if &term == "xterm" | |
390 : " Do stuff for xterm | |
391 :elseif &term == "vt100" | |
392 : " Do stuff for a vt100 terminal | |
393 :else | |
394 : " Do something for other terminals | |
395 :endif | |
396 | |
397 | |
398 LOGIC OPERATIONS | |
399 | |
400 We already used some of them in the examples. These are the most often used | |
401 ones: | |
402 | |
403 a == b equal to | |
404 a != b not equal to | |
405 a > b greater than | |
406 a >= b greater than or equal to | |
407 a < b less than | |
408 a <= b less than or equal to | |
409 | |
410 The result is one if the condition is met and zero otherwise. An example: > | |
411 | |
161 | 412 :if v:version >= 700 |
7 | 413 : echo "congratulations" |
414 :else | |
415 : echo "you are using an old version, upgrade!" | |
416 :endif | |
417 | |
418 Here "v:version" is a variable defined by Vim, which has the value of the Vim | |
419 version. 600 is for version 6.0. Version 6.1 has the value 601. This is | |
420 very useful to write a script that works with multiple versions of Vim. | |
421 |v:version| | |
422 | |
423 The logic operators work both for numbers and strings. When comparing two | |
424 strings, the mathematical difference is used. This compares byte values, | |
425 which may not be right for some languages. | |
426 When comparing a string with a number, the string is first converted to a | |
427 number. This is a bit tricky, because when a string doesn't look like a | |
428 number, the number zero is used. Example: > | |
429 | |
430 :if 0 == "one" | |
431 : echo "yes" | |
432 :endif | |
433 | |
434 This will echo "yes", because "one" doesn't look like a number, thus it is | |
435 converted to the number zero. | |
436 | |
437 For strings there are two more items: | |
438 | |
439 a =~ b matches with | |
440 a !~ b does not match with | |
441 | |
442 The left item "a" is used as a string. The right item "b" is used as a | |
443 pattern, like what's used for searching. Example: > | |
444 | |
445 :if str =~ " " | |
446 : echo "str contains a space" | |
447 :endif | |
448 :if str !~ '\.$' | |
449 : echo "str does not end in a full stop" | |
450 :endif | |
451 | |
452 Notice the use of a single-quote string for the pattern. This is useful, | |
161 | 453 because backslashes would need to be doubled in a double-quote string and |
454 patterns tend to contain many backslashes. | |
7 | 455 |
456 The 'ignorecase' option is used when comparing strings. When you don't want | |
457 that, append "#" to match case and "?" to ignore case. Thus "==?" compares | |
458 two strings to be equal while ignoring case. And "!~#" checks if a pattern | |
459 doesn't match, also checking the case of letters. For the full table see | |
460 |expr-==|. | |
461 | |
462 | |
463 MORE LOOPING | |
464 | |
465 The ":while" command was already mentioned. Two more statements can be used | |
466 in between the ":while" and the ":endwhile": | |
467 | |
468 :continue Jump back to the start of the while loop; the | |
469 loop continues. | |
470 :break Jump forward to the ":endwhile"; the loop is | |
471 discontinued. | |
472 | |
473 Example: > | |
474 | |
475 :while counter < 40 | |
476 : call do_something() | |
477 : if skip_flag | |
478 : continue | |
479 : endif | |
480 : if finished_flag | |
481 : break | |
482 : endif | |
483 : sleep 50m | |
484 :endwhile | |
485 | |
486 The ":sleep" command makes Vim take a nap. The "50m" specifies fifty | |
487 milliseconds. Another example is ":sleep 4", which sleeps for four seconds. | |
488 | |
161 | 489 Even more looping can be done with the ":for" command, see below in |41.8|. |
490 | |
7 | 491 ============================================================================== |
492 *41.5* Executing an expression | |
493 | |
494 So far the commands in the script were executed by Vim directly. The | |
495 ":execute" command allows executing the result of an expression. This is a | |
496 very powerful way to build commands and execute them. | |
497 An example is to jump to a tag, which is contained in a variable: > | |
498 | |
22171 | 499 :execute "tag " .. tag_name |
500 | |
501 The ".." is used to concatenate the string "tag " with the value of variable | |
7 | 502 "tag_name". Suppose "tag_name" has the value "get_cmd", then the command that |
503 will be executed is: > | |
504 | |
505 :tag get_cmd | |
506 | |
507 The ":execute" command can only execute colon commands. The ":normal" command | |
508 executes Normal mode commands. However, its argument is not an expression but | |
509 the literal command characters. Example: > | |
510 | |
511 :normal gg=G | |
512 | |
513 This jumps to the first line and formats all lines with the "=" operator. | |
514 To make ":normal" work with an expression, combine ":execute" with it. | |
515 Example: > | |
516 | |
22171 | 517 :execute "normal " .. normal_commands |
7 | 518 |
519 The variable "normal_commands" must contain the Normal mode commands. | |
520 Make sure that the argument for ":normal" is a complete command. Otherwise | |
521 Vim will run into the end of the argument and abort the command. For example, | |
522 if you start Insert mode, you must leave Insert mode as well. This works: > | |
523 | |
524 :execute "normal Inew text \<Esc>" | |
525 | |
526 This inserts "new text " in the current line. Notice the use of the special | |
527 key "\<Esc>". This avoids having to enter a real <Esc> character in your | |
528 script. | |
529 | |
161 | 530 If you don't want to execute a string but evaluate it to get its expression |
531 value, you can use the eval() function: > | |
532 | |
533 :let optname = "path" | |
22171 | 534 :let optval = eval('&' .. optname) |
161 | 535 |
536 A "&" character is prepended to "path", thus the argument to eval() is | |
537 "&path". The result will then be the value of the 'path' option. | |
538 The same thing can be done with: > | |
22171 | 539 :exe 'let optval = &' .. optname |
161 | 540 |
7 | 541 ============================================================================== |
542 *41.6* Using functions | |
543 | |
544 Vim defines many functions and provides a large amount of functionality that | |
545 way. A few examples will be given in this section. You can find the whole | |
546 list here: |functions|. | |
547 | |
548 A function is called with the ":call" command. The parameters are passed in | |
2709 | 549 between parentheses separated by commas. Example: > |
7 | 550 |
551 :call search("Date: ", "W") | |
552 | |
553 This calls the search() function, with arguments "Date: " and "W". The | |
554 search() function uses its first argument as a search pattern and the second | |
555 one as flags. The "W" flag means the search doesn't wrap around the end of | |
556 the file. | |
557 | |
558 A function can be called in an expression. Example: > | |
559 | |
560 :let line = getline(".") | |
561 :let repl = substitute(line, '\a', "*", "g") | |
562 :call setline(".", repl) | |
563 | |
161 | 564 The getline() function obtains a line from the current buffer. Its argument |
565 is a specification of the line number. In this case "." is used, which means | |
566 the line where the cursor is. | |
7 | 567 The substitute() function does something similar to the ":substitute" |
568 command. The first argument is the string on which to perform the | |
569 substitution. The second argument is the pattern, the third the replacement | |
570 string. Finally, the last arguments are the flags. | |
571 The setline() function sets the line, specified by the first argument, to a | |
572 new string, the second argument. In this example the line under the cursor is | |
573 replaced with the result of the substitute(). Thus the effect of the three | |
574 statements is equal to: > | |
575 | |
576 :substitute/\a/*/g | |
577 | |
578 Using the functions becomes more interesting when you do more work before and | |
579 after the substitute() call. | |
580 | |
581 | |
582 FUNCTIONS *function-list* | |
583 | |
584 There are many functions. We will mention them here, grouped by what they are | |
585 used for. You can find an alphabetical list here: |functions|. Use CTRL-] on | |
586 the function name to jump to detailed help on it. | |
587 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
588 String manipulation: *string-functions* |
16235
219c58b3879c
patch 8.1.1122: char2nr() does not handle composing characters
Bram Moolenaar <Bram@vim.org>
parents:
16208
diff
changeset
|
589 nr2char() get a character by its number value |
219c58b3879c
patch 8.1.1122: char2nr() does not handle composing characters
Bram Moolenaar <Bram@vim.org>
parents:
16208
diff
changeset
|
590 list2str() get a character string from a list of numbers |
219c58b3879c
patch 8.1.1122: char2nr() does not handle composing characters
Bram Moolenaar <Bram@vim.org>
parents:
16208
diff
changeset
|
591 char2nr() get number value of a character |
219c58b3879c
patch 8.1.1122: char2nr() does not handle composing characters
Bram Moolenaar <Bram@vim.org>
parents:
16208
diff
changeset
|
592 str2list() get list of numbers from a string |
1620 | 593 str2nr() convert a string to a Number |
594 str2float() convert a string to a Float | |
824 | 595 printf() format a string according to % items |
7 | 596 escape() escape characters in a string with a '\' |
1620 | 597 shellescape() escape a string for use with a shell command |
598 fnameescape() escape a file name for use with a Vim command | |
824 | 599 tr() translate characters from one set to another |
7 | 600 strtrans() translate a string to make it printable |
601 tolower() turn a string to lowercase | |
602 toupper() turn a string to uppercase | |
21973
85add08e6a2d
patch 8.2.1536: cannot get the class of a character; emoji widths are wrong
Bram Moolenaar <Bram@vim.org>
parents:
21971
diff
changeset
|
603 charclass() class of a character |
7 | 604 match() position where a pattern matches in a string |
605 matchend() position where a pattern match ends in a string | |
22232
f22acf6472da
patch 8.2.1665: cannot do fuzzy string matching
Bram Moolenaar <Bram@vim.org>
parents:
22171
diff
changeset
|
606 matchfuzzy() fuzzy matches a string in a list of strings |
22355
0491b9cafd44
patch 8.2.1726: fuzzy matching only works on strings
Bram Moolenaar <Bram@vim.org>
parents:
22232
diff
changeset
|
607 matchfuzzypos() fuzzy matches a string in a list of strings |
7 | 608 matchstr() match of a pattern in a string |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
9464
diff
changeset
|
609 matchstrpos() match and positions of a pattern in a string |
824 | 610 matchlist() like matchstr() and also return submatches |
7 | 611 stridx() first index of a short string in a long string |
612 strridx() last index of a short string in a long string | |
5618 | 613 strlen() length of a string in bytes |
614 strchars() length of a string in characters | |
615 strwidth() size of string when displayed | |
616 strdisplaywidth() size of string when displayed, deals with tabs | |
21971
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21825
diff
changeset
|
617 setcellwidths() set character cell width overrides |
7 | 618 substitute() substitute a pattern match with a string |
2908 | 619 submatch() get a specific match in ":s" and substitute() |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
620 strpart() get part of a string using byte index |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
621 strcharpart() get part of a string using char index |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
622 strgetchar() get character from a string using char index |
7 | 623 expand() expand special keywords |
17020
1841c03a9b5e
patch 8.1.1510: a plugin cannot easily expand a command like done internally
Bram Moolenaar <Bram@vim.org>
parents:
16871
diff
changeset
|
624 expandcmd() expand a command like done for `:edit` |
7 | 625 iconv() convert text from one encoding to another |
824 | 626 byteidx() byte index of a character in a string |
5618 | 627 byteidxcomp() like byteidx() but count composing characters |
23380
2351b40af967
patch 8.2.2233: cannot convert a byte index into a character index
Bram Moolenaar <Bram@vim.org>
parents:
23305
diff
changeset
|
628 charidx() character index of a byte in a string |
824 | 629 repeat() repeat a string multiple times |
630 eval() evaluate a string expression | |
9464
be72f4201a1d
commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents:
9319
diff
changeset
|
631 execute() execute an Ex command and get the output |
16871 | 632 win_execute() like execute() but in a specified window |
15068 | 633 trim() trim characters from a string |
21989
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
21973
diff
changeset
|
634 gettext() lookup message translation |
7 | 635 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
636 List manipulation: *list-functions* |
112 | 637 get() get an item without error for wrong index |
638 len() number of items in a List | |
639 empty() check if List is empty | |
640 insert() insert an item somewhere in a List | |
641 add() append an item to a List | |
642 extend() append a List to a List | |
643 remove() remove one or more items from a List | |
644 copy() make a shallow copy of a List | |
645 deepcopy() make a full copy of a List | |
646 filter() remove selected items from a List | |
647 map() change each List item | |
22844
36fc73078bce
patch 8.2.1969: Vim9: map() may change the list or dict item type
Bram Moolenaar <Bram@vim.org>
parents:
22355
diff
changeset
|
648 mapnew() make a new List with changed items |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
649 reduce() reduce a List to a value |
112 | 650 sort() sort a List |
651 reverse() reverse the order of a List | |
5763 | 652 uniq() remove copies of repeated adjacent items |
112 | 653 split() split a String into a List |
654 join() join List items into a String | |
824 | 655 range() return a List with a sequence of numbers |
112 | 656 string() String representation of a List |
657 call() call a function with List as arguments | |
323 | 658 index() index of a value in a List |
112 | 659 max() maximum value in a List |
660 min() minimum value in a List | |
661 count() count number of times a value appears in a List | |
824 | 662 repeat() repeat a List multiple times |
20766
821925509d8c
patch 8.2.0935: flattening a list with existing code is slow
Bram Moolenaar <Bram@vim.org>
parents:
20743
diff
changeset
|
663 flatten() flatten a List |
112 | 664 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
665 Dictionary manipulation: *dict-functions* |
323 | 666 get() get an entry without an error for a wrong key |
112 | 667 len() number of entries in a Dictionary |
668 has_key() check whether a key appears in a Dictionary | |
669 empty() check if Dictionary is empty | |
670 remove() remove an entry from a Dictionary | |
671 extend() add entries from one Dictionary to another | |
672 filter() remove selected entries from a Dictionary | |
673 map() change each Dictionary entry | |
22844
36fc73078bce
patch 8.2.1969: Vim9: map() may change the list or dict item type
Bram Moolenaar <Bram@vim.org>
parents:
22355
diff
changeset
|
674 mapnew() make a new Dictionary with changed items |
112 | 675 keys() get List of Dictionary keys |
676 values() get List of Dictionary values | |
677 items() get List of Dictionary key-value pairs | |
678 copy() make a shallow copy of a Dictionary | |
679 deepcopy() make a full copy of a Dictionary | |
680 string() String representation of a Dictionary | |
681 max() maximum value in a Dictionary | |
682 min() minimum value in a Dictionary | |
683 count() count number of times a value appears | |
684 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
685 Floating point computation: *float-functions* |
1620 | 686 float2nr() convert Float to Number |
687 abs() absolute value (also works for Number) | |
688 round() round off | |
689 ceil() round up | |
690 floor() round down | |
691 trunc() remove value after decimal point | |
5618 | 692 fmod() remainder of division |
693 exp() exponential | |
694 log() natural logarithm (logarithm to base e) | |
1620 | 695 log10() logarithm to base 10 |
696 pow() value of x to the exponent y | |
697 sqrt() square root | |
698 sin() sine | |
699 cos() cosine | |
2725 | 700 tan() tangent |
701 asin() arc sine | |
702 acos() arc cosine | |
1620 | 703 atan() arc tangent |
2725 | 704 atan2() arc tangent |
705 sinh() hyperbolic sine | |
706 cosh() hyperbolic cosine | |
707 tanh() hyperbolic tangent | |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
708 isinf() check for infinity |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
709 isnan() check for not a number |
1620 | 710 |
3237 | 711 Other computation: *bitwise-function* |
712 and() bitwise AND | |
713 invert() bitwise invert | |
714 or() bitwise OR | |
715 xor() bitwise XOR | |
5618 | 716 sha256() SHA-256 hash |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
717 rand() get a pseudo-random number |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
718 srand() initialize seed used by rand() |
3237 | 719 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
720 Variables: *var-functions* |
824 | 721 type() type of a variable |
722 islocked() check if a variable is locked | |
11062 | 723 funcref() get a Funcref for a function reference |
824 | 724 function() get a Funcref for a function name |
725 getbufvar() get a variable value from a specific buffer | |
726 setbufvar() set a variable in a specific buffer | |
831 | 727 getwinvar() get a variable from specific window |
2207
b17bbfa96fa0
Add the settabvar() and gettabvar() functions.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
728 gettabvar() get a variable from specific tab page |
831 | 729 gettabwinvar() get a variable from specific window & tab page |
824 | 730 setwinvar() set a variable in a specific window |
2207
b17bbfa96fa0
Add the settabvar() and gettabvar() functions.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
731 settabvar() set a variable in a specific tab page |
831 | 732 settabwinvar() set a variable in a specific window & tab page |
824 | 733 garbagecollect() possibly free memory |
734 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
735 Cursor and mark position: *cursor-functions* *mark-functions* |
7 | 736 col() column number of the cursor or a mark |
737 virtcol() screen column of the cursor or a mark | |
738 line() line number of the cursor or mark | |
739 wincol() window column number of the cursor | |
740 winline() window line number of the cursor | |
741 cursor() position the cursor at a line/column | |
5618 | 742 screencol() get screen column of the cursor |
743 screenrow() get screen row of the cursor | |
17292
8a095d343c59
patch 8.1.1645: cannot use a popup window for a balloon
Bram Moolenaar <Bram@vim.org>
parents:
17257
diff
changeset
|
744 screenpos() screen row and col of a text character |
5968 | 745 getcurpos() get position of the cursor |
824 | 746 getpos() get position of cursor, mark, etc. |
747 setpos() set position of cursor, mark, etc. | |
20615
8eed1e9389bb
patch 8.2.0861: cannot easily get all the current marks
Bram Moolenaar <Bram@vim.org>
parents:
19721
diff
changeset
|
748 getmarklist() list of global/local marks |
824 | 749 byte2line() get line number at a specific byte count |
750 line2byte() byte count at a specific line | |
751 diff_filler() get the number of filler lines above a line | |
5618 | 752 screenattr() get attribute at a screen line/row |
753 screenchar() get character code at a screen line/row | |
16133
eb087f8a26a8
patch 8.1.1071: cannot get composing characters from the screen
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
754 screenchars() get character codes at a screen line/row |
eb087f8a26a8
patch 8.1.1071: cannot get composing characters from the screen
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
755 screenstring() get string of characters at a screen line/row |
23563
87671ccc6c6b
patch 8.2.2324: not easy to get mark en cursor posotion by character count
Bram Moolenaar <Bram@vim.org>
parents:
23380
diff
changeset
|
756 charcol() character number of the cursor or a mark |
87671ccc6c6b
patch 8.2.2324: not easy to get mark en cursor posotion by character count
Bram Moolenaar <Bram@vim.org>
parents:
23380
diff
changeset
|
757 getcharpos() get character position of cursor, mark, etc. |
87671ccc6c6b
patch 8.2.2324: not easy to get mark en cursor posotion by character count
Bram Moolenaar <Bram@vim.org>
parents:
23380
diff
changeset
|
758 setcharpos() set character position of cursor, mark, etc. |
87671ccc6c6b
patch 8.2.2324: not easy to get mark en cursor posotion by character count
Bram Moolenaar <Bram@vim.org>
parents:
23380
diff
changeset
|
759 getcursorcharpos() get character position of the cursor |
87671ccc6c6b
patch 8.2.2324: not easy to get mark en cursor posotion by character count
Bram Moolenaar <Bram@vim.org>
parents:
23380
diff
changeset
|
760 setcursorcharpos() set character position of the cursor |
824 | 761 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
762 Working with text in the current buffer: *text-functions* |
161 | 763 getline() get a line or list of lines from the buffer |
7 | 764 setline() replace a line in the buffer |
161 | 765 append() append line or list of lines in the buffer |
7 | 766 indent() indent of a specific line |
767 cindent() indent according to C indenting | |
768 lispindent() indent according to Lisp indenting | |
769 nextnonblank() find next non-blank line | |
770 prevnonblank() find previous non-blank line | |
771 search() find a match for a pattern | |
667 | 772 searchpos() find a match for a pattern |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
773 searchcount() get number of matches before/after the cursor |
7 | 774 searchpair() find the other end of a start/skip/end |
667 | 775 searchpairpos() find the other end of a start/skip/end |
824 | 776 searchdecl() search for the declaration of a name |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
777 getcharsearch() return character search information |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
778 setcharsearch() set character search information |
7 | 779 |
17257
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
780 Working with text in another buffer: |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
781 getbufline() get a list of lines from the specified buffer |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
782 setbufline() replace a line in the specified buffer |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
783 appendbufline() append a list of lines in the specified buffer |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
784 deletebufline() delete lines from a specified buffer |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
785 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
786 *system-functions* *file-functions* |
7 | 787 System functions and manipulation of files: |
788 glob() expand wildcards | |
789 globpath() expand wildcards in a number of directories | |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
790 glob2regpat() convert a glob pattern into a search pattern |
824 | 791 findfile() find a file in a list of directories |
792 finddir() find a directory in a list of directories | |
7 | 793 resolve() find out where a shortcut points to |
794 fnamemodify() modify a file name | |
824 | 795 pathshorten() shorten directory names in a path |
796 simplify() simplify a path without changing its meaning | |
7 | 797 executable() check if an executable program exists |
5814 | 798 exepath() full path of an executable program |
7 | 799 filereadable() check if a file can be read |
800 filewritable() check if a file can be written to | |
824 | 801 getfperm() get the permissions of a file |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
802 setfperm() set the permissions of a file |
824 | 803 getftype() get the kind of a file |
7 | 804 isdirectory() check if a directory exists |
805 getfsize() get the size of a file | |
824 | 806 getcwd() get the current working directory |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16267
diff
changeset
|
807 haslocaldir() check if current window used |:lcd| or |:tcd| |
7 | 808 tempname() get the name of a temporary file |
824 | 809 mkdir() create a new directory |
16576
bcc343175103
patch 8.1.1291: not easy to change directory and restore
Bram Moolenaar <Bram@vim.org>
parents:
16517
diff
changeset
|
810 chdir() change current working directory |
7 | 811 delete() delete a file |
812 rename() rename a file | |
5814 | 813 system() get the result of a shell command as a string |
814 systemlist() get the result of a shell command as a list | |
16604
1e0a5f09fdf1
patch 8.1.1305: there is no easy way to manipulate environment variables
Bram Moolenaar <Bram@vim.org>
parents:
16576
diff
changeset
|
815 environ() get all environment variables |
1e0a5f09fdf1
patch 8.1.1305: there is no easy way to manipulate environment variables
Bram Moolenaar <Bram@vim.org>
parents:
16576
diff
changeset
|
816 getenv() get one environment variable |
1e0a5f09fdf1
patch 8.1.1305: there is no easy way to manipulate environment variables
Bram Moolenaar <Bram@vim.org>
parents:
16576
diff
changeset
|
817 setenv() set an environment variable |
7 | 818 hostname() name of the system |
158 | 819 readfile() read a file into a List of lines |
16267 | 820 readdir() get a List of file names in a directory |
20643
c2beb6baa42c
patch 8.2.0875: getting attributes for directory entries is slow
Bram Moolenaar <Bram@vim.org>
parents:
20615
diff
changeset
|
821 readdirex() get a List of file information in a directory |
15729 | 822 writefile() write a List of lines or Blob into a file |
7 | 823 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
824 Date and Time: *date-functions* *time-functions* |
824 | 825 getftime() get last modification time of a file |
826 localtime() get current time in seconds | |
827 strftime() convert time to a string | |
18669
9007e9896303
patch 8.1.2326: cannot parse a date/time string
Bram Moolenaar <Bram@vim.org>
parents:
18639
diff
changeset
|
828 strptime() convert a date/time string to time |
824 | 829 reltime() get the current or elapsed time accurately |
830 reltimestr() convert reltime() result to a string | |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
831 reltimefloat() convert reltime() result to a Float |
824 | 832 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
833 *buffer-functions* *window-functions* *arg-functions* |
7 | 834 Buffers, windows and the argument list: |
835 argc() number of entries in the argument list | |
836 argidx() current position in the argument list | |
5942 | 837 arglistid() get id of the argument list |
7 | 838 argv() get one entry from the argument list |
17257
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
839 bufadd() add a file to the list of buffers |
7 | 840 bufexists() check if a buffer exists |
841 buflisted() check if a buffer exists and is listed | |
17257
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
842 bufload() ensure a buffer is loaded |
7 | 843 bufloaded() check if a buffer exists and is loaded |
844 bufname() get the name of a specific buffer | |
845 bufnr() get the buffer number of a specific buffer | |
824 | 846 tabpagebuflist() return List of buffers in a tab page |
847 tabpagenr() get the number of a tab page | |
848 tabpagewinnr() like winnr() for a specified tab page | |
7 | 849 winnr() get the window number for the current window |
9227
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
8876
diff
changeset
|
850 bufwinid() get the window ID of a specific buffer |
7 | 851 bufwinnr() get the window number of a specific buffer |
852 winbufnr() get the buffer number of a specific window | |
16638
4790302965fc
patch 8.1.1321: no docs or tests for listener functions
Bram Moolenaar <Bram@vim.org>
parents:
16610
diff
changeset
|
853 listener_add() add a callback to listen to changes |
16808 | 854 listener_flush() invoke listener callbacks |
16638
4790302965fc
patch 8.1.1321: no docs or tests for listener functions
Bram Moolenaar <Bram@vim.org>
parents:
16610
diff
changeset
|
855 listener_remove() remove a listener callback |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
856 win_findbuf() find windows containing a buffer |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
857 win_getid() get window ID of a window |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
858 win_gettype() get type of window |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
859 win_gotoid() go to window with ID |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
860 win_id2tabwin() get tab and window nr from window ID |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
861 win_id2win() get window nr from window ID |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
862 win_splitmove() move window to a split of another window |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9644
diff
changeset
|
863 getbufinfo() get a list with buffer information |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9644
diff
changeset
|
864 gettabinfo() get a list with tab page information |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9644
diff
changeset
|
865 getwininfo() get a list with window information |
13280
fbda23eb0996
patch 8.0.1514: getting the list of changes is not easy
Christian Brabandt <cb@256bit.org>
parents:
13246
diff
changeset
|
866 getchangelist() get a list of change list entries |
13246
dd3b2ecf91f6
patch 8.0.1497: getting the jump list requires parsing the output of :jumps
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
867 getjumplist() get a list of jump list entries |
14637 | 868 swapinfo() information about a swap file |
15068 | 869 swapname() get the swap file path of a buffer |
824 | 870 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
871 Command line: *command-line-functions* |
824 | 872 getcmdline() get the current command line |
873 getcmdpos() get position of the cursor in the command line | |
874 setcmdpos() set position of the cursor in the command line | |
875 getcmdtype() return the current command-line type | |
6153 | 876 getcmdwintype() return the current command-line window type |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
9464
diff
changeset
|
877 getcompletion() list of command-line completion matches |
824 | 878 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
879 Quickfix and location lists: *quickfix-functions* |
824 | 880 getqflist() list of quickfix errors |
881 setqflist() modify a quickfix list | |
882 getloclist() list of location list items | |
883 setloclist() modify a location list | |
884 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
885 Insert mode completion: *completion-functions* |
824 | 886 complete() set found matches |
887 complete_add() add to found matches | |
888 complete_check() check if completion should be aborted | |
16127
0375e54f0adc
patch 8.1.1068: cannot get all the information about current completion
Bram Moolenaar <Bram@vim.org>
parents:
15729
diff
changeset
|
889 complete_info() get current completion information |
824 | 890 pumvisible() check if the popup menu is displayed |
18186 | 891 pum_getpos() position and size of popup menu if visible |
7 | 892 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
893 Folding: *folding-functions* |
7 | 894 foldclosed() check for a closed fold at a specific line |
895 foldclosedend() like foldclosed() but return the last line | |
896 foldlevel() check for the fold level at a specific line | |
897 foldtext() generate the line displayed for a closed fold | |
824 | 898 foldtextresult() get the text displayed for a closed fold |
899 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
900 Syntax and highlighting: *syntax-functions* *highlighting-functions* |
1326 | 901 clearmatches() clear all matches defined by |matchadd()| and |
902 the |:match| commands | |
903 getmatches() get all matches defined by |matchadd()| and | |
904 the |:match| commands | |
7 | 905 hlexists() check if a highlight group exists |
906 hlID() get ID of a highlight group | |
907 synID() get syntax ID at a specific position | |
908 synIDattr() get a specific attribute of a syntax ID | |
909 synIDtrans() get translated syntax ID | |
2642 | 910 synstack() get list of syntax IDs at a specific position |
2662 | 911 synconcealed() get info about concealing |
824 | 912 diff_hlID() get highlight ID for diff mode at a position |
1326 | 913 matchadd() define a pattern to highlight (a "match") |
5979 | 914 matchaddpos() define a list of positions to highlight |
824 | 915 matcharg() get info about |:match| arguments |
1326 | 916 matchdelete() delete a match defined by |matchadd()| or a |
917 |:match| command | |
918 setmatches() restore a list of matches saved by | |
919 |getmatches()| | |
824 | 920 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
921 Spelling: *spell-functions* |
824 | 922 spellbadword() locate badly spelled word at or after cursor |
923 spellsuggest() return suggested spelling corrections | |
924 soundfold() return the sound-a-like equivalent of a word | |
7 | 925 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
926 History: *history-functions* |
7 | 927 histadd() add an item to a history |
928 histdel() delete an item from a history | |
929 histget() get an item from a history | |
930 histnr() get highest index of a history list | |
931 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
932 Interactive: *interactive-functions* |
824 | 933 browse() put up a file requester |
934 browsedir() put up a directory requester | |
7 | 935 confirm() let the user make a choice |
936 getchar() get a character from the user | |
937 getcharmod() get modifiers for the last typed character | |
18639 | 938 getmousepos() get last known mouse position |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
939 echoraw() output characters as-is |
1620 | 940 feedkeys() put characters in the typeahead queue |
7 | 941 input() get a line from the user |
824 | 942 inputlist() let the user pick an entry from a list |
7 | 943 inputsecret() get a line from the user without showing it |
944 inputdialog() get a line from the user in a dialog | |
230 | 945 inputsave() save and clear typeahead |
7 | 946 inputrestore() restore typeahead |
947 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
948 GUI: *gui-functions* |
824 | 949 getfontname() get name of current font being used |
13437 | 950 getwinpos() position of the Vim window |
951 getwinposx() X position of the Vim window | |
952 getwinposy() Y position of the Vim window | |
11062 | 953 balloon_show() set the balloon content |
12909 | 954 balloon_split() split a message for a balloon |
16604
1e0a5f09fdf1
patch 8.1.1305: there is no easy way to manipulate environment variables
Bram Moolenaar <Bram@vim.org>
parents:
16576
diff
changeset
|
955 balloon_gettext() get the text in the balloon |
824 | 956 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
957 Vim server: *server-functions* |
7 | 958 serverlist() return the list of server names |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12254
diff
changeset
|
959 remote_startserver() run a server |
7 | 960 remote_send() send command characters to a Vim server |
961 remote_expr() evaluate an expression in a Vim server | |
962 server2client() send a reply to a client of a Vim server | |
963 remote_peek() check if there is a reply from a Vim server | |
964 remote_read() read a reply from a Vim server | |
965 foreground() move the Vim window to the foreground | |
966 remote_foreground() move the Vim server window to the foreground | |
967 | |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
968 Window size and position: *window-size-functions* |
824 | 969 winheight() get height of a specific window |
970 winwidth() get width of a specific window | |
13051 | 971 win_screenpos() get screen position of a window |
15068 | 972 winlayout() get layout of windows in a tab page |
824 | 973 winrestcmd() return command to restore window sizes |
974 winsaveview() get view of current window | |
975 winrestview() restore saved view of current window | |
976 | |
19657
da791e5c0139
patch 8.2.0385: menu functionality insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19384
diff
changeset
|
977 Mappings and Menus: *mapping-functions* |
4159 | 978 hasmapto() check if a mapping exists |
979 mapcheck() check if a matching mapping exists | |
980 maparg() get rhs of a mapping | |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
981 mapset() restore a mapping |
19657
da791e5c0139
patch 8.2.0385: menu functionality insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
19384
diff
changeset
|
982 menu_info() get information about a menu item |
4159 | 983 wildmenumode() check if the wildmode is active |
984 | |
7279
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
6153
diff
changeset
|
985 Testing: *test-functions* |
8673
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
986 assert_equal() assert that two expressions values are equal |
15068 | 987 assert_equalfile() assert that two file contents are equal |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
988 assert_notequal() assert that two expressions values are not equal |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
9464
diff
changeset
|
989 assert_inrange() assert that an expression is inside a range |
8795
aba2d0a01290
commit https://github.com/vim/vim/commit/7db8f6f4f85e5d0526d23107b2a5e2334dc23354
Christian Brabandt <cb@256bit.org>
parents:
8793
diff
changeset
|
990 assert_match() assert that a pattern matches the value |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
991 assert_notmatch() assert that a pattern does not match the value |
7279
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
6153
diff
changeset
|
992 assert_false() assert that an expression is false |
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
6153
diff
changeset
|
993 assert_true() assert that an expression is true |
8673
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
994 assert_exception() assert that a command throws an exception |
13341
acd7eaa13d2b
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
13280
diff
changeset
|
995 assert_beeps() assert that a command beeps |
acd7eaa13d2b
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
13280
diff
changeset
|
996 assert_fails() assert that a command fails |
11229
146a1e213b60
Update runtime files. Add Rust support.
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
997 assert_report() report a test failure |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
998 test_alloc_fail() make memory allocation fail |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
9464
diff
changeset
|
999 test_autochdir() enable 'autochdir' during startup |
11160 | 1000 test_override() test with Vim internal overrides |
1001 test_garbagecollect_now() free memory right now | |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1002 test_garbagecollect_soon() set a flag to free memory soon |
16808 | 1003 test_getvalue() get value of an internal variable |
11062 | 1004 test_ignore_error() ignore a specific error message |
15729 | 1005 test_null_blob() return a null Blob |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1006 test_null_channel() return a null Channel |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1007 test_null_dict() return a null Dict |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1008 test_null_function() return a null Funcref |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1009 test_null_job() return a null Job |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1010 test_null_list() return a null List |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1011 test_null_partial() return a null Partial function |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1012 test_null_string() return a null String |
11062 | 1013 test_settime() set the time Vim uses internally |
16517
9484fc00ac6b
patch 8.1.1262: cannot simulate a mouse click in a test
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
1014 test_setmouse() set the mouse position |
15068 | 1015 test_feedinput() add key sequence to input buffer |
1016 test_option_not_set() reset flag indicating option was set | |
1017 test_scrollbar() simulate scrollbar movement in the GUI | |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1018 test_refcount() return an expression's reference count |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1019 test_srand_seed() set the seed value for srand() |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1020 test_unknown() return a value with unknown type |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1021 test_void() return a value with void type |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1022 |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1023 Inter-process communication: *channel-functions* |
10449
222b1432814e
commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
1024 ch_canread() check if there is something to read |
7924
00d64eb49ce1
commit https://github.com/vim/vim/commit/681baaf4a4c81418693dcafb81421a8614832e91
Christian Brabandt <cb@256bit.org>
parents:
7790
diff
changeset
|
1025 ch_open() open a channel |
00d64eb49ce1
commit https://github.com/vim/vim/commit/681baaf4a4c81418693dcafb81421a8614832e91
Christian Brabandt <cb@256bit.org>
parents:
7790
diff
changeset
|
1026 ch_close() close a channel |
10140
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9858
diff
changeset
|
1027 ch_close_in() close the in part of a channel |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1028 ch_read() read a message from a channel |
15512 | 1029 ch_readblob() read a Blob from a channel |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1030 ch_readraw() read a raw message from a channel |
7924
00d64eb49ce1
commit https://github.com/vim/vim/commit/681baaf4a4c81418693dcafb81421a8614832e91
Christian Brabandt <cb@256bit.org>
parents:
7790
diff
changeset
|
1031 ch_sendexpr() send a JSON message over a channel |
00d64eb49ce1
commit https://github.com/vim/vim/commit/681baaf4a4c81418693dcafb81421a8614832e91
Christian Brabandt <cb@256bit.org>
parents:
7790
diff
changeset
|
1032 ch_sendraw() send a raw message over a channel |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1033 ch_evalexpr() evaluate an expression over channel |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1034 ch_evalraw() evaluate a raw string over channel |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1035 ch_status() get status of a channel |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1036 ch_getbufnr() get the buffer number of a channel |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1037 ch_getjob() get the job associated with a channel |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1038 ch_info() get channel information |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1039 ch_log() write a message in the channel log file |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1040 ch_logfile() set the channel log file |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1041 ch_setoptions() set the options for a channel |
9319
1472ed67c36f
commit https://github.com/vim/vim/commit/a02a551e18209423584fcb923e93c6be18f3aa45
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
1042 json_encode() encode an expression to a JSON string |
1472ed67c36f
commit https://github.com/vim/vim/commit/a02a551e18209423584fcb923e93c6be18f3aa45
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
1043 json_decode() decode a JSON string to Vim types |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1044 js_encode() encode an expression to a JSON string |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1045 js_decode() decode a JSON string to Vim types |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1046 |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1047 Jobs: *job-functions* |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1048 job_start() start a job |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1049 job_stop() stop a job |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1050 job_status() get the status of a job |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1051 job_getchannel() get the channel used by a job |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1052 job_info() get information about a job |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1053 job_setoptions() set options for a job |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1054 |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1055 Signs: *sign-functions* |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1056 sign_define() define or update a sign |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1057 sign_getdefined() get a list of defined signs |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1058 sign_getplaced() get a list of placed signs |
15418
51b3c36b0523
patch 8.1.0717: there is no function for the ":sign jump" command
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
1059 sign_jump() jump to a sign |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1060 sign_place() place a sign |
17366
9843fbfa0ee5
patch 8.1.1682: placing a larger number of signs is slow
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1061 sign_placelist() place a list of signs |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1062 sign_undefine() undefine a sign |
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1063 sign_unplace() unplace a sign |
17366
9843fbfa0ee5
patch 8.1.1682: placing a larger number of signs is slow
Bram Moolenaar <Bram@vim.org>
parents:
17292
diff
changeset
|
1064 sign_unplacelist() unplace a list of signs |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
15194
diff
changeset
|
1065 |
12254 | 1066 Terminal window: *terminal-functions* |
1067 term_start() open a terminal window and run a job | |
1068 term_list() get the list of terminal buffers | |
1069 term_sendkeys() send keystrokes to a terminal | |
1070 term_wait() wait for screen to be updated | |
1071 term_getjob() get the job associated with a terminal | |
1072 term_scrape() get row of a terminal screen | |
1073 term_getline() get a line of text from a terminal | |
1074 term_getattr() get the value of attribute {what} | |
1075 term_getcursor() get the cursor position of a terminal | |
1076 term_getscrolled() get the scroll count of a terminal | |
1077 term_getaltscreen() get the alternate screen flag | |
1078 term_getsize() get the size of a terminal | |
1079 term_getstatus() get the status of a terminal | |
1080 term_gettitle() get the title of a terminal | |
1081 term_gettty() get the tty name of a terminal | |
13735 | 1082 term_setansicolors() set 16 ANSI colors, used for GUI |
1083 term_getansicolors() get 16 ANSI colors, used for GUI | |
15068 | 1084 term_dumpdiff() display difference between two screen dumps |
1085 term_dumpload() load a terminal screen dump in a window | |
1086 term_dumpwrite() dump contents of a terminal screen to a file | |
1087 term_setkill() set signal to stop job in a terminal | |
1088 term_setrestore() set command to restore a terminal | |
1089 term_setsize() set the size of a terminal | |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1090 term_setapi() set terminal JSON API function name prefix |
12254 | 1091 |
17257
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1092 Popup window: *popup-window-functions* |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1093 popup_create() create popup centered in the screen |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1094 popup_atcursor() create popup just above the cursor position, |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1095 closes when the cursor moves away |
17292
8a095d343c59
patch 8.1.1645: cannot use a popup window for a balloon
Bram Moolenaar <Bram@vim.org>
parents:
17257
diff
changeset
|
1096 popup_beval() at the position indicated by v:beval_ |
8a095d343c59
patch 8.1.1645: cannot use a popup window for a balloon
Bram Moolenaar <Bram@vim.org>
parents:
17257
diff
changeset
|
1097 variables, closes when the mouse moves away |
17257
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1098 popup_notification() show a notification for three seconds |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1099 popup_dialog() create popup centered with padding and border |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1100 popup_menu() prompt for selecting an item from a list |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1101 popup_hide() hide a popup temporarily |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1102 popup_show() show a previously hidden popup |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1103 popup_move() change the position and size of a popup |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1104 popup_setoptions() override options of a popup |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1105 popup_settext() replace the popup buffer contents |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1106 popup_close() close one popup |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1107 popup_clear() close all popups |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1108 popup_filter_menu() select from a list of items |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1109 popup_filter_yesno() block until 'y' or 'n' is pressed |
17257
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1110 popup_getoptions() get current options for a popup |
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1111 popup_getpos() get actual position and size of a popup |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1112 popup_findinfo() get window ID for popup info window |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1113 popup_findpreview() get window ID for popup preview window |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1114 popup_list() get list of all popup window IDs |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1115 popup_locate() get popup window ID from its screen position |
17257
cb0ca75f0c26
patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents:
17020
diff
changeset
|
1116 |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1117 Timers: *timer-functions* |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1118 timer_start() create a timer |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9644
diff
changeset
|
1119 timer_pause() pause or unpause a timer |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1120 timer_stop() stop a timer |
9858
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9644
diff
changeset
|
1121 timer_stopall() stop all timers |
3e96d9ed2ca1
commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents:
9644
diff
changeset
|
1122 timer_info() get information about timers |
7790
ca19726d5e83
commit https://github.com/vim/vim/commit/298b440930ecece38d6ea0505a3e582dc817e79b
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
1123 |
15068 | 1124 Tags: *tag-functions* |
1125 taglist() get list of matching tags | |
1126 tagfiles() get a list of tags files | |
1127 gettagstack() get the tag stack of a window | |
1128 settagstack() modify the tag stack of a window | |
1129 | |
1130 Prompt Buffer: *promptbuffer-functions* | |
22077
335365fcbb60
patch 8.2.1588: cannot read back the prompt of a prompt buffer
Bram Moolenaar <Bram@vim.org>
parents:
21991
diff
changeset
|
1131 prompt_getprompt() get the effective prompt text for a buffer |
15068 | 1132 prompt_setcallback() set prompt callback for a buffer |
1133 prompt_setinterrupt() set interrupt callback for a buffer | |
1134 prompt_setprompt() set the prompt text for a buffer | |
1135 | |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1136 Text Properties: *text-property-functions* |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1137 prop_add() attach a property at a position |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1138 prop_clear() remove all properties from a line or lines |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1139 prop_find() search for a property |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1140 prop_list() return a list of all properties in a line |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1141 prop_remove() remove a property from a line |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1142 prop_type_add() add/define a property type |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1143 prop_type_change() change properties of a type |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1144 prop_type_delete() remove a text property type |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1145 prop_type_get() return the properties of a type |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1146 prop_type_list() return a list of all property types |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1147 |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1148 Sound: *sound-functions* |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1149 sound_clear() stop playing all sounds |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1150 sound_playevent() play an event's sound |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1151 sound_playfile() play a sound file |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1152 sound_stop() stop playing a sound |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1153 |
2301
6f63294a1781
Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
1154 Various: *various-functions* |
7 | 1155 mode() get current editing mode |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1156 state() get current busy state |
7 | 1157 visualmode() last visual mode used |
1158 exists() check if a variable, function, etc. exists | |
1159 has() check if a feature is supported in Vim | |
824 | 1160 changenr() return number of most recent change |
7 | 1161 cscope_connection() check if a cscope connection exists |
1162 did_filetype() check if a FileType autocommand was used | |
1163 eventhandler() check if invoked by an event handler | |
1620 | 1164 getpid() get process ID of Vim |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1165 getimstatus() check if IME status is active |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1166 interrupt() interrupt script execution |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1167 windowsversion() get MS-Windows version |
20836
2616c5a337e0
patch 8.2.0970: terminal properties are not available in Vim script
Bram Moolenaar <Bram@vim.org>
parents:
20766
diff
changeset
|
1168 terminalprops() properties of the terminal |
824 | 1169 |
7 | 1170 libcall() call a function in an external library |
1171 libcallnr() idem, returning a number | |
824 | 1172 |
5618 | 1173 undofile() get the name of the undo file |
1174 undotree() return the state of the undo tree | |
1175 | |
7 | 1176 getreg() get contents of a register |
20743
a672feb8fc4f
patch 8.2.0924: cannot save and restore a register properly
Bram Moolenaar <Bram@vim.org>
parents:
20687
diff
changeset
|
1177 getreginfo() get information about a register |
7 | 1178 getregtype() get type of a register |
1179 setreg() set contents and type of a register | |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
1180 reg_executing() return the name of the register being executed |
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
1181 reg_recording() return the name of the register being recorded |
824 | 1182 |
5618 | 1183 shiftwidth() effective value of 'shiftwidth' |
1184 | |
9464
be72f4201a1d
commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents:
9319
diff
changeset
|
1185 wordcount() get byte/word/char count of buffer |
be72f4201a1d
commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents:
9319
diff
changeset
|
1186 |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1187 luaeval() evaluate |Lua| expression |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1188 mzeval() evaluate |MzScheme| expression |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
1189 perleval() evaluate Perl expression (|+perl|) |
5618 | 1190 py3eval() evaluate Python expression (|+python3|) |
1191 pyeval() evaluate Python expression (|+python|) | |
10734 | 1192 pyxeval() evaluate |python_x| expression |
20687
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1193 rubyeval() evaluate |Ruby| expression |
770a8e9c4781
patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20643
diff
changeset
|
1194 |
15194 | 1195 debugbreak() interrupt a program being debugged |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1196 |
7 | 1197 ============================================================================== |
1198 *41.7* Defining a function | |
1199 | |
1200 Vim enables you to define your own functions. The basic function declaration | |
1201 begins as follows: > | |
1202 | |
1203 :function {name}({var1}, {var2}, ...) | |
1204 : {body} | |
1205 :endfunction | |
1206 < | |
1207 Note: | |
1208 Function names must begin with a capital letter. | |
1209 | |
1210 Let's define a short function to return the smaller of two numbers. It starts | |
1211 with this line: > | |
1212 | |
1213 :function Min(num1, num2) | |
1214 | |
1215 This tells Vim that the function is named "Min" and it takes two arguments: | |
1216 "num1" and "num2". | |
1217 The first thing you need to do is to check to see which number is smaller: | |
1218 > | |
1219 : if a:num1 < a:num2 | |
1220 | |
1221 The special prefix "a:" tells Vim that the variable is a function argument. | |
1222 Let's assign the variable "smaller" the value of the smallest number: > | |
1223 | |
1224 : if a:num1 < a:num2 | |
1225 : let smaller = a:num1 | |
1226 : else | |
1227 : let smaller = a:num2 | |
1228 : endif | |
1229 | |
1230 The variable "smaller" is a local variable. Variables used inside a function | |
1231 are local unless prefixed by something like "g:", "a:", or "s:". | |
1232 | |
1233 Note: | |
1234 To access a global variable from inside a function you must prepend | |
1620 | 1235 "g:" to it. Thus "g:today" inside a function is used for the global |
1236 variable "today", and "today" is another variable, local to the | |
7 | 1237 function. |
1238 | |
1239 You now use the ":return" statement to return the smallest number to the user. | |
1240 Finally, you end the function: > | |
1241 | |
1242 : return smaller | |
1243 :endfunction | |
1244 | |
1245 The complete function definition is as follows: > | |
1246 | |
1247 :function Min(num1, num2) | |
1248 : if a:num1 < a:num2 | |
1249 : let smaller = a:num1 | |
1250 : else | |
1251 : let smaller = a:num2 | |
1252 : endif | |
1253 : return smaller | |
1254 :endfunction | |
1255 | |
161 | 1256 For people who like short functions, this does the same thing: > |
1257 | |
1258 :function Min(num1, num2) | |
1259 : if a:num1 < a:num2 | |
1260 : return a:num1 | |
1261 : endif | |
1262 : return a:num2 | |
1263 :endfunction | |
1264 | |
681 | 1265 A user defined function is called in exactly the same way as a built-in |
7 | 1266 function. Only the name is different. The Min function can be used like |
1267 this: > | |
1268 | |
1269 :echo Min(5, 8) | |
1270 | |
1271 Only now will the function be executed and the lines be interpreted by Vim. | |
1272 If there are mistakes, like using an undefined variable or function, you will | |
1273 now get an error message. When defining the function these errors are not | |
1274 detected. | |
1275 | |
1276 When a function reaches ":endfunction" or ":return" is used without an | |
1277 argument, the function returns zero. | |
1278 | |
1279 To redefine a function that already exists, use the ! for the ":function" | |
1280 command: > | |
1281 | |
1282 :function! Min(num1, num2, num3) | |
1283 | |
1284 | |
1285 USING A RANGE | |
1286 | |
1287 The ":call" command can be given a line range. This can have one of two | |
1288 meanings. When a function has been defined with the "range" keyword, it will | |
1289 take care of the line range itself. | |
1290 The function will be passed the variables "a:firstline" and "a:lastline". | |
1291 These will have the line numbers from the range the function was called with. | |
1292 Example: > | |
1293 | |
1294 :function Count_words() range | |
1620 | 1295 : let lnum = a:firstline |
1296 : let n = 0 | |
1297 : while lnum <= a:lastline | |
1298 : let n = n + len(split(getline(lnum))) | |
1299 : let lnum = lnum + 1 | |
7 | 1300 : endwhile |
22171 | 1301 : echo "found " .. n .. " words" |
7 | 1302 :endfunction |
1303 | |
1304 You can call this function with: > | |
1305 | |
1306 :10,30call Count_words() | |
1307 | |
1308 It will be executed once and echo the number of words. | |
1309 The other way to use a line range is by defining a function without the | |
1310 "range" keyword. The function will be called once for every line in the | |
1311 range, with the cursor in that line. Example: > | |
1312 | |
1313 :function Number() | |
22171 | 1314 : echo "line " .. line(".") .. " contains: " .. getline(".") |
7 | 1315 :endfunction |
1316 | |
1317 If you call this function with: > | |
1318 | |
1319 :10,15call Number() | |
1320 | |
1321 The function will be called six times. | |
1322 | |
1323 | |
1324 VARIABLE NUMBER OF ARGUMENTS | |
1325 | |
1326 Vim enables you to define functions that have a variable number of arguments. | |
1327 The following command, for instance, defines a function that must have 1 | |
1328 argument (start) and can have up to 20 additional arguments: > | |
1329 | |
1330 :function Show(start, ...) | |
1331 | |
1332 The variable "a:1" contains the first optional argument, "a:2" the second, and | |
1333 so on. The variable "a:0" contains the number of extra arguments. | |
1334 For example: > | |
1335 | |
1336 :function Show(start, ...) | |
1337 : echohl Title | |
22171 | 1338 : echo "start is " .. a:start |
7 | 1339 : echohl None |
1340 : let index = 1 | |
1341 : while index <= a:0 | |
22171 | 1342 : echo " Arg " .. index .. " is " .. a:{index} |
7 | 1343 : let index = index + 1 |
1344 : endwhile | |
1345 : echo "" | |
1346 :endfunction | |
1347 | |
1348 This uses the ":echohl" command to specify the highlighting used for the | |
1349 following ":echo" command. ":echohl None" stops it again. The ":echon" | |
1350 command works like ":echo", but doesn't output a line break. | |
1351 | |
161 | 1352 You can also use the a:000 variable, it is a List of all the "..." arguments. |
1353 See |a:000|. | |
1354 | |
7 | 1355 |
1356 LISTING FUNCTIONS | |
1357 | |
1358 The ":function" command lists the names and arguments of all user-defined | |
1359 functions: > | |
1360 | |
1361 :function | |
1362 < function Show(start, ...) ~ | |
1363 function GetVimIndent() ~ | |
1364 function SetSyn(name) ~ | |
1365 | |
1366 To see what a function does, use its name as an argument for ":function": > | |
1367 | |
1368 :function SetSyn | |
1369 < 1 if &syntax == '' ~ | |
1370 2 let &syntax = a:name ~ | |
1371 3 endif ~ | |
1372 endfunction ~ | |
1373 | |
1374 | |
1375 DEBUGGING | |
1376 | |
1377 The line number is useful for when you get an error message or when debugging. | |
1378 See |debug-scripts| about debugging mode. | |
1379 You can also set the 'verbose' option to 12 or higher to see all function | |
1380 calls. Set it to 15 or higher to see every executed line. | |
1381 | |
1382 | |
1383 DELETING A FUNCTION | |
1384 | |
1385 To delete the Show() function: > | |
1386 | |
1387 :delfunction Show | |
1388 | |
1389 You get an error when the function doesn't exist. | |
1390 | |
161 | 1391 |
1392 FUNCTION REFERENCES | |
1393 | |
1394 Sometimes it can be useful to have a variable point to one function or | |
1395 another. You can do it with the function() function. It turns the name of a | |
1396 function into a reference: > | |
1397 | |
1398 :let result = 0 " or 1 | |
1399 :function! Right() | |
1400 : return 'Right!' | |
1401 :endfunc | |
1402 :function! Wrong() | |
1403 : return 'Wrong!' | |
1404 :endfunc | |
1405 : | |
1406 :if result == 1 | |
1407 : let Afunc = function('Right') | |
1408 :else | |
1409 : let Afunc = function('Wrong') | |
1410 :endif | |
1411 :echo call(Afunc, []) | |
1412 < Wrong! ~ | |
1413 | |
1414 Note that the name of a variable that holds a function reference must start | |
1415 with a capital. Otherwise it could be confused with the name of a builtin | |
1416 function. | |
1417 The way to invoke a function that a variable refers to is with the call() | |
1418 function. Its first argument is the function reference, the second argument | |
1419 is a List with arguments. | |
1420 | |
1421 Function references are most useful in combination with a Dictionary, as is | |
1422 explained in the next section. | |
1423 | |
7 | 1424 ============================================================================== |
161 | 1425 *41.8* Lists and Dictionaries |
1426 | |
1427 So far we have used the basic types String and Number. Vim also supports two | |
1428 composite types: List and Dictionary. | |
1429 | |
1430 A List is an ordered sequence of things. The things can be any kind of value, | |
1431 thus you can make a List of numbers, a List of Lists and even a List of mixed | |
1432 items. To create a List with three strings: > | |
1433 | |
856 | 1434 :let alist = ['aap', 'mies', 'noot'] |
161 | 1435 |
1436 The List items are enclosed in square brackets and separated by commas. To | |
1437 create an empty List: > | |
1438 | |
856 | 1439 :let alist = [] |
161 | 1440 |
1441 You can add items to a List with the add() function: > | |
1442 | |
856 | 1443 :let alist = [] |
161 | 1444 :call add(alist, 'foo') |
1445 :call add(alist, 'bar') | |
1446 :echo alist | |
1447 < ['foo', 'bar'] ~ | |
1448 | |
1449 List concatenation is done with +: > | |
1450 | |
1451 :echo alist + ['foo', 'bar'] | |
1452 < ['foo', 'bar', 'foo', 'bar'] ~ | |
1453 | |
1454 Or, if you want to extend a List directly: > | |
1455 | |
856 | 1456 :let alist = ['one'] |
161 | 1457 :call extend(alist, ['two', 'three']) |
1458 :echo alist | |
1459 < ['one', 'two', 'three'] ~ | |
1460 | |
1461 Notice that using add() will have a different effect: > | |
1462 | |
856 | 1463 :let alist = ['one'] |
161 | 1464 :call add(alist, ['two', 'three']) |
1465 :echo alist | |
1466 < ['one', ['two', 'three']] ~ | |
1467 | |
1468 The second argument of add() is added as a single item. | |
1469 | |
1470 | |
1471 FOR LOOP | |
1472 | |
1473 One of the nice things you can do with a List is iterate over it: > | |
1474 | |
1475 :let alist = ['one', 'two', 'three'] | |
1476 :for n in alist | |
1477 : echo n | |
1478 :endfor | |
1479 < one ~ | |
1480 two ~ | |
1481 three ~ | |
1482 | |
1483 This will loop over each element in List "alist", assigning the value to | |
1484 variable "n". The generic form of a for loop is: > | |
1485 | |
1486 :for {varname} in {listexpression} | |
1487 : {commands} | |
1488 :endfor | |
1489 | |
1490 To loop a certain number of times you need a List of a specific length. The | |
1491 range() function creates one for you: > | |
1492 | |
1493 :for a in range(3) | |
1494 : echo a | |
1495 :endfor | |
1496 < 0 ~ | |
1497 1 ~ | |
1498 2 ~ | |
1499 | |
1500 Notice that the first item of the List that range() produces is zero, thus the | |
1501 last item is one less than the length of the list. | |
1502 You can also specify the maximum value, the stride and even go backwards: > | |
1503 | |
1504 :for a in range(8, 4, -2) | |
1505 : echo a | |
1506 :endfor | |
1507 < 8 ~ | |
1508 6 ~ | |
1509 4 ~ | |
1510 | |
1511 A more useful example, looping over lines in the buffer: > | |
1512 | |
856 | 1513 :for line in getline(1, 20) |
1514 : if line =~ "Date: " | |
1515 : echo matchstr(line, 'Date: \zs.*') | |
1516 : endif | |
1517 :endfor | |
161 | 1518 |
1519 This looks into lines 1 to 20 (inclusive) and echoes any date found in there. | |
1520 | |
1521 | |
1522 DICTIONARIES | |
1523 | |
1524 A Dictionary stores key-value pairs. You can quickly lookup a value if you | |
1525 know the key. A Dictionary is created with curly braces: > | |
856 | 1526 |
161 | 1527 :let uk2nl = {'one': 'een', 'two': 'twee', 'three': 'drie'} |
1528 | |
164 | 1529 Now you can lookup words by putting the key in square brackets: > |
161 | 1530 |
1531 :echo uk2nl['two'] | |
1532 < twee ~ | |
1533 | |
1534 The generic form for defining a Dictionary is: > | |
1535 | |
1536 {<key> : <value>, ...} | |
1537 | |
1538 An empty Dictionary is one without any keys: > | |
1539 | |
1540 {} | |
1541 | |
1542 The possibilities with Dictionaries are numerous. There are various functions | |
1543 for them as well. For example, you can obtain a list of the keys and loop | |
1544 over them: > | |
1545 | |
1546 :for key in keys(uk2nl) | |
1547 : echo key | |
1548 :endfor | |
1549 < three ~ | |
1550 one ~ | |
1551 two ~ | |
1552 | |
1620 | 1553 You will notice the keys are not ordered. You can sort the list to get a |
161 | 1554 specific order: > |
1555 | |
1556 :for key in sort(keys(uk2nl)) | |
1557 : echo key | |
1558 :endfor | |
1559 < one ~ | |
1560 three ~ | |
1561 two ~ | |
1562 | |
1563 But you can never get back the order in which items are defined. For that you | |
1564 need to use a List, it stores items in an ordered sequence. | |
1565 | |
1566 | |
1567 DICTIONARY FUNCTIONS | |
1568 | |
1569 The items in a Dictionary can normally be obtained with an index in square | |
1570 brackets: > | |
1571 | |
1572 :echo uk2nl['one'] | |
1573 < een ~ | |
1574 | |
1575 A method that does the same, but without so many punctuation characters: > | |
1576 | |
1577 :echo uk2nl.one | |
1578 < een ~ | |
1579 | |
1580 This only works for a key that is made of ASCII letters, digits and the | |
1581 underscore. You can also assign a new value this way: > | |
1582 | |
1583 :let uk2nl.four = 'vier' | |
1584 :echo uk2nl | |
1585 < {'three': 'drie', 'four': 'vier', 'one': 'een', 'two': 'twee'} ~ | |
1586 | |
1587 And now for something special: you can directly define a function and store a | |
1588 reference to it in the dictionary: > | |
1589 | |
1590 :function uk2nl.translate(line) dict | |
1591 : return join(map(split(a:line), 'get(self, v:val, "???")')) | |
1592 :endfunction | |
1593 | |
1594 Let's first try it out: > | |
1595 | |
1596 :echo uk2nl.translate('three two five one') | |
1597 < drie twee ??? een ~ | |
1598 | |
1599 The first special thing you notice is the "dict" at the end of the ":function" | |
1600 line. This marks the function as being used from a Dictionary. The "self" | |
1601 local variable will then refer to that Dictionary. | |
1602 Now let's break up the complicated return command: > | |
1603 | |
1604 split(a:line) | |
1605 | |
2709 | 1606 The split() function takes a string, chops it into whitespace separated words |
161 | 1607 and returns a list with these words. Thus in the example it returns: > |
1608 | |
1609 :echo split('three two five one') | |
1610 < ['three', 'two', 'five', 'one'] ~ | |
1611 | |
1612 This list is the first argument to the map() function. This will go through | |
1613 the list, evaluating its second argument with "v:val" set to the value of each | |
1614 item. This is a shortcut to using a for loop. This command: > | |
1615 | |
1616 :let alist = map(split(a:line), 'get(self, v:val, "???")') | |
1617 | |
1618 Is equivalent to: > | |
1619 | |
1620 :let alist = split(a:line) | |
1621 :for idx in range(len(alist)) | |
1622 : let alist[idx] = get(self, alist[idx], "???") | |
1623 :endfor | |
1624 | |
1625 The get() function checks if a key is present in a Dictionary. If it is, then | |
1626 the value is retrieved. If it isn't, then the default value is returned, in | |
164 | 1627 the example it's '???'. This is a convenient way to handle situations where a |
161 | 1628 key may not be present and you don't want an error message. |
1629 | |
1630 The join() function does the opposite of split(): it joins together a list of | |
1631 words, putting a space in between. | |
1632 This combination of split(), map() and join() is a nice way to filter a line | |
1633 of words in a very compact way. | |
1634 | |
1635 | |
1636 OBJECT ORIENTED PROGRAMMING | |
1637 | |
1638 Now that you can put both values and functions in a Dictionary, you can | |
1639 actually use a Dictionary like an object. | |
1640 Above we used a Dictionary for translating Dutch to English. We might want | |
1641 to do the same for other languages. Let's first make an object (aka | |
1642 Dictionary) that has the translate function, but no words to translate: > | |
1643 | |
1644 :let transdict = {} | |
1645 :function transdict.translate(line) dict | |
1646 : return join(map(split(a:line), 'get(self.words, v:val, "???")')) | |
1647 :endfunction | |
1648 | |
1649 It's slightly different from the function above, using 'self.words' to lookup | |
1650 word translations. But we don't have a self.words. Thus you could call this | |
1651 an abstract class. | |
1652 | |
1653 Now we can instantiate a Dutch translation object: > | |
1654 | |
1655 :let uk2nl = copy(transdict) | |
1656 :let uk2nl.words = {'one': 'een', 'two': 'twee', 'three': 'drie'} | |
1657 :echo uk2nl.translate('three one') | |
1658 < drie een ~ | |
1659 | |
1660 And a German translator: > | |
1661 | |
1662 :let uk2de = copy(transdict) | |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1663 :let uk2de.words = {'one': 'eins', 'two': 'zwei', 'three': 'drei'} |
161 | 1664 :echo uk2de.translate('three one') |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
1665 < drei eins ~ |
161 | 1666 |
1667 You see that the copy() function is used to make a copy of the "transdict" | |
1668 Dictionary and then the copy is changed to add the words. The original | |
1669 remains the same, of course. | |
1670 | |
1671 Now you can go one step further, and use your preferred translator: > | |
1672 | |
1673 :if $LANG =~ "de" | |
1674 : let trans = uk2de | |
1675 :else | |
1676 : let trans = uk2nl | |
1677 :endif | |
1678 :echo trans.translate('one two three') | |
1679 < een twee drie ~ | |
1680 | |
1681 Here "trans" refers to one of the two objects (Dictionaries). No copy is | |
1682 made. More about List and Dictionary identity can be found at |list-identity| | |
1683 and |dict-identity|. | |
1684 | |
1685 Now you might use a language that isn't supported. You can overrule the | |
1686 translate() function to do nothing: > | |
1687 | |
1688 :let uk2uk = copy(transdict) | |
1689 :function! uk2uk.translate(line) | |
1690 : return a:line | |
1691 :endfunction | |
1692 :echo uk2uk.translate('three one wladiwostok') | |
1693 < three one wladiwostok ~ | |
1694 | |
1695 Notice that a ! was used to overwrite the existing function reference. Now | |
1696 use "uk2uk" when no recognized language is found: > | |
1697 | |
1698 :if $LANG =~ "de" | |
1699 : let trans = uk2de | |
1700 :elseif $LANG =~ "nl" | |
1701 : let trans = uk2nl | |
1702 :else | |
1703 : let trans = uk2uk | |
1704 :endif | |
1705 :echo trans.translate('one two three') | |
1706 < one two three ~ | |
1707 | |
1708 For further reading see |Lists| and |Dictionaries|. | |
1709 | |
1710 ============================================================================== | |
1711 *41.9* Exceptions | |
7 | 1712 |
1713 Let's start with an example: > | |
1714 | |
1715 :try | |
1716 : read ~/templates/pascal.tmpl | |
1717 :catch /E484:/ | |
1718 : echo "Sorry, the Pascal template file cannot be found." | |
1719 :endtry | |
1720 | |
1721 The ":read" command will fail if the file does not exist. Instead of | |
1722 generating an error message, this code catches the error and gives the user a | |
2709 | 1723 nice message. |
7 | 1724 |
1725 For the commands in between ":try" and ":endtry" errors are turned into | |
1726 exceptions. An exception is a string. In the case of an error the string | |
1727 contains the error message. And every error message has a number. In this | |
1728 case, the error we catch contains "E484:". This number is guaranteed to stay | |
1729 the same (the text may change, e.g., it may be translated). | |
1730 | |
1731 When the ":read" command causes another error, the pattern "E484:" will not | |
1732 match in it. Thus this exception will not be caught and result in the usual | |
1733 error message. | |
1734 | |
1735 You might be tempted to do this: > | |
1736 | |
1737 :try | |
1738 : read ~/templates/pascal.tmpl | |
1739 :catch | |
1740 : echo "Sorry, the Pascal template file cannot be found." | |
1741 :endtry | |
1742 | |
1743 This means all errors are caught. But then you will not see errors that are | |
1744 useful, such as "E21: Cannot make changes, 'modifiable' is off". | |
1745 | |
1746 Another useful mechanism is the ":finally" command: > | |
1747 | |
1748 :let tmp = tempname() | |
1749 :try | |
22171 | 1750 : exe ".,$write " .. tmp |
1751 : exe "!filter " .. tmp | |
7 | 1752 : .,$delete |
22171 | 1753 : exe "$read " .. tmp |
7 | 1754 :finally |
1755 : call delete(tmp) | |
1756 :endtry | |
1757 | |
1758 This filters the lines from the cursor until the end of the file through the | |
1759 "filter" command, which takes a file name argument. No matter if the | |
1760 filtering works, something goes wrong in between ":try" and ":finally" or the | |
1761 user cancels the filtering by pressing CTRL-C, the "call delete(tmp)" is | |
1762 always executed. This makes sure you don't leave the temporary file behind. | |
1763 | |
1764 More information about exception handling can be found in the reference | |
1765 manual: |exception-handling|. | |
1766 | |
1767 ============================================================================== | |
161 | 1768 *41.10* Various remarks |
7 | 1769 |
1770 Here is a summary of items that apply to Vim scripts. They are also mentioned | |
1771 elsewhere, but form a nice checklist. | |
1772 | |
1773 The end-of-line character depends on the system. For Unix a single <NL> | |
23305 | 1774 character is used. For MS-Windows and the like, <CR><NL> is used. This is |
18912
ccd16426a1f9
patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
1775 important when using mappings that end in a <CR>. See |:source_crnl|. |
7 | 1776 |
1777 | |
1778 WHITE SPACE | |
1779 | |
1780 Blank lines are allowed and ignored. | |
1781 | |
1782 Leading whitespace characters (blanks and TABs) are always ignored. The | |
11062 | 1783 whitespaces between parameters (e.g. between the "set" and the "cpoptions" in |
7 | 1784 the example below) are reduced to one blank character and plays the role of a |
1785 separator, the whitespaces after the last (visible) character may or may not | |
1786 be ignored depending on the situation, see below. | |
1787 | |
1788 For a ":set" command involving the "=" (equal) sign, such as in: > | |
1789 | |
1790 :set cpoptions =aABceFst | |
1791 | |
1792 the whitespace immediately before the "=" sign is ignored. But there can be | |
1793 no whitespace after the "=" sign! | |
1794 | |
1795 To include a whitespace character in the value of an option, it must be | |
1796 escaped by a "\" (backslash) as in the following example: > | |
1797 | |
1798 :set tags=my\ nice\ file | |
1799 | |
2709 | 1800 The same example written as: > |
7 | 1801 |
1802 :set tags=my nice file | |
1803 | |
1804 will issue an error, because it is interpreted as: > | |
1805 | |
1806 :set tags=my | |
1807 :set nice | |
1808 :set file | |
1809 | |
1810 | |
1811 COMMENTS | |
1812 | |
1813 The character " (the double quote mark) starts a comment. Everything after | |
1814 and including this character until the end-of-line is considered a comment and | |
1815 is ignored, except for commands that don't consider comments, as shown in | |
1816 examples below. A comment can start on any character position on the line. | |
1817 | |
1818 There is a little "catch" with comments for some commands. Examples: > | |
1819 | |
1820 :abbrev dev development " shorthand | |
1821 :map <F3> o#include " insert include | |
1822 :execute cmd " do it | |
1823 :!ls *.c " list C files | |
1824 | |
1825 The abbreviation 'dev' will be expanded to 'development " shorthand'. The | |
1826 mapping of <F3> will actually be the whole line after the 'o# ....' including | |
1827 the '" insert include'. The "execute" command will give an error. The "!" | |
1828 command will send everything after it to the shell, causing an error for an | |
1829 unmatched '"' character. | |
1830 There can be no comment after ":map", ":abbreviate", ":execute" and "!" | |
1831 commands (there are a few more commands with this restriction). For the | |
1832 ":map", ":abbreviate" and ":execute" commands there is a trick: > | |
1833 | |
1834 :abbrev dev development|" shorthand | |
1835 :map <F3> o#include|" insert include | |
1836 :execute cmd |" do it | |
1837 | |
1838 With the '|' character the command is separated from the next one. And that | |
1146 | 1839 next command is only a comment. For the last command you need to do two |
1840 things: |:execute| and use '|': > | |
1841 :exe '!ls *.c' |" list C files | |
7 | 1842 |
1843 Notice that there is no white space before the '|' in the abbreviation and | |
1844 mapping. For these commands, any character until the end-of-line or '|' is | |
1845 included. As a consequence of this behavior, you don't always see that | |
1846 trailing whitespace is included: > | |
1847 | |
1848 :map <F4> o#include | |
1849 | |
1146 | 1850 To spot these problems, you can set the 'list' option when editing vimrc |
7 | 1851 files. |
1852 | |
1146 | 1853 For Unix there is one special way to comment a line, that allows making a Vim |
1854 script executable: > | |
1855 #!/usr/bin/env vim -S | |
1856 echo "this is a Vim script" | |
1857 quit | |
1858 | |
1859 The "#" command by itself lists a line with the line number. Adding an | |
1860 exclamation mark changes it into doing nothing, so that you can add the shell | |
1861 command to execute the rest of the file. |:#!| |-S| | |
1862 | |
7 | 1863 |
1864 PITFALLS | |
1865 | |
1866 Even bigger problem arises in the following example: > | |
1867 | |
1868 :map ,ab o#include | |
1869 :unmap ,ab | |
1870 | |
1871 Here the unmap command will not work, because it tries to unmap ",ab ". This | |
1872 does not exist as a mapped sequence. An error will be issued, which is very | |
1873 hard to identify, because the ending whitespace character in ":unmap ,ab " is | |
1874 not visible. | |
1875 | |
1876 And this is the same as what happens when one uses a comment after an 'unmap' | |
1877 command: > | |
1878 | |
1879 :unmap ,ab " comment | |
1880 | |
1881 Here the comment part will be ignored. However, Vim will try to unmap | |
1882 ',ab ', which does not exist. Rewrite it as: > | |
1883 | |
1884 :unmap ,ab| " comment | |
1885 | |
1886 | |
1887 RESTORING THE VIEW | |
1888 | |
3893 | 1889 Sometimes you want to make a change and go back to where the cursor was. |
7 | 1890 Restoring the relative position would also be nice, so that the same line |
1891 appears at the top of the window. | |
1892 This example yanks the current line, puts it above the first line in the | |
1893 file and then restores the view: > | |
1894 | |
1895 map ,p ma"aYHmbgg"aP`bzt`a | |
1896 | |
1897 What this does: > | |
1898 ma"aYHmbgg"aP`bzt`a | |
1899 < ma set mark a at cursor position | |
1900 "aY yank current line into register a | |
1901 Hmb go to top line in window and set mark b there | |
1902 gg go to first line in file | |
1903 "aP put the yanked line above it | |
1904 `b go back to top line in display | |
1905 zt position the text in the window as before | |
1906 `a go back to saved cursor position | |
1907 | |
1908 | |
1909 PACKAGING | |
1910 | |
1911 To avoid your function names to interfere with functions that you get from | |
1912 others, use this scheme: | |
1913 - Prepend a unique string before each function name. I often use an | |
1914 abbreviation. For example, "OW_" is used for the option window functions. | |
1915 - Put the definition of your functions together in a file. Set a global | |
1916 variable to indicate that the functions have been loaded. When sourcing the | |
1917 file again, first unload the functions. | |
1918 Example: > | |
1919 | |
1920 " This is the XXX package | |
1921 | |
1922 if exists("XXX_loaded") | |
1923 delfun XXX_one | |
1924 delfun XXX_two | |
1925 endif | |
1926 | |
1927 function XXX_one(a) | |
1928 ... body of function ... | |
1929 endfun | |
1930 | |
1931 function XXX_two(b) | |
1932 ... body of function ... | |
1933 endfun | |
1934 | |
1935 let XXX_loaded = 1 | |
1936 | |
1937 ============================================================================== | |
161 | 1938 *41.11* Writing a plugin *write-plugin* |
7 | 1939 |
1940 You can write a Vim script in such a way that many people can use it. This is | |
1941 called a plugin. Vim users can drop your script in their plugin directory and | |
1942 use its features right away |add-plugin|. | |
1943 | |
1944 There are actually two types of plugins: | |
1945 | |
1946 global plugins: For all types of files. | |
1947 filetype plugins: Only for files of a specific type. | |
1948 | |
1949 In this section the first type is explained. Most items are also relevant for | |
1950 writing filetype plugins. The specifics for filetype plugins are in the next | |
1951 section |write-filetype-plugin|. | |
1952 | |
1953 | |
1954 NAME | |
1955 | |
1956 First of all you must choose a name for your plugin. The features provided | |
1957 by the plugin should be clear from its name. And it should be unlikely that | |
1958 someone else writes a plugin with the same name but which does something | |
1959 different. And please limit the name to 8 characters, to avoid problems on | |
18912
ccd16426a1f9
patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
1960 old MS-Windows systems. |
7 | 1961 |
1962 A script that corrects typing mistakes could be called "typecorr.vim". We | |
1963 will use it here as an example. | |
1964 | |
1965 For the plugin to work for everybody, it should follow a few guidelines. This | |
1966 will be explained step-by-step. The complete example plugin is at the end. | |
1967 | |
1968 | |
1969 BODY | |
1970 | |
1971 Let's start with the body of the plugin, the lines that do the actual work: > | |
1972 | |
1973 14 iabbrev teh the | |
1974 15 iabbrev otehr other | |
1975 16 iabbrev wnat want | |
1976 17 iabbrev synchronisation | |
1977 18 \ synchronization | |
1978 19 let s:count = 4 | |
1979 | |
1980 The actual list should be much longer, of course. | |
1981 | |
1982 The line numbers have only been added to explain a few things, don't put them | |
1983 in your plugin file! | |
1984 | |
1985 | |
1986 HEADER | |
1987 | |
1988 You will probably add new corrections to the plugin and soon have several | |
3830 | 1989 versions lying around. And when distributing this file, people will want to |
7 | 1990 know who wrote this wonderful plugin and where they can send remarks. |
1991 Therefore, put a header at the top of your plugin: > | |
1992 | |
1993 1 " Vim global plugin for correcting typing mistakes | |
1994 2 " Last Change: 2000 Oct 15 | |
1995 3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
1996 | |
1997 About copyright and licensing: Since plugins are very useful and it's hardly | |
1998 worth restricting their distribution, please consider making your plugin | |
1999 either public domain or use the Vim |license|. A short note about this near | |
2000 the top of the plugin should be sufficient. Example: > | |
2001 | |
2002 4 " License: This file is placed in the public domain. | |
2003 | |
2004 | |
2005 LINE CONTINUATION, AVOIDING SIDE EFFECTS *use-cpo-save* | |
2006 | |
2007 In line 18 above, the line-continuation mechanism is used |line-continuation|. | |
2008 Users with 'compatible' set will run into trouble here, they will get an error | |
2009 message. We can't just reset 'compatible', because that has a lot of side | |
2010 effects. To avoid this, we will set the 'cpoptions' option to its Vim default | |
2011 value and restore it later. That will allow the use of line-continuation and | |
2012 make the script work for most people. It is done like this: > | |
2013 | |
2014 11 let s:save_cpo = &cpo | |
2015 12 set cpo&vim | |
2016 .. | |
2017 42 let &cpo = s:save_cpo | |
3445 | 2018 43 unlet s:save_cpo |
7 | 2019 |
2020 We first store the old value of 'cpoptions' in the s:save_cpo variable. At | |
2021 the end of the plugin this value is restored. | |
2022 | |
2023 Notice that a script-local variable is used |s:var|. A global variable could | |
2024 already be in use for something else. Always use script-local variables for | |
2025 things that are only used in the script. | |
2026 | |
2027 | |
2028 NOT LOADING | |
2029 | |
2030 It's possible that a user doesn't always want to load this plugin. Or the | |
2031 system administrator has dropped it in the system-wide plugin directory, but a | |
2032 user has his own plugin he wants to use. Then the user must have a chance to | |
2033 disable loading this specific plugin. This will make it possible: > | |
2034 | |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2035 6 if exists("g:loaded_typecorr") |
7 | 2036 7 finish |
2037 8 endif | |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2038 9 let g:loaded_typecorr = 1 |
7 | 2039 |
2040 This also avoids that when the script is loaded twice it would cause error | |
2041 messages for redefining functions and cause trouble for autocommands that are | |
2042 added twice. | |
2043 | |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2044 The name is recommended to start with "loaded_" and then the file name of the |
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2045 plugin, literally. The "g:" is prepended just to avoid mistakes when using |
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2046 the variable in a function (without "g:" it would be a variable local to the |
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2047 function). |
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2048 |
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2049 Using "finish" stops Vim from reading the rest of the file, it's much quicker |
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2050 than using if-endif around the whole file. |
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2051 |
7 | 2052 |
2053 MAPPING | |
2054 | |
2055 Now let's make the plugin more interesting: We will add a mapping that adds a | |
2056 correction for the word under the cursor. We could just pick a key sequence | |
2057 for this mapping, but the user might already use it for something else. To | |
2058 allow the user to define which keys a mapping in a plugin uses, the <Leader> | |
2059 item can be used: > | |
2060 | |
21825 | 2061 22 map <unique> <Leader>a <Plug>TypecorrAdd; |
2062 | |
2063 The "<Plug>TypecorrAdd;" thing will do the work, more about that further on. | |
7 | 2064 |
2065 The user can set the "mapleader" variable to the key sequence that he wants | |
2066 this mapping to start with. Thus if the user has done: > | |
2067 | |
2068 let mapleader = "_" | |
2069 | |
2070 the mapping will define "_a". If the user didn't do this, the default value | |
2071 will be used, which is a backslash. Then a map for "\a" will be defined. | |
2072 | |
2073 Note that <unique> is used, this will cause an error message if the mapping | |
2074 already happened to exist. |:map-<unique>| | |
2075 | |
2076 But what if the user wants to define his own key sequence? We can allow that | |
2077 with this mechanism: > | |
2078 | |
21825 | 2079 21 if !hasmapto('<Plug>TypecorrAdd;') |
2080 22 map <unique> <Leader>a <Plug>TypecorrAdd; | |
7 | 2081 23 endif |
2082 | |
21991 | 2083 This checks if a mapping to "<Plug>TypecorrAdd;" already exists, and only |
7 | 2084 defines the mapping from "<Leader>a" if it doesn't. The user then has a |
2085 chance of putting this in his vimrc file: > | |
2086 | |
21825 | 2087 map ,c <Plug>TypecorrAdd; |
7 | 2088 |
2089 Then the mapped key sequence will be ",c" instead of "_a" or "\a". | |
2090 | |
2091 | |
2092 PIECES | |
2093 | |
2094 If a script gets longer, you often want to break up the work in pieces. You | |
2095 can use functions or mappings for this. But you don't want these functions | |
2096 and mappings to interfere with the ones from other scripts. For example, you | |
2097 could define a function Add(), but another script could try to define the same | |
2098 function. To avoid this, we define the function local to the script by | |
2099 prepending it with "s:". | |
2100 | |
2101 We will define a function that adds a new typing correction: > | |
2102 | |
2103 30 function s:Add(from, correct) | |
22171 | 2104 31 let to = input("type the correction for " .. a:from .. ": ") |
2105 32 exe ":iabbrev " .. a:from .. " " .. to | |
7 | 2106 .. |
2107 36 endfunction | |
2108 | |
2109 Now we can call the function s:Add() from within this script. If another | |
2110 script also defines s:Add(), it will be local to that script and can only | |
2111 be called from the script it was defined in. There can also be a global Add() | |
2112 function (without the "s:"), which is again another function. | |
2113 | |
2114 <SID> can be used with mappings. It generates a script ID, which identifies | |
2115 the current script. In our typing correction plugin we use it like this: > | |
2116 | |
21825 | 2117 24 noremap <unique> <script> <Plug>TypecorrAdd; <SID>Add |
7 | 2118 .. |
2119 28 noremap <SID>Add :call <SID>Add(expand("<cword>"), 1)<CR> | |
2120 | |
2121 Thus when a user types "\a", this sequence is invoked: > | |
2122 | |
21825 | 2123 \a -> <Plug>TypecorrAdd; -> <SID>Add -> :call <SID>Add() |
2124 | |
2125 If another script also maps <SID>Add, it will get another script ID and | |
7 | 2126 thus define another mapping. |
2127 | |
2128 Note that instead of s:Add() we use <SID>Add() here. That is because the | |
2129 mapping is typed by the user, thus outside of the script. The <SID> is | |
2130 translated to the script ID, so that Vim knows in which script to look for | |
2131 the Add() function. | |
2132 | |
2133 This is a bit complicated, but it's required for the plugin to work together | |
2134 with other plugins. The basic rule is that you use <SID>Add() in mappings and | |
2135 s:Add() in other places (the script itself, autocommands, user commands). | |
2136 | |
2137 We can also add a menu entry to do the same as the mapping: > | |
2138 | |
2139 26 noremenu <script> Plugin.Add\ Correction <SID>Add | |
2140 | |
2141 The "Plugin" menu is recommended for adding menu items for plugins. In this | |
2142 case only one item is used. When adding more items, creating a submenu is | |
2143 recommended. For example, "Plugin.CVS" could be used for a plugin that offers | |
2144 CVS operations "Plugin.CVS.checkin", "Plugin.CVS.checkout", etc. | |
2145 | |
2146 Note that in line 28 ":noremap" is used to avoid that any other mappings cause | |
2147 trouble. Someone may have remapped ":call", for example. In line 24 we also | |
2148 use ":noremap", but we do want "<SID>Add" to be remapped. This is why | |
2149 "<script>" is used here. This only allows mappings which are local to the | |
2150 script. |:map-<script>| The same is done in line 26 for ":noremenu". | |
2151 |:menu-<script>| | |
2152 | |
2153 | |
2154 <SID> AND <Plug> *using-<Plug>* | |
2155 | |
2156 Both <SID> and <Plug> are used to avoid that mappings of typed keys interfere | |
2157 with mappings that are only to be used from other mappings. Note the | |
2158 difference between using <SID> and <Plug>: | |
2159 | |
2160 <Plug> is visible outside of the script. It is used for mappings which the | |
2161 user might want to map a key sequence to. <Plug> is a special code | |
2162 that a typed key will never produce. | |
2163 To make it very unlikely that other plugins use the same sequence of | |
2164 characters, use this structure: <Plug> scriptname mapname | |
2165 In our example the scriptname is "Typecorr" and the mapname is "Add". | |
21825 | 2166 We add a semicolon as the terminator. This results in |
2167 "<Plug>TypecorrAdd;". Only the first character of scriptname and | |
2168 mapname is uppercase, so that we can see where mapname starts. | |
7 | 2169 |
2170 <SID> is the script ID, a unique identifier for a script. | |
2171 Internally Vim translates <SID> to "<SNR>123_", where "123" can be any | |
2172 number. Thus a function "<SID>Add()" will have a name "<SNR>11_Add()" | |
2173 in one script, and "<SNR>22_Add()" in another. You can see this if | |
2174 you use the ":function" command to get a list of functions. The | |
2175 translation of <SID> in mappings is exactly the same, that's how you | |
2176 can call a script-local function from a mapping. | |
2177 | |
2178 | |
2179 USER COMMAND | |
2180 | |
2181 Now let's add a user command to add a correction: > | |
2182 | |
2183 38 if !exists(":Correct") | |
2184 39 command -nargs=1 Correct :call s:Add(<q-args>, 0) | |
2185 40 endif | |
2186 | |
2187 The user command is defined only if no command with the same name already | |
2188 exists. Otherwise we would get an error here. Overriding the existing user | |
2189 command with ":command!" is not a good idea, this would probably make the user | |
2190 wonder why the command he defined himself doesn't work. |:command| | |
2191 | |
2192 | |
2193 SCRIPT VARIABLES | |
2194 | |
2195 When a variable starts with "s:" it is a script variable. It can only be used | |
2196 inside a script. Outside the script it's not visible. This avoids trouble | |
2197 with using the same variable name in different scripts. The variables will be | |
2198 kept as long as Vim is running. And the same variables are used when sourcing | |
2199 the same script again. |s:var| | |
2200 | |
2201 The fun is that these variables can also be used in functions, autocommands | |
2202 and user commands that are defined in the script. In our example we can add | |
2203 a few lines to count the number of corrections: > | |
2204 | |
2205 19 let s:count = 4 | |
2206 .. | |
2207 30 function s:Add(from, correct) | |
2208 .. | |
2209 34 let s:count = s:count + 1 | |
22171 | 2210 35 echo s:count .. " corrections now" |
7 | 2211 36 endfunction |
2212 | |
2213 First s:count is initialized to 4 in the script itself. When later the | |
2214 s:Add() function is called, it increments s:count. It doesn't matter from | |
2215 where the function was called, since it has been defined in the script, it | |
2216 will use the local variables from this script. | |
2217 | |
2218 | |
2219 THE RESULT | |
2220 | |
2221 Here is the resulting complete example: > | |
2222 | |
2223 1 " Vim global plugin for correcting typing mistakes | |
2224 2 " Last Change: 2000 Oct 15 | |
2225 3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
2226 4 " License: This file is placed in the public domain. | |
2227 5 | |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2228 6 if exists("g:loaded_typecorr") |
7 | 2229 7 finish |
2230 8 endif | |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2301
diff
changeset
|
2231 9 let g:loaded_typecorr = 1 |
7 | 2232 10 |
2233 11 let s:save_cpo = &cpo | |
2234 12 set cpo&vim | |
2235 13 | |
2236 14 iabbrev teh the | |
2237 15 iabbrev otehr other | |
2238 16 iabbrev wnat want | |
2239 17 iabbrev synchronisation | |
2240 18 \ synchronization | |
2241 19 let s:count = 4 | |
2242 20 | |
21825 | 2243 21 if !hasmapto('<Plug>TypecorrAdd;') |
2244 22 map <unique> <Leader>a <Plug>TypecorrAdd; | |
7 | 2245 23 endif |
21825 | 2246 24 noremap <unique> <script> <Plug>TypecorrAdd; <SID>Add |
7 | 2247 25 |
2248 26 noremenu <script> Plugin.Add\ Correction <SID>Add | |
2249 27 | |
2250 28 noremap <SID>Add :call <SID>Add(expand("<cword>"), 1)<CR> | |
2251 29 | |
2252 30 function s:Add(from, correct) | |
22171 | 2253 31 let to = input("type the correction for " .. a:from .. ": ") |
2254 32 exe ":iabbrev " .. a:from .. " " .. to | |
7 | 2255 33 if a:correct | exe "normal viws\<C-R>\" \b\e" | endif |
2256 34 let s:count = s:count + 1 | |
22171 | 2257 35 echo s:count .. " corrections now" |
7 | 2258 36 endfunction |
2259 37 | |
2260 38 if !exists(":Correct") | |
2261 39 command -nargs=1 Correct :call s:Add(<q-args>, 0) | |
2262 40 endif | |
2263 41 | |
2264 42 let &cpo = s:save_cpo | |
3445 | 2265 43 unlet s:save_cpo |
7 | 2266 |
2267 Line 33 wasn't explained yet. It applies the new correction to the word under | |
2268 the cursor. The |:normal| command is used to use the new abbreviation. Note | |
2269 that mappings and abbreviations are expanded here, even though the function | |
2270 was called from a mapping defined with ":noremap". | |
2271 | |
2272 Using "unix" for the 'fileformat' option is recommended. The Vim scripts will | |
2273 then work everywhere. Scripts with 'fileformat' set to "dos" do not work on | |
2274 Unix. Also see |:source_crnl|. To be sure it is set right, do this before | |
2275 writing the file: > | |
2276 | |
2277 :set fileformat=unix | |
2278 | |
2279 | |
2280 DOCUMENTATION *write-local-help* | |
2281 | |
2282 It's a good idea to also write some documentation for your plugin. Especially | |
2283 when its behavior can be changed by the user. See |add-local-help| for how | |
2284 they are installed. | |
2285 | |
2286 Here is a simple example for a plugin help file, called "typecorr.txt": > | |
2287 | |
2288 1 *typecorr.txt* Plugin for correcting typing mistakes | |
2289 2 | |
2290 3 If you make typing mistakes, this plugin will have them corrected | |
2291 4 automatically. | |
2292 5 | |
2293 6 There are currently only a few corrections. Add your own if you like. | |
2294 7 | |
2295 8 Mappings: | |
21825 | 2296 9 <Leader>a or <Plug>TypecorrAdd; |
7 | 2297 10 Add a correction for the word under the cursor. |
2298 11 | |
2299 12 Commands: | |
2300 13 :Correct {word} | |
2301 14 Add a correction for {word}. | |
2302 15 | |
2303 16 *typecorr-settings* | |
2304 17 This plugin doesn't have any settings. | |
2305 | |
2306 The first line is actually the only one for which the format matters. It will | |
2307 be extracted from the help file to be put in the "LOCAL ADDITIONS:" section of | |
2308 help.txt |local-additions|. The first "*" must be in the first column of the | |
2309 first line. After adding your help file do ":help" and check that the entries | |
2310 line up nicely. | |
2311 | |
2312 You can add more tags inside ** in your help file. But be careful not to use | |
2313 existing help tags. You would probably use the name of your plugin in most of | |
2314 them, like "typecorr-settings" in the example. | |
2315 | |
2316 Using references to other parts of the help in || is recommended. This makes | |
2317 it easy for the user to find associated help. | |
2318 | |
2319 | |
2320 FILETYPE DETECTION *plugin-filetype* | |
2321 | |
2322 If your filetype is not already detected by Vim, you should create a filetype | |
2323 detection snippet in a separate file. It is usually in the form of an | |
2324 autocommand that sets the filetype when the file name matches a pattern. | |
2325 Example: > | |
2326 | |
2327 au BufNewFile,BufRead *.foo set filetype=foofoo | |
2328 | |
2329 Write this single-line file as "ftdetect/foofoo.vim" in the first directory | |
2330 that appears in 'runtimepath'. For Unix that would be | |
2331 "~/.vim/ftdetect/foofoo.vim". The convention is to use the name of the | |
2332 filetype for the script name. | |
2333 | |
2334 You can make more complicated checks if you like, for example to inspect the | |
2335 contents of the file to recognize the language. Also see |new-filetype|. | |
2336 | |
2337 | |
2338 SUMMARY *plugin-special* | |
2339 | |
2340 Summary of special things to use in a plugin: | |
2341 | |
2342 s:name Variables local to the script. | |
2343 | |
2344 <SID> Script-ID, used for mappings and functions local to | |
2345 the script. | |
2346 | |
2347 hasmapto() Function to test if the user already defined a mapping | |
2348 for functionality the script offers. | |
2349 | |
2350 <Leader> Value of "mapleader", which the user defines as the | |
2351 keys that plugin mappings start with. | |
2352 | |
2353 :map <unique> Give a warning if a mapping already exists. | |
2354 | |
2355 :noremap <script> Use only mappings local to the script, not global | |
2356 mappings. | |
2357 | |
2358 exists(":Cmd") Check if a user command already exists. | |
2359 | |
2360 ============================================================================== | |
161 | 2361 *41.12* Writing a filetype plugin *write-filetype-plugin* *ftplugin* |
7 | 2362 |
2363 A filetype plugin is like a global plugin, except that it sets options and | |
2364 defines mappings for the current buffer only. See |add-filetype-plugin| for | |
2365 how this type of plugin is used. | |
2366 | |
161 | 2367 First read the section on global plugins above |41.11|. All that is said there |
7 | 2368 also applies to filetype plugins. There are a few extras, which are explained |
2369 here. The essential thing is that a filetype plugin should only have an | |
2370 effect on the current buffer. | |
2371 | |
2372 | |
2373 DISABLING | |
2374 | |
2375 If you are writing a filetype plugin to be used by many people, they need a | |
2376 chance to disable loading it. Put this at the top of the plugin: > | |
2377 | |
2378 " Only do this when not done yet for this buffer | |
2379 if exists("b:did_ftplugin") | |
2380 finish | |
2381 endif | |
2382 let b:did_ftplugin = 1 | |
2383 | |
2384 This also needs to be used to avoid that the same plugin is executed twice for | |
2385 the same buffer (happens when using an ":edit" command without arguments). | |
2386 | |
2387 Now users can disable loading the default plugin completely by making a | |
2388 filetype plugin with only this line: > | |
2389 | |
2390 let b:did_ftplugin = 1 | |
2391 | |
2392 This does require that the filetype plugin directory comes before $VIMRUNTIME | |
2393 in 'runtimepath'! | |
2394 | |
2395 If you do want to use the default plugin, but overrule one of the settings, | |
2396 you can write the different setting in a script: > | |
2397 | |
2398 setlocal textwidth=70 | |
2399 | |
2400 Now write this in the "after" directory, so that it gets sourced after the | |
2401 distributed "vim.vim" ftplugin |after-directory|. For Unix this would be | |
2402 "~/.vim/after/ftplugin/vim.vim". Note that the default plugin will have set | |
2403 "b:did_ftplugin", but it is ignored here. | |
2404 | |
2405 | |
2406 OPTIONS | |
2407 | |
2408 To make sure the filetype plugin only affects the current buffer use the > | |
2409 | |
2410 :setlocal | |
2411 | |
2412 command to set options. And only set options which are local to a buffer (see | |
2413 the help for the option to check that). When using |:setlocal| for global | |
2414 options or options local to a window, the value will change for many buffers, | |
2415 and that is not what a filetype plugin should do. | |
2416 | |
2417 When an option has a value that is a list of flags or items, consider using | |
2418 "+=" and "-=" to keep the existing value. Be aware that the user may have | |
2419 changed an option value already. First resetting to the default value and | |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2662
diff
changeset
|
2420 then changing it is often a good idea. Example: > |
7 | 2421 |
2422 :setlocal formatoptions& formatoptions+=ro | |
2423 | |
2424 | |
2425 MAPPINGS | |
2426 | |
2427 To make sure mappings will only work in the current buffer use the > | |
2428 | |
2429 :map <buffer> | |
2430 | |
2431 command. This needs to be combined with the two-step mapping explained above. | |
2432 An example of how to define functionality in a filetype plugin: > | |
2433 | |
21825 | 2434 if !hasmapto('<Plug>JavaImport;') |
2435 map <buffer> <unique> <LocalLeader>i <Plug>JavaImport; | |
7 | 2436 endif |
21825 | 2437 noremap <buffer> <unique> <Plug>JavaImport; oimport ""<Left><Esc> |
7 | 2438 |
2439 |hasmapto()| is used to check if the user has already defined a map to | |
21825 | 2440 <Plug>JavaImport;. If not, then the filetype plugin defines the default |
7 | 2441 mapping. This starts with |<LocalLeader>|, which allows the user to select |
2442 the key(s) he wants filetype plugin mappings to start with. The default is a | |
2443 backslash. | |
2444 "<unique>" is used to give an error message if the mapping already exists or | |
2445 overlaps with an existing mapping. | |
2446 |:noremap| is used to avoid that any other mappings that the user has defined | |
2447 interferes. You might want to use ":noremap <script>" to allow remapping | |
2448 mappings defined in this script that start with <SID>. | |
2449 | |
2450 The user must have a chance to disable the mappings in a filetype plugin, | |
2451 without disabling everything. Here is an example of how this is done for a | |
2452 plugin for the mail filetype: > | |
2453 | |
2454 " Add mappings, unless the user didn't want this. | |
2455 if !exists("no_plugin_maps") && !exists("no_mail_maps") | |
2456 " Quote text by inserting "> " | |
21825 | 2457 if !hasmapto('<Plug>MailQuote;') |
2458 vmap <buffer> <LocalLeader>q <Plug>MailQuote; | |
2459 nmap <buffer> <LocalLeader>q <Plug>MailQuote; | |
7 | 2460 endif |
21825 | 2461 vnoremap <buffer> <Plug>MailQuote; :s/^/> /<CR> |
2462 nnoremap <buffer> <Plug>MailQuote; :.,$s/^/> /<CR> | |
7 | 2463 endif |
2464 | |
2465 Two global variables are used: | |
11262 | 2466 |no_plugin_maps| disables mappings for all filetype plugins |
2467 |no_mail_maps| disables mappings for the "mail" filetype | |
7 | 2468 |
2469 | |
2470 USER COMMANDS | |
2471 | |
2472 To add a user command for a specific file type, so that it can only be used in | |
2473 one buffer, use the "-buffer" argument to |:command|. Example: > | |
2474 | |
2475 :command -buffer Make make %:r.s | |
2476 | |
2477 | |
2478 VARIABLES | |
2479 | |
2480 A filetype plugin will be sourced for each buffer of the type it's for. Local | |
2481 script variables |s:var| will be shared between all invocations. Use local | |
2482 buffer variables |b:var| if you want a variable specifically for one buffer. | |
2483 | |
2484 | |
2485 FUNCTIONS | |
2486 | |
2487 When defining a function, this only needs to be done once. But the filetype | |
2488 plugin will be sourced every time a file with this filetype will be opened. | |
2207
b17bbfa96fa0
Add the settabvar() and gettabvar() functions.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
2489 This construct makes sure the function is only defined once: > |
7 | 2490 |
2491 :if !exists("*s:Func") | |
2492 : function s:Func(arg) | |
2493 : ... | |
2494 : endfunction | |
2495 :endif | |
2496 < | |
2497 | |
8061
abd64cf67bcf
commit https://github.com/vim/vim/commit/38a55639d603823efcf2d2fdf542dbffdeb60b75
Christian Brabandt <cb@256bit.org>
parents:
7924
diff
changeset
|
2498 UNDO *undo_indent* *undo_ftplugin* |
7 | 2499 |
2500 When the user does ":setfiletype xyz" the effect of the previous filetype | |
2501 should be undone. Set the b:undo_ftplugin variable to the commands that will | |
2502 undo the settings in your filetype plugin. Example: > | |
2503 | |
2504 let b:undo_ftplugin = "setlocal fo< com< tw< commentstring<" | |
22171 | 2505 \ .. "| unlet b:match_ignorecase b:match_words b:match_skip" |
7 | 2506 |
2507 Using ":setlocal" with "<" after the option name resets the option to its | |
2508 global value. That is mostly the best way to reset the option value. | |
2509 | |
2510 This does require removing the "C" flag from 'cpoptions' to allow line | |
2511 continuation, as mentioned above |use-cpo-save|. | |
2512 | |
8061
abd64cf67bcf
commit https://github.com/vim/vim/commit/38a55639d603823efcf2d2fdf542dbffdeb60b75
Christian Brabandt <cb@256bit.org>
parents:
7924
diff
changeset
|
2513 For undoing the effect of an indent script, the b:undo_indent variable should |
abd64cf67bcf
commit https://github.com/vim/vim/commit/38a55639d603823efcf2d2fdf542dbffdeb60b75
Christian Brabandt <cb@256bit.org>
parents:
7924
diff
changeset
|
2514 be set accordingly. |
abd64cf67bcf
commit https://github.com/vim/vim/commit/38a55639d603823efcf2d2fdf542dbffdeb60b75
Christian Brabandt <cb@256bit.org>
parents:
7924
diff
changeset
|
2515 |
7 | 2516 |
2517 FILE NAME | |
2518 | |
2519 The filetype must be included in the file name |ftplugin-name|. Use one of | |
2520 these three forms: | |
2521 | |
2522 .../ftplugin/stuff.vim | |
2523 .../ftplugin/stuff_foo.vim | |
2524 .../ftplugin/stuff/bar.vim | |
2525 | |
2526 "stuff" is the filetype, "foo" and "bar" are arbitrary names. | |
2527 | |
2528 | |
2529 SUMMARY *ftplugin-special* | |
2530 | |
2531 Summary of special things to use in a filetype plugin: | |
2532 | |
2533 <LocalLeader> Value of "maplocalleader", which the user defines as | |
2534 the keys that filetype plugin mappings start with. | |
2535 | |
2536 :map <buffer> Define a mapping local to the buffer. | |
2537 | |
2538 :noremap <script> Only remap mappings defined in this script that start | |
2539 with <SID>. | |
2540 | |
2541 :setlocal Set an option for the current buffer only. | |
2542 | |
2543 :command -buffer Define a user command local to the buffer. | |
2544 | |
2545 exists("*s:Func") Check if a function was already defined. | |
2546 | |
2547 Also see |plugin-special|, the special things used for all plugins. | |
2548 | |
2549 ============================================================================== | |
161 | 2550 *41.13* Writing a compiler plugin *write-compiler-plugin* |
7 | 2551 |
2552 A compiler plugin sets options for use with a specific compiler. The user can | |
2553 load it with the |:compiler| command. The main use is to set the | |
2554 'errorformat' and 'makeprg' options. | |
2555 | |
2556 Easiest is to have a look at examples. This command will edit all the default | |
2557 compiler plugins: > | |
2558 | |
2559 :next $VIMRUNTIME/compiler/*.vim | |
2560 | |
2561 Use |:next| to go to the next plugin file. | |
2562 | |
2563 There are two special items about these files. First is a mechanism to allow | |
2564 a user to overrule or add to the default file. The default files start with: > | |
2565 | |
2566 :if exists("current_compiler") | |
2567 : finish | |
2568 :endif | |
2569 :let current_compiler = "mine" | |
2570 | |
2571 When you write a compiler file and put it in your personal runtime directory | |
2572 (e.g., ~/.vim/compiler for Unix), you set the "current_compiler" variable to | |
2573 make the default file skip the settings. | |
570 | 2574 *:CompilerSet* |
7 | 2575 The second mechanism is to use ":set" for ":compiler!" and ":setlocal" for |
2576 ":compiler". Vim defines the ":CompilerSet" user command for this. However, | |
2577 older Vim versions don't, thus your plugin should define it then. This is an | |
2578 example: > | |
2579 | |
2580 if exists(":CompilerSet") != 2 | |
2581 command -nargs=* CompilerSet setlocal <args> | |
2582 endif | |
2583 CompilerSet errorformat& " use the default 'errorformat' | |
2584 CompilerSet makeprg=nmake | |
2585 | |
2586 When you write a compiler plugin for the Vim distribution or for a system-wide | |
2587 runtime directory, use the mechanism mentioned above. When | |
2588 "current_compiler" was already set by a user plugin nothing will be done. | |
2589 | |
2590 When you write a compiler plugin to overrule settings from a default plugin, | |
2591 don't check "current_compiler". This plugin is supposed to be loaded | |
2592 last, thus it should be in a directory at the end of 'runtimepath'. For Unix | |
2593 that could be ~/.vim/after/compiler. | |
2594 | |
2595 ============================================================================== | |
170 | 2596 *41.14* Writing a plugin that loads quickly *write-plugin-quickload* |
2597 | |
2598 A plugin may grow and become quite long. The startup delay may become | |
1620 | 2599 noticeable, while you hardly ever use the plugin. Then it's time for a |
170 | 2600 quickload plugin. |
2601 | |
2602 The basic idea is that the plugin is loaded twice. The first time user | |
2603 commands and mappings are defined that offer the functionality. The second | |
2604 time the functions that implement the functionality are defined. | |
2605 | |
2606 It may sound surprising that quickload means loading a script twice. What we | |
2607 mean is that it loads quickly the first time, postponing the bulk of the | |
2608 script to the second time, which only happens when you actually use it. When | |
2609 you always use the functionality it actually gets slower! | |
2610 | |
793 | 2611 Note that since Vim 7 there is an alternative: use the |autoload| |
2612 functionality |41.15|. | |
2613 | |
170 | 2614 The following example shows how it's done: > |
2615 | |
2616 " Vim global plugin for demonstrating quick loading | |
2617 " Last Change: 2005 Feb 25 | |
2618 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
2619 " License: This file is placed in the public domain. | |
2620 | |
2621 if !exists("s:did_load") | |
2622 command -nargs=* BNRead call BufNetRead(<f-args>) | |
2623 map <F19> :call BufNetWrite('something')<CR> | |
2624 | |
2625 let s:did_load = 1 | |
22171 | 2626 exe 'au FuncUndefined BufNet* source ' .. expand('<sfile>') |
170 | 2627 finish |
2628 endif | |
2629 | |
2630 function BufNetRead(...) | |
22171 | 2631 echo 'BufNetRead(' .. string(a:000) .. ')' |
170 | 2632 " read functionality here |
2633 endfunction | |
2634 | |
2635 function BufNetWrite(...) | |
22171 | 2636 echo 'BufNetWrite(' .. string(a:000) .. ')' |
170 | 2637 " write functionality here |
2638 endfunction | |
2639 | |
2640 When the script is first loaded "s:did_load" is not set. The commands between | |
2641 the "if" and "endif" will be executed. This ends in a |:finish| command, thus | |
2642 the rest of the script is not executed. | |
2643 | |
2644 The second time the script is loaded "s:did_load" exists and the commands | |
2645 after the "endif" are executed. This defines the (possible long) | |
2646 BufNetRead() and BufNetWrite() functions. | |
2647 | |
2648 If you drop this script in your plugin directory Vim will execute it on | |
2649 startup. This is the sequence of events that happens: | |
2650 | |
2651 1. The "BNRead" command is defined and the <F19> key is mapped when the script | |
2652 is sourced at startup. A |FuncUndefined| autocommand is defined. The | |
2653 ":finish" command causes the script to terminate early. | |
2654 | |
2655 2. The user types the BNRead command or presses the <F19> key. The | |
2656 BufNetRead() or BufNetWrite() function will be called. | |
856 | 2657 |
170 | 2658 3. Vim can't find the function and triggers the |FuncUndefined| autocommand |
2659 event. Since the pattern "BufNet*" matches the invoked function, the | |
2660 command "source fname" will be executed. "fname" will be equal to the name | |
2661 of the script, no matter where it is located, because it comes from | |
2662 expanding "<sfile>" (see |expand()|). | |
2663 | |
2664 4. The script is sourced again, the "s:did_load" variable exists and the | |
2665 functions are defined. | |
2666 | |
2667 Notice that the functions that are loaded afterwards match the pattern in the | |
2668 |FuncUndefined| autocommand. You must make sure that no other plugin defines | |
2669 functions that match this pattern. | |
2670 | |
2671 ============================================================================== | |
2672 *41.15* Writing library scripts *write-library-script* | |
2673 | |
2674 Some functionality will be required in several places. When this becomes more | |
2675 than a few lines you will want to put it in one script and use it from many | |
2676 scripts. We will call that one script a library script. | |
2677 | |
2678 Manually loading a library script is possible, so long as you avoid loading it | |
2679 when it's already done. You can do this with the |exists()| function. | |
2680 Example: > | |
2681 | |
2682 if !exists('*MyLibFunction') | |
2683 runtime library/mylibscript.vim | |
2684 endif | |
2685 call MyLibFunction(arg) | |
2686 | |
2687 Here you need to know that MyLibFunction() is defined in a script | |
2688 "library/mylibscript.vim" in one of the directories in 'runtimepath'. | |
2689 | |
2690 To make this a bit simpler Vim offers the autoload mechanism. Then the | |
2691 example looks like this: > | |
2692 | |
270 | 2693 call mylib#myfunction(arg) |
170 | 2694 |
2695 That's a lot simpler, isn't it? Vim will recognize the function name and when | |
2696 it's not defined search for the script "autoload/mylib.vim" in 'runtimepath'. | |
270 | 2697 That script must define the "mylib#myfunction()" function. |
170 | 2698 |
2699 You can put many other functions in the mylib.vim script, you are free to | |
2700 organize your functions in library scripts. But you must use function names | |
323 | 2701 where the part before the '#' matches the script name. Otherwise Vim would |
2702 not know what script to load. | |
170 | 2703 |
681 | 2704 If you get really enthusiastic and write lots of library scripts, you may |
170 | 2705 want to use subdirectories. Example: > |
2706 | |
270 | 2707 call netlib#ftp#read('somefile') |
170 | 2708 |
2709 For Unix the library script used for this could be: | |
2710 | |
2711 ~/.vim/autoload/netlib/ftp.vim | |
2712 | |
2713 Where the function is defined like this: > | |
2714 | |
270 | 2715 function netlib#ftp#read(fname) |
170 | 2716 " Read the file fname through ftp |
2717 endfunction | |
2718 | |
2719 Notice that the name the function is defined with is exactly the same as the | |
323 | 2720 name used for calling the function. And the part before the last '#' |
170 | 2721 exactly matches the subdirectory and script name. |
2722 | |
2723 You can use the same mechanism for variables: > | |
2724 | |
270 | 2725 let weekdays = dutch#weekdays |
170 | 2726 |
2727 This will load the script "autoload/dutch.vim", which should contain something | |
2728 like: > | |
2729 | |
270 | 2730 let dutch#weekdays = ['zondag', 'maandag', 'dinsdag', 'woensdag', |
170 | 2731 \ 'donderdag', 'vrijdag', 'zaterdag'] |
2732 | |
2733 Further reading: |autoload|. | |
2734 | |
2735 ============================================================================== | |
793 | 2736 *41.16* Distributing Vim scripts *distribute-script* |
2737 | |
2738 Vim users will look for scripts on the Vim website: http://www.vim.org. | |
2739 If you made something that is useful for others, share it! | |
2740 | |
2741 Vim scripts can be used on any system. There might not be a tar or gzip | |
2742 command. If you want to pack files together and/or compress them the "zip" | |
2743 utility is recommended. | |
2744 | |
2745 For utmost portability use Vim itself to pack scripts together. This can be | |
2746 done with the Vimball utility. See |vimball|. | |
2747 | |
799 | 2748 It's good if you add a line to allow automatic updating. See |glvs-plugins|. |
2749 | |
793 | 2750 ============================================================================== |
7 | 2751 |
2752 Next chapter: |usr_42.txt| Add new menus | |
2753 | |
14519 | 2754 Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: |