annotate runtime/doc/usr_41.txt @ 29087:f3ec3c57e070

Update runtime files. Commit: https://github.com/vim/vim/commit/016188fd8a30cfbaca3faa0daea9a47138dc5c4b Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 6 20:52:59 2022 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Mon, 06 Jun 2022 23:30:03 +0200
parents f8e9d5023bf6
children c58baa6d6dda
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29087
f3ec3c57e070 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 29066
diff changeset
1 *usr_41.txt* For Vim version 8.2. Last change: 2022 Jun 04
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 VIM USER MANUAL - by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 Write a Vim script
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 The Vim script language is used for the startup vimrc file, syntax files, and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 many other things. This chapter explains the items that can be used in a Vim
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
10 script. There are a lot of them, therefore this is a long chapter.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 |41.1| Introduction
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 |41.2| Variables
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 |41.3| Expressions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 |41.4| Conditionals
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 |41.5| Executing an expression
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 |41.6| Using functions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 |41.7| Defining a function
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
19 |41.8| Lists and Dictionaries
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
20 |41.9| Exceptions
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
21 |41.10| Various remarks
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 Next chapter: |usr_42.txt| Add new menus
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 Previous chapter: |usr_40.txt| Make new commands
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 Table of contents: |usr_toc.txt|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 ==============================================================================
129
2983cde45542 updated for version 7.0044
vimboss
parents: 112
diff changeset
28 *41.1* Introduction *vim-script-intro* *script*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 Your first experience with Vim scripts is the vimrc file. Vim reads it when
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
31 it starts up and executes the commands. You can set options to the values you
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
32 prefer, define mappings, select plugins and much more. You can use any colon
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
33 command in it (commands that start with a ":"; these are sometimes referred to
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
34 as Ex commands or command-line commands).
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
35
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
36 Syntax files are also Vim scripts. As are files that set options for a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 specific file type. A complicated macro can be defined by a separate Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 script file. You can think of other uses yourself.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
40 Vim script comes in two flavors: legacy and |Vim9|. Since this help file is
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
41 for new users, we'll teach you the newer and more convenient |Vim9| syntax.
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
42 While legacy script is particularly for Vim, |Vim9| script looks more like
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
43 other languages, such as JavaScript and TypeScript.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
44
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
45 To try out Vim script the best way is to edit a script file and source it.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
46 Basically: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
47 :edit test.vim
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
48 [insert the script lines you want]
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
49 :w
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
50 :source %
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
51
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 Let's start with a simple example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
54 vim9script
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
55 var i = 1
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
56 while i < 5
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
57 echo "count is" i
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
58 i += 1
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
59 endwhile
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 <
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
61 The output of the example code is:
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
62
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
63 count is 1 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
64 count is 2 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
65 count is 3 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
66 count is 4 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
67
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
68 In the first line the `vim9script` command makes clear this is a new, |Vim9|
29087
f3ec3c57e070 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 29066
diff changeset
69 script file. That matters for how the rest of the file is used. It is
f3ec3c57e070 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 29066
diff changeset
70 recommended to put it in the very fist line, before any comments.
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
71 *vim9-declarations*
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
72 The `var i = 1` command declares the "i" variable and initializes it. The
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
73 generic form is: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
75 var {name} = {expression}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 In this case the variable name is "i" and the expression is a simple value,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 the number one.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
79
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
80 The `while` command starts a loop. The generic form is: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
81
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
82 while {condition}
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
83 {statements}
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
84 endwhile
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
85
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
86 The statements until the matching `endwhile` are executed for as long as the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 condition is true. The condition used here is the expression "i < 5". This
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 is true when the variable i is smaller than five.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 Note:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 If you happen to write a while loop that keeps on running, you can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 interrupt it by pressing CTRL-C (CTRL-Break on MS-Windows).
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
92
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
93 The `echo` command prints its arguments. In this case the string "count is"
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
94 and the value of the variable i. Since i is one, this will print:
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
95
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
96 count is 1 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
97
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
98 Then there is the `i += 1` command. This does the same thing as "i = i + 1",
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
99 it adds one to the variable i and assigns the new value to the same variable.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
100
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
101 The example was given to explain the commands, but would you really want to
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
102 make such a loop, it can be written much more compact: >
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
103
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
104 for i in range(1, 4)
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
105 echo $"count is {i}"
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
106 endfor
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
107
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
108 We won't explain how `for`, `range()`and `$"string"` work until later. Follow
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
109 the links if you are impatient.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
110
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
111
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
112 TRYING OUT EXAMPLES
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
113
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
114 You can easily try out most examples in these help files without saving the
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
115 commands in a file. For example, to try out the "for" loop above do this:
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
116 1. position the cursor on the "for"
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
117 2. start Visual mode with "v"
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
118 3. move down to the "endfor"
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
119 4. press colon, then "so" and Enter
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
120
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
121 After pressing colon you will see ":'<,'>", which is the range of the Visually
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
122 selected text.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
123
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
124 For some commands it matters they are executed as in |Vim9| script. But typed
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
125 commands normally use legacy script syntax, such as the example below that
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
126 causes the E1004 error. For that use this fourth step:
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
127 4. press colon, then "vim9 so" and Enter
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
128
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
129 "vim9" is short for `vim9cmd`, which is a command modifier to execute the
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
130 following command in |Vim9| syntax.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
131
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
132 Note that this won't work for examples that require a script context.
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
133
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
135 FOUR KINDS OF NUMBERS
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
136
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
137 Numbers can be decimal, hexadecimal, octal and binary.
24520
5bda4653aced Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24313
diff changeset
138
5bda4653aced Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24313
diff changeset
139 A hexadecimal number starts with "0x" or "0X". For example "0x1f" is decimal
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
140 31 and 0x1234 is decimal 4660.
24520
5bda4653aced Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24313
diff changeset
141
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
142 An octal number starts with "0o", "0O". "0o17" is decimal 15.
24520
5bda4653aced Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24313
diff changeset
143
5bda4653aced Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24313
diff changeset
144 A binary number starts with "0b" or "0B". For example "0b101" is decimal 5.
5bda4653aced Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24313
diff changeset
145
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
146 A decimal number is just digits. Careful: In legacy script don't put a zero
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
147 before a decimal number, it will be interpreted as an octal number! That's
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
148 one reason to use |Vim9| script.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
149
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
150 The `echo` command evaluates its argument and when it is a number always
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
151 prints the decimal form. Example: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
152
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
153 echo 0x7f 0o36
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 < 127 30 ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
156 A number is made negative with a minus sign. This also works for hexadecimal,
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
157 octal and binary numbers: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
158
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
159 echo -0x7f
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
160 < -127 ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
161
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
162 A minus sign is also used for subtraction. This can sometimes lead to
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
163 confusion. If we put a minus sign before both numbers we get an error: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
164
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
165 echo -0x7f -0o36
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
166 < E1004: White space required before and after '-' at "-0o36" ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
167
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
168 Note: if you are not using a |Vim9| script to try out these commands but type
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
169 them directly, they will be executed as legacy script. Then the echo command
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
170 sees the second minus sign as subtraction. To get the error, prefix the
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
171 command with `vim9cmd`: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
172
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
173 vim9cmd echo -0x7f -0o36
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
174 < E1004: White space required before and after '-' at "-0o36" ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
175
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
176 White space in an expression is often required to make sure it is easy to read
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
177 and avoid errors. Such as thinking that the "-0o36" above makes the number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
178 negative, while it is actually seen as a subtraction.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
179
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
180 To actually have the minus sign be used for negation, you can put the second
27804
8fc68ce4a097 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27634
diff changeset
181 expression in parentheses: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
182
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
183 echo -0x7f (-0o36)
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
184 < -127 -30 ~
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 *41.2* Variables
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 A variable name consists of ASCII letters, digits and the underscore. It
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 cannot start with a digit. Valid variable names are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 counter
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 _aap3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 very_long_variable_name_with_underscores
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
195 CamelCaseName
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 LENGTH
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 Invalid names are "foo+bar" and "6var".
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
199
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
200 Some variables are global. To see a list of currently defined global
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
201 variables type this command: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 :let
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
205 You can use global variables everywhere. However, it is too easy to use the
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
206 same name in two unrelated scripts. Therefore variables declared in a script
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
207 are local to that script. For example, if you have this in "script1.vim": >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
208
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
209 vim9script
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
210 var counter = 5
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
211 echo counter
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
212 < 5 ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
213
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
214 And you try to use the variable in "script2.vim": >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
215
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
216 vim9script
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
217 echo counter
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
218 < E121: Undefined variable: counter ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
219
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
220 Using a script-local variable means you can be sure that it is only changed in
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
221 that script and not elsewhere.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
222
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
223 If you do want to share variables between scripts, use the "g:" prefix and
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
224 assign the value directly, do not use `var`. And use a specific name to avoid
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
225 mistakes. Thus in "script1.vim": >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
226
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
227 vim9script
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
228 g:mash_counter = 5
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
229 echo g:mash_counter
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
230 < 5 ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
231
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
232 And then in "script2.vim": >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
233
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
234 vim9script
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
235 echo g:mash_counter
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
236 < 5 ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
237
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
238 Global variables can also be accessed on the command line, E.g. typing this: >
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
239 echo g:mash_counter
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
240 That will not work for a script-local variable.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
241
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
242 More about script-local variables here: |script-variable|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 There are more kinds of variables, see |internal-variables|. The most often
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 used ones are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 b:name variable local to a buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 w:name variable local to a window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 g:name global variable (also in a function)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 v:name variable predefined by Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 DELETING VARIABLES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
255 Variables take up memory and show up in the output of the `let` command. To
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
256 delete a global variable use the `unlet` command. Example: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
257
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
258 unlet g:counter
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
259
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
260 This deletes the global variable "g:counter" to free up the memory it uses.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
261 If you are not sure if the variable exists, and don't want an error message
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
262 when it doesn't, append !: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
263
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
264 unlet! g:counter
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
265
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
266 You cannot `unlet` script-local variables in |Vim9| script, only in legacy
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
267 script.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
268
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
269 When a script finishes, the local variables declared there will not be
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
270 deleted. Functions defined in the script can use them. Example:
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
271 >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
272 vim9script
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
273 var counter = 0
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
274 def g:GetCount(): number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
275 s:counter += 1
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
276 return s:counter
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
277 enddef
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
278
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
279 Every time you call the function it will return the next count: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
280 :echo g:GetCount()
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
281 < 1 ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
282 >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
283 :echo g:GetCount()
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
284 < 2 ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
285
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
286 If you are worried a script-local variable is consuming too much memory, set
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
287 it to an empty or null value after you no longer need it. Example: >
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
288 var lines = readfile(...)
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
289 ...
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
290 lines = []
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
291
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
292 Note: below we'll leave out the `vim9script` line from examples, so we can
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
293 concentrate on the relevant commands, but you'll still need to put it at the
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
294 top of your script file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 STRING VARIABLES AND CONSTANTS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 So far only numbers were used for the variable value. Strings can be used as
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
300 well. Numbers and strings are the basic types of variables that Vim supports.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
301 Example: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
302
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
303 var name = "Peter"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
304 echo name
27036
3e661b0cf500 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26847
diff changeset
305 < Peter ~
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
307 Every variable has a type. Very often, as in this example, the type is
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
308 defined by assigning a value. This is called type inference. If you do not
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
309 want to give the variable a value yet, you need to specify the type: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
310
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
311 var name: string
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
312 var age: number
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
313 if male
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
314 name = "Peter"
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
315 age = 42
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
316 else
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
317 name = "Elisa"
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
318 age = 45
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
319 endif
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
320
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
321 If you make a mistake and try to assign the wrong type of value you'll get an
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
322 error: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
323
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
324 age = "Peter"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
325 < E1012: Type mismatch; expected number but got string ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
326
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
327 More about types in |41.8|.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
328
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
329 To assign a string value to a variable, you can use a string constant. There
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
330 are two types of these. First the string in double quotes, as we used
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
331 already. If you want to include a double quote inside the string, put a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
332 backslash in front of it: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
333
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
334 var name = "he is \"Peter\""
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
335 echo name
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
336 < he is "Peter" ~
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
337
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
338 To avoid the need for backslashes, you can use a string in single quotes: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
340 var name = 'he is "Peter"'
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
341 echo name
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
342 < he is "Peter" ~
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
343
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
344 Inside a single-quote string all the characters are as they are. Only the
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
345 single quote itself is special: you need to use two to get one. A backslash
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
346 is taken literally, thus you can't use it to change the meaning of the
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
347 character after it: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
348
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
349 var name = 'P\e''ter'''
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
350 echo name
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
351 < P\e'ter' ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
352
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
353 In double-quote strings it is possible to use special characters. Here are a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
354 few useful ones:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 \t <Tab>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357 \n <NL>, line break
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 \r <CR>, <Enter>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 \e <Esc>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 \b <BS>, backspace
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 \" "
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 \\ \, backslash
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 \<Esc> <Esc>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 \<C-W> CTRL-W
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 The last two are just examples. The "\<name>" form can be used to include
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 the special key "name".
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
368
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
369 See |expr-quote| for the full list of special items in a string.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 *41.3* Expressions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
374 Vim has a fairly standard way to handle expressions. You can read the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375 definition here: |expression-syntax|. Here we will show the most common
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 items.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
377
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
378 The numbers, strings and variables mentioned above are expressions by
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379 themselves. Thus everywhere an expression is expected, you can use a number,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 string or variable. Other basic items in an expression are:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 $NAME environment variable
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
383 &name option value
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
384 @r register contents
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 Examples: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
388 echo "The value of 'tabstop' is" &ts
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
389 echo "Your home directory is" $HOME
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
390 if @a == 'text'
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
391
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
392 The &name form can also be used to set an option value, do something and
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
393 restore the old value. Example: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
394
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
395 var save_ic = &ic
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
396 set noic
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
397 s/The Start/The Beginning/
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
398 &ic = save_ic
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 This makes sure the "The Start" pattern is used with the 'ignorecase' option
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
401 off. Still, it keeps the value that the user had set. (Another way to do
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
402 this would be to add "\C" to the pattern, see |/\C|.)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 MATHEMATICS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 It becomes more interesting if we combine these basic items. Let's start with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 mathematics on numbers:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410 a + b add
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 a - b subtract
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 a * b multiply
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 a / b divide
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
414 a % b modulo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
415
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 The usual precedence is used. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
418 echo 10 + 5 * 2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
419 < 20 ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
420
2709
b01a37ab556b Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2698
diff changeset
421 Grouping is done with parentheses. No surprises here. Example: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
422
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
423 echo (10 + 5) * 2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 < 30 ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
426
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
427 OTHERS
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
428
22171
d4c7b3e9cd17 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22077
diff changeset
429 Strings can be concatenated with ".." (see |expr6|). Example: >
d4c7b3e9cd17 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22077
diff changeset
430
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
431 echo "Name: " .. name
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
432 Name: Peter
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
434 When the "echo" command gets multiple arguments, it separates them with a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
435 space. In the example the argument is a single expression, thus no space is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
436 inserted.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
437
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
438 If you don't like the concatenation you can use the $"string" form, which
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
439 accepts an expression in curly braces: >
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
440 echo $"Name: {name}"
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
441
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
442 See |interp-string| for more information.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
443
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
444 Borrowed from the C language is the conditional expression: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 a ? b : c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448 If "a" evaluates to true "b" is used, otherwise "c" is used. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
450 var nr = 4
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
451 echo nr > 5 ? "nr is big" : "nr is small"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
452 < nr is small ~
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 The three parts of the constructs are always evaluated first, thus you could
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
455 see it works as: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457 (a) ? (b) : (c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
458
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
459 There is also the falsy operator: >
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
460 echo name ?? "No name given"
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
461 See |??|.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
462
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 *41.4* Conditionals
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
466 The `if` commands executes the following statements, until the matching
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
467 `endif`, only when a condition is met. The generic form is:
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
468
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
469 if {condition}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 {statements}
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
471 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
472
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
473 Only when the expression {condition} evaluates to true or one will the
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
474 {statements} be executed. If they are not executed they must still be valid
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
475 commands. If they contain garbage, Vim won't be able to find the matching
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
476 `endif`.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
477
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
478 You can also use `else`. The generic form for this is:
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
479
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
480 if {condition}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 {statements}
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
482 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483 {statements}
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
484 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
485
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
486 The second {statements} block is only executed if the first one isn't.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
487
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
488 Finally, there is `elseif`
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
489
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
490 if {condition}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
491 {statements}
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
492 elseif {condition}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493 {statements}
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
494 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
495
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
496 This works just like using `else` and then `if`, but without the need for an
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
497 extra `endif`.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
498
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
499 A useful example for your vimrc file is checking the 'term' option and doing
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
500 something depending upon its value: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
501
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
502 if &term == "xterm"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
503 # Do stuff for xterm
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
504 elseif &term == "vt100"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
505 # Do stuff for a vt100 terminal
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
506 else
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
507 # Do something for other terminals
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
508 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
509
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
510 This uses "#" to start a comment, more about that later.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 LOGIC OPERATIONS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
514
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
515 We already used some of them in the examples. These are the most often used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516 ones:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
517
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518 a == b equal to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519 a != b not equal to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
520 a > b greater than
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521 a >= b greater than or equal to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 a < b less than
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 a <= b less than or equal to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
525 The result is true if the condition is met and false otherwise. An example: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
526
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
527 if v:version >= 800
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
528 echo "congratulations"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
529 else
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
530 echo "you are using an old version, upgrade!"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
531 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533 Here "v:version" is a variable defined by Vim, which has the value of the Vim
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
534 version. 800 is for version 8.0, version 8.1 has the value 801. This is
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
535 useful to write a script that works with multiple versions of Vim.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
536 See |v:version|. You can also check for a specific feature with `has()` or a
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
537 specific patch, see |has-patch|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 The logic operators work both for numbers and strings. When comparing two
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 strings, the mathematical difference is used. This compares byte values,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 which may not be right for some languages.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
542
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
543 If you try to compare a string with a number you will get an error.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
544
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
545 For strings there are two more useful items:
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
546
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
547 str =~ pat matches with
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
548 str !~ pat does not match with
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
549
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
550 The left item "str" is used as a string. The right item "pat" is used as a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 pattern, like what's used for searching. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
553 if str =~ " "
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
554 echo "str contains a space"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
555 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
556 if str !~ '\.$'
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
557 echo "str does not end in a full stop"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
558 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 Notice the use of a single-quote string for the pattern. This is useful,
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
561 because patterns tend to contain many backslashes and backslashes need to be
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
562 doubled in a double-quote string.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
564 The match is not anchored, if you want to match the whole string start with
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
565 "^" and end with "$".
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
566
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
567 The 'ignorecase' option is not used when comparing strings. When you do want
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
568 to ignore case append "?". Thus "==?" compares two strings to be equal while
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
569 ignoring case. For the full table see |expr-==|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572 MORE LOOPING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
574 The `while` command was already mentioned. Two more statements can be used in
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
575 between the `while` and the `endwhile`:
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
576
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
577 continue Jump back to the start of the while loop; the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
578 loop continues.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
579 break Jump forward to the `endwhile`; the loop is
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 discontinued.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583
27036
3e661b0cf500 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26847
diff changeset
584 var counter = 1
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
585 while counter < 40
27036
3e661b0cf500 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26847
diff changeset
586 if skip_number(counter)
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
587 continue
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
588 endif
27036
3e661b0cf500 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26847
diff changeset
589 if last_number(counter)
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
590 break
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
591 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
592 sleep 50m
27036
3e661b0cf500 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26847
diff changeset
593 ++counter
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
594 endwhile
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
595
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
596 The `sleep` command makes Vim take a nap. The "50m" specifies fifty
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
597 milliseconds. Another example is `sleep 4`, which sleeps for four seconds.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
598
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
599 `continue` and `break` can also be used in between `for` and `endfor`.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
600 Even more looping can be done with the `for` command, see below in |41.8|.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
601
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 *41.5* Executing an expression
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 So far the commands in the script were executed by Vim directly. The
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
606 `execute` command allows executing the result of an expression. This is a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607 very powerful way to build commands and execute them.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
608
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
609 An example is to jump to a tag, which is contained in a variable: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
610
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
611 execute "tag " .. tag_name
22171
d4c7b3e9cd17 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22077
diff changeset
612
d4c7b3e9cd17 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22077
diff changeset
613 The ".." is used to concatenate the string "tag " with the value of variable
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 "tag_name". Suppose "tag_name" has the value "get_cmd", then the command that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 will be executed is: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
617 tag get_cmd
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
618
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
619 The `execute` command can only execute Ex commands. The `normal` command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 executes Normal mode commands. However, its argument is not an expression but
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 the literal command characters. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
623 normal gg=G
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
624
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
625 This jumps to the first line with "gg" and formats all lines with the "="
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
626 operator and the "G" movement.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
627
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
628 To make `normal` work with an expression, combine `execute` with it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
630
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
631 execute "normal " .. count .. "j"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
632
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
633 This will move the cursor "count" lines down.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
634
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
635 Make sure that the argument for `normal` is a complete command. Otherwise
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
636 Vim will run into the end of the argument and silently abort the command. For
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
637 example, if you start the delete operator, you must give the movement command
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
638 also. This works: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
639
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
640 normal d$
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
641
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
642 This does nothing: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
643
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
644 normal d
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
645
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
646 If you start Insert mode and do not end it with Esc, it will end anyway. This
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
647 works to insert "new text": >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
648
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
649 execute "normal inew text"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
650
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
651 If you want to do something after inserting text you do need to end Insert
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
652 mode: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
653
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
654 execute "normal inew text\<Esc>b"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
655
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
656 This inserts "new text" and puts the cursor on the first letter of "text".
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
657 Notice the use of the special key "\<Esc>". This avoids having to enter a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
658 real <Esc> character in your script. That is where `execute` with a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
659 double-quote string comes in handy.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
661 If you don't want to execute a string as a command but evaluate it to get the
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
662 result of the expression, you can use the eval() function: >
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
663
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
664 var optname = "path"
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
665 var optvalue = eval('&' .. optname)
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
666
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
667 A "&" character is prepended to "path", thus the argument to eval() is
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
668 "&path". The result will then be the value of the 'path' option.
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
669
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
670 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 *41.6* Using functions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 Vim defines many functions and provides a large amount of functionality that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 way. A few examples will be given in this section. You can find the whole
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
675 list below: |function-list|.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
676
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
677 A function is called with the parameters in between parentheses, separated by
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
678 commas. Example: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
680 search("Date: ", "W")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 This calls the search() function, with arguments "Date: " and "W". The
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 search() function uses its first argument as a search pattern and the second
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 one as flags. The "W" flag means the search doesn't wrap around the end of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
687 Using the `call` command is optional in |Vim9| script. This works the same
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
688 way and also works in legacy script and on the command line: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
689
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
690 call search("Date: ", "W")
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
691
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692 A function can be called in an expression. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
694 var line = getline(".")
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
695 var repl = substitute(line, '\a', "*", "g")
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
696 setline(".", repl)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
698 The getline() function obtains a line from the current buffer. Its argument
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
699 is a specification of the line number. In this case "." is used, which means
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
700 the line where the cursor is.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
701
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
702 The substitute() function does something similar to the `:substitute` command.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
703 The first argument "line" is the string on which to perform the substitution.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
704 The second argument '\a' is the pattern, the third "*" is the replacement
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
705 string. Finally, the last argument "g" is the flags.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
706
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
707 The setline() function sets the line, specified by the first argument, to a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 new string, the second argument. In this example the line under the cursor is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 replaced with the result of the substitute(). Thus the effect of the three
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 statements is equal to: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 :substitute/\a/*/g
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 Using the functions becomes more interesting when you do more work before and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 after the substitute() call.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 FUNCTIONS *function-list*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
720 There are many functions. We will mention them here, grouped by what they are
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
721 used for. You can find an alphabetical list here: |builtin-function-list|.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
722 Use CTRL-] on the function name to jump to detailed help on it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723
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
724 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
725 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
726 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
727 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
728 str2list() get list of numbers from a string
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
729 str2nr() convert a string to a Number
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
730 str2float() convert a string to a Float
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
731 printf() format a string according to % items
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 escape() escape characters in a string with a '\'
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
733 shellescape() escape a string for use with a shell command
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
734 fnameescape() escape a file name for use with a Vim command
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
735 tr() translate characters from one set to another
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 strtrans() translate a string to make it printable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 tolower() turn a string to lowercase
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 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
739 charclass() class of a character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740 match() position where a pattern matches in a string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
741 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
742 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
743 matchfuzzypos() fuzzy matches a string in a list of strings
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
744 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
745 matchstrpos() match and positions of a pattern in a string
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
746 matchlist() like matchstr() and also return submatches
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
747 stridx() first index of a short string in a long string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
748 strridx() last index of a short string in a long string
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
749 strlen() length of a string in bytes
24130
c3d1f65365c4 patch 8.2.2606: strchars() defaults to counting composing characters
Bram Moolenaar <Bram@vim.org>
parents: 23931
diff changeset
750 strcharlen() length of a string in characters
c3d1f65365c4 patch 8.2.2606: strchars() defaults to counting composing characters
Bram Moolenaar <Bram@vim.org>
parents: 23931
diff changeset
751 strchars() number of characters in a string
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
752 strwidth() size of string when displayed
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
753 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
754 setcellwidths() set character cell width overrides
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
755 substitute() substitute a pattern match with a string
2908
fd09a9c8468e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2725
diff changeset
756 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
757 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
758 strcharpart() get part of a string using char index
23604
1816ea68c022 patch 8.2.2344: using inclusive index for slice is not always desired
Bram Moolenaar <Bram@vim.org>
parents: 23602
diff changeset
759 slice() take a slice of a string, using char index in
1816ea68c022 patch 8.2.2344: using inclusive index for slice is not always desired
Bram Moolenaar <Bram@vim.org>
parents: 23602
diff changeset
760 Vim9 script
9286
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
761 strgetchar() get character from a string using char index
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762 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
763 expandcmd() expand a command like done for `:edit`
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 iconv() convert text from one encoding to another
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
765 byteidx() byte index of a character in a string
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
766 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
767 charidx() character index of a byte in a string
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
768 repeat() repeat a string multiple times
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
769 eval() evaluate a string expression
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 9319
diff changeset
770 execute() execute an Ex command and get the output
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
771 win_execute() like execute() but in a specified window
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
772 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
773 gettext() lookup message translation
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
774
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
775 List manipulation: *list-functions*
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
776 get() get an item without error for wrong index
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
777 len() number of items in a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
778 empty() check if List is empty
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
779 insert() insert an item somewhere in a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
780 add() append an item to a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
781 extend() append a List to a List
23588
510088f8c66f patch 8.2.2336: Vim9: not possible to extend dictionary with different type
Bram Moolenaar <Bram@vim.org>
parents: 23573
diff changeset
782 extendnew() make a new List and append items
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
783 remove() remove one or more items from a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
784 copy() make a shallow copy of a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
785 deepcopy() make a full copy of a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
786 filter() remove selected items from a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
787 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
788 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
789 reduce() reduce a List to a value
23604
1816ea68c022 patch 8.2.2344: using inclusive index for slice is not always desired
Bram Moolenaar <Bram@vim.org>
parents: 23602
diff changeset
790 slice() take a slice of a List
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
791 sort() sort a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
792 reverse() reverse the order of a List
5763
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5618
diff changeset
793 uniq() remove copies of repeated adjacent items
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
794 split() split a String into a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
795 join() join List items into a String
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
796 range() return a List with a sequence of numbers
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
797 string() String representation of a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
798 call() call a function with List as arguments
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 270
diff changeset
799 index() index of a value in a List
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
800 max() maximum value in a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
801 min() minimum value in a List
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
802 count() count number of times a value appears in a List
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
803 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
804 flatten() flatten a List
23816
525c9e218c69 patch 8.2.2449: Vim9: flatten() always changes the list type
Bram Moolenaar <Bram@vim.org>
parents: 23666
diff changeset
805 flattennew() flatten a copy of a List
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
806
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
807 Dictionary manipulation: *dict-functions*
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 270
diff changeset
808 get() get an entry without an error for a wrong key
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
809 len() number of entries in a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
810 has_key() check whether a key appears in a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
811 empty() check if Dictionary is empty
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
812 remove() remove an entry from a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
813 extend() add entries from one Dictionary to another
23588
510088f8c66f patch 8.2.2336: Vim9: not possible to extend dictionary with different type
Bram Moolenaar <Bram@vim.org>
parents: 23573
diff changeset
814 extendnew() make a new Dictionary and append items
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
815 filter() remove selected entries from a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
816 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
817 mapnew() make a new Dictionary with changed items
112
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
818 keys() get List of Dictionary keys
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
819 values() get List of Dictionary values
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
820 items() get List of Dictionary key-value pairs
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
821 copy() make a shallow copy of a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
822 deepcopy() make a full copy of a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
823 string() String representation of a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
824 max() maximum value in a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
825 min() minimum value in a Dictionary
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
826 count() count number of times a value appears
195c94b60e54 updated for version 7.0041
vimboss
parents: 48
diff changeset
827
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
828 Floating point computation: *float-functions*
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
829 float2nr() convert Float to Number
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
830 abs() absolute value (also works for Number)
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
831 round() round off
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
832 ceil() round up
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
833 floor() round down
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
834 trunc() remove value after decimal point
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
835 fmod() remainder of division
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
836 exp() exponential
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
837 log() natural logarithm (logarithm to base e)
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
838 log10() logarithm to base 10
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
839 pow() value of x to the exponent y
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
840 sqrt() square root
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
841 sin() sine
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
842 cos() cosine
2725
6f63330ec225 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2709
diff changeset
843 tan() tangent
6f63330ec225 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2709
diff changeset
844 asin() arc sine
6f63330ec225 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2709
diff changeset
845 acos() arc cosine
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
846 atan() arc tangent
2725
6f63330ec225 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2709
diff changeset
847 atan2() arc tangent
6f63330ec225 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2709
diff changeset
848 sinh() hyperbolic sine
6f63330ec225 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2709
diff changeset
849 cosh() hyperbolic cosine
6f63330ec225 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2709
diff changeset
850 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
851 isinf() check for infinity
9286
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
852 isnan() check for not a number
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
853
25806
8d55e978f95b patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents: 25640
diff changeset
854 Blob manipulation: *blob-functions*
8d55e978f95b patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents: 25640
diff changeset
855 blob2list() get a list of numbers from a blob
8d55e978f95b patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents: 25640
diff changeset
856 list2blob() get a blob from a list of numbers
8d55e978f95b patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents: 25640
diff changeset
857
3237
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
858 Other computation: *bitwise-function*
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
859 and() bitwise AND
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
860 invert() bitwise invert
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
861 or() bitwise OR
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
862 xor() bitwise XOR
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
863 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
864 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
865 srand() initialize seed used by rand()
3237
91e53bcb7946 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2908
diff changeset
866
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
867 Variables: *var-functions*
23594
d3e064f54890 patch 8.2.2339: cannot get the type of a value as a string
Bram Moolenaar <Bram@vim.org>
parents: 23588
diff changeset
868 type() type of a variable as a number
d3e064f54890 patch 8.2.2339: cannot get the type of a value as a string
Bram Moolenaar <Bram@vim.org>
parents: 23588
diff changeset
869 typename() type of a variable as text
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
870 islocked() check if a variable is locked
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
871 funcref() get a Funcref for a function reference
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
872 function() get a Funcref for a function name
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
873 getbufvar() get a variable value from a specific buffer
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
874 setbufvar() set a variable in a specific buffer
831
f24a95dae8ee updated for version 7.0d05
vimboss
parents: 825
diff changeset
875 getwinvar() get a variable from specific window
2207
b17bbfa96fa0 Add the settabvar() and gettabvar() functions.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
876 gettabvar() get a variable from specific tab page
831
f24a95dae8ee updated for version 7.0d05
vimboss
parents: 825
diff changeset
877 gettabwinvar() get a variable from specific window & tab page
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
878 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
879 settabvar() set a variable in a specific tab page
831
f24a95dae8ee updated for version 7.0d05
vimboss
parents: 825
diff changeset
880 settabwinvar() set a variable in a specific window & tab page
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
881 garbagecollect() possibly free memory
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
882
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
883 Cursor and mark position: *cursor-functions* *mark-functions*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
884 col() column number of the cursor or a mark
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
885 virtcol() screen column of the cursor or a mark
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
886 line() line number of the cursor or mark
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
887 wincol() window column number of the cursor
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
888 winline() window line number of the cursor
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
889 cursor() position the cursor at a line/column
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
890 screencol() get screen column of the cursor
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
891 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
892 screenpos() screen row and col of a text character
29024
9f25e0ed831d patch 8.2.5034: there is no way to get the byte index from a virtual column
Bram Moolenaar <Bram@vim.org>
parents: 28933
diff changeset
893 virtcol2col() byte index of a text character on screen
5968
92751673cc37 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5942
diff changeset
894 getcurpos() get position of the cursor
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
895 getpos() get position of cursor, mark, etc.
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
896 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
897 getmarklist() list of global/local marks
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
898 byte2line() get line number at a specific byte count
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
899 line2byte() byte count at a specific line
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
900 diff_filler() get the number of filler lines above a line
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
901 screenattr() get attribute at a screen line/row
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
902 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
903 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
904 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
905 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
906 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
907 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
908 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
909 setcursorcharpos() set character position of the cursor
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
910
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
911 Working with text in the current buffer: *text-functions*
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
912 getline() get a line or list of lines from the buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
913 setline() replace a line in the buffer
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
914 append() append line or list of lines in the buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
915 indent() indent of a specific line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916 cindent() indent according to C indenting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917 lispindent() indent according to Lisp indenting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
918 nextnonblank() find next non-blank line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
919 prevnonblank() find previous non-blank line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
920 search() find a match for a pattern
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 647
diff changeset
921 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
922 searchcount() get number of matches before/after the cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
923 searchpair() find the other end of a start/skip/end
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 647
diff changeset
924 searchpairpos() find the other end of a start/skip/end
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
925 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
926 getcharsearch() return character search information
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
927 setcharsearch() set character search information
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
928
17257
cb0ca75f0c26 patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents: 17020
diff changeset
929 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
930 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
931 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
932 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
933 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
934
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
935 *system-functions* *file-functions*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
936 System functions and manipulation of files:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937 glob() expand wildcards
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
938 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
939 glob2regpat() convert a glob pattern into a search pattern
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
940 findfile() find a file in a list of directories
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
941 finddir() find a directory in a list of directories
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
942 resolve() find out where a shortcut points to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
943 fnamemodify() modify a file name
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
944 pathshorten() shorten directory names in a path
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
945 simplify() simplify a path without changing its meaning
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946 executable() check if an executable program exists
5814
755931e042e4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5763
diff changeset
947 exepath() full path of an executable program
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
948 filereadable() check if a file can be read
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
949 filewritable() check if a file can be written to
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
950 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
951 setfperm() set the permissions of a file
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
952 getftype() get the kind of a file
28629
5ef46b938c6e patch 8.2.4838: checking for absolute path is not trivial
Bram Moolenaar <Bram@vim.org>
parents: 28620
diff changeset
953 isabsolutepath() check if a path is absolute
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
954 isdirectory() check if a directory exists
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
955 getfsize() get the size of a file
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
956 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
957 haslocaldir() check if current window used |:lcd| or |:tcd|
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
958 tempname() get the name of a temporary file
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
959 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
960 chdir() change current working directory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
961 delete() delete a file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
962 rename() rename a file
5814
755931e042e4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5763
diff changeset
963 system() get the result of a shell command as a string
755931e042e4 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5763
diff changeset
964 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
965 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
966 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
967 setenv() set an environment variable
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
968 hostname() name of the system
158
78423945b251 updated for version 7.0048
vimboss
parents: 129
diff changeset
969 readfile() read a file into a List of lines
23602
7b3317e959e3 patch 8.2.2343: Vim9: return type of readfile() is any
Bram Moolenaar <Bram@vim.org>
parents: 23594
diff changeset
970 readblob() read a file into a Blob
16267
b471858040bc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16235
diff changeset
971 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
972 readdirex() get a List of file information in a directory
15729
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15512
diff changeset
973 writefile() write a List of lines or Blob into a file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974
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
975 Date and Time: *date-functions* *time-functions*
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
976 getftime() get last modification time of a file
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
977 localtime() get current time in seconds
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
978 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
979 strptime() convert a date/time string to time
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
980 reltime() get the current or elapsed time accurately
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
981 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
982 reltimefloat() convert reltime() result to a Float
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
983
28917
c5862dfaf0bd patch 8.2.4981: it is not possible to manipulate autocommands
Bram Moolenaar <Bram@vim.org>
parents: 28862
diff changeset
984 Autocmds: *autocmd-functions*
c5862dfaf0bd patch 8.2.4981: it is not possible to manipulate autocommands
Bram Moolenaar <Bram@vim.org>
parents: 28862
diff changeset
985 autocmd_add() add a list of autocmds and groups
c5862dfaf0bd patch 8.2.4981: it is not possible to manipulate autocommands
Bram Moolenaar <Bram@vim.org>
parents: 28862
diff changeset
986 autocmd_delete() delete a list of autocmds and groups
c5862dfaf0bd patch 8.2.4981: it is not possible to manipulate autocommands
Bram Moolenaar <Bram@vim.org>
parents: 28862
diff changeset
987 autocmd_get() return a list of autocmds
c5862dfaf0bd patch 8.2.4981: it is not possible to manipulate autocommands
Bram Moolenaar <Bram@vim.org>
parents: 28862
diff changeset
988
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
989 *buffer-functions* *window-functions* *arg-functions*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
990 Buffers, windows and the argument list:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 argc() number of entries in the argument list
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992 argidx() current position in the argument list
5942
66eead134d68 updated for version 7.4.312
Bram Moolenaar <bram@vim.org>
parents: 5814
diff changeset
993 arglistid() get id of the argument list
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994 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
995 bufadd() add a file to the list of buffers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
996 bufexists() check if a buffer exists
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
997 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
998 bufload() ensure a buffer is loaded
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
999 bufloaded() check if a buffer exists and is loaded
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 bufname() get the name of a specific buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001 bufnr() get the buffer number of a specific buffer
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1002 tabpagebuflist() return List of buffers in a tab page
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1003 tabpagenr() get the number of a tab page
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1004 tabpagewinnr() like winnr() for a specified tab page
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005 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
1006 bufwinid() get the window ID of a specific buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1007 bufwinnr() get the window number of a specific buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1008 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
1009 listener_add() add a callback to listen to changes
16808
c002c4899529 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16638
diff changeset
1010 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
1011 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
1012 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
1013 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
1014 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
1015 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
1016 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
1017 win_id2win() get window nr from window ID
27047
b94cdb5ef20e patch 8.2.4052: not easy to resize a window from a plugin
Bram Moolenaar <Bram@vim.org>
parents: 27036
diff changeset
1018 win_move_separator() move window vertical separator
b94cdb5ef20e patch 8.2.4052: not easy to resize a window from a plugin
Bram Moolenaar <Bram@vim.org>
parents: 27036
diff changeset
1019 win_move_statusline() move window status line
20687
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1020 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
1021 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
1022 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
1023 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
1024 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
1025 getjumplist() get a list of jump list entries
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14519
diff changeset
1026 swapinfo() information about a swap file
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1027 swapname() get the swap file path of a buffer
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1028
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
1029 Command line: *command-line-functions*
28757
add09d468c0d patch 8.2.4903: cannot get the current cmdline completion type and position
Bram Moolenaar <Bram@vim.org>
parents: 28629
diff changeset
1030 getcmdcompltype() get the type of the current command line
add09d468c0d patch 8.2.4903: cannot get the current cmdline completion type and position
Bram Moolenaar <Bram@vim.org>
parents: 28629
diff changeset
1031 completion
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1032 getcmdline() get the current command line
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1033 getcmdpos() get position of the cursor in the command line
28757
add09d468c0d patch 8.2.4903: cannot get the current cmdline completion type and position
Bram Moolenaar <Bram@vim.org>
parents: 28629
diff changeset
1034 getcmdscreenpos() get screen position of the cursor in the
add09d468c0d patch 8.2.4903: cannot get the current cmdline completion type and position
Bram Moolenaar <Bram@vim.org>
parents: 28629
diff changeset
1035 command line
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1036 setcmdpos() set position of the cursor in the command line
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1037 getcmdtype() return the current command-line type
6153
1e8ebf870720 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5979
diff changeset
1038 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
1039 getcompletion() list of command-line completion matches
23853
a9ed31ab85c3 patch 8.2.2468: not easy to get the full command name from a shortened one
Bram Moolenaar <Bram@vim.org>
parents: 23816
diff changeset
1040 fullcommand() get full command name
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1041
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
1042 Quickfix and location lists: *quickfix-functions*
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1043 getqflist() list of quickfix errors
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1044 setqflist() modify a quickfix list
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1045 getloclist() list of location list items
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1046 setloclist() modify a location list
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1047
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
1048 Insert mode completion: *completion-functions*
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1049 complete() set found matches
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1050 complete_add() add to found matches
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1051 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
1052 complete_info() get current completion information
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1053 pumvisible() check if the popup menu is displayed
18186
03b854983b14 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 17372
diff changeset
1054 pum_getpos() position and size of popup menu if visible
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1055
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
1056 Folding: *folding-functions*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 foldclosed() check for a closed fold at a specific line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 foldclosedend() like foldclosed() but return the last line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059 foldlevel() check for the fold level at a specific line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 foldtext() generate the line displayed for a closed fold
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1061 foldtextresult() get the text displayed for a closed fold
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1062
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
1063 Syntax and highlighting: *syntax-functions* *highlighting-functions*
1326
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1064 clearmatches() clear all matches defined by |matchadd()| and
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1065 the |:match| commands
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1066 getmatches() get all matches defined by |matchadd()| and
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1067 the |:match| commands
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 hlexists() check if a highlight group exists
26089
c544eacaf066 patch 8.2.3578: manipulating highlighting is complicated
Bram Moolenaar <Bram@vim.org>
parents: 25836
diff changeset
1069 hlget() get highlight group attributes
c544eacaf066 patch 8.2.3578: manipulating highlighting is complicated
Bram Moolenaar <Bram@vim.org>
parents: 25836
diff changeset
1070 hlset() set highlight group attributes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 hlID() get ID of a highlight group
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1072 synID() get syntax ID at a specific position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073 synIDattr() get a specific attribute of a syntax ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 synIDtrans() get translated syntax ID
2642
840c3cadb842 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1075 synstack() get list of syntax IDs at a specific position
2662
916c90b37ea9 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2642
diff changeset
1076 synconcealed() get info about concealing
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1077 diff_hlID() get highlight ID for diff mode at a position
1326
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1078 matchadd() define a pattern to highlight (a "match")
5979
f9fa2e506b9f updated for version 7.4.330
Bram Moolenaar <bram@vim.org>
parents: 5968
diff changeset
1079 matchaddpos() define a list of positions to highlight
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1080 matcharg() get info about |:match| arguments
1326
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1081 matchdelete() delete a match defined by |matchadd()| or a
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1082 |:match| command
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1083 setmatches() restore a list of matches saved by
22886f3d882d updated for version 7.1-040
vimboss
parents: 1252
diff changeset
1084 |getmatches()|
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1085
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
1086 Spelling: *spell-functions*
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1087 spellbadword() locate badly spelled word at or after cursor
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1088 spellsuggest() return suggested spelling corrections
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1089 soundfold() return the sound-a-like equivalent of a word
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090
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
1091 History: *history-functions*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1092 histadd() add an item to a history
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093 histdel() delete an item from a history
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094 histget() get an item from a history
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095 histnr() get highest index of a history list
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096
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
1097 Interactive: *interactive-functions*
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1098 browse() put up a file requester
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1099 browsedir() put up a directory requester
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100 confirm() let the user make a choice
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101 getchar() get a character from the user
24840
c7aa7acb23bb patch 8.2.2958: function list test fails
Bram Moolenaar <Bram@vim.org>
parents: 24520
diff changeset
1102 getcharstr() get a character from the user as a string
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1103 getcharmod() get modifiers for the last typed character
18639
cb3163d590a1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 18186
diff changeset
1104 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
1105 echoraw() output characters as-is
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
1106 feedkeys() put characters in the typeahead queue
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1107 input() get a line from the user
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1108 inputlist() let the user pick an entry from a list
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109 inputsecret() get a line from the user without showing it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1110 inputdialog() get a line from the user in a dialog
230
9281a51ca7a2 updated for version 7.0064
vimboss
parents: 211
diff changeset
1111 inputsave() save and clear typeahead
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1112 inputrestore() restore typeahead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1113
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
1114 GUI: *gui-functions*
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1115 getfontname() get name of current font being used
13437
02b3f719eacb Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13341
diff changeset
1116 getwinpos() position of the Vim window
02b3f719eacb Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13341
diff changeset
1117 getwinposx() X position of the Vim window
02b3f719eacb Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13341
diff changeset
1118 getwinposy() Y position of the Vim window
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
1119 balloon_show() set the balloon content
12909
1578c0ba0dd1 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
1120 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
1121 balloon_gettext() get the text in the balloon
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1122
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
1123 Vim server: *server-functions*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1124 serverlist() return the list of server names
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 12254
diff changeset
1125 remote_startserver() run a server
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1126 remote_send() send command characters to a Vim server
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1127 remote_expr() evaluate an expression in a Vim server
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1128 server2client() send a reply to a client of a Vim server
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1129 remote_peek() check if there is a reply from a Vim server
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1130 remote_read() read a reply from a Vim server
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1131 foreground() move the Vim window to the foreground
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1132 remote_foreground() move the Vim server window to the foreground
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1133
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
1134 Window size and position: *window-size-functions*
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1135 winheight() get height of a specific window
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1136 winwidth() get width of a specific window
13051
a6d3e2081544 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 12909
diff changeset
1137 win_screenpos() get screen position of a window
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1138 winlayout() get layout of windows in a tab page
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1139 winrestcmd() return command to restore window sizes
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1140 winsaveview() get view of current window
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1141 winrestview() restore saved view of current window
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1142
19657
da791e5c0139 patch 8.2.0385: menu functionality insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19384
diff changeset
1143 Mappings and Menus: *mapping-functions*
25378
890fd8211202 patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents: 25294
diff changeset
1144 digraph_get() get |digraph|
890fd8211202 patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents: 25294
diff changeset
1145 digraph_getlist() get all |digraph|s
890fd8211202 patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents: 25294
diff changeset
1146 digraph_set() register |digraph|
890fd8211202 patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents: 25294
diff changeset
1147 digraph_setlist() register multiple |digraph|s
4159
8b86b69546a9 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3893
diff changeset
1148 hasmapto() check if a mapping exists
8b86b69546a9 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3893
diff changeset
1149 mapcheck() check if a matching mapping exists
8b86b69546a9 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3893
diff changeset
1150 maparg() get rhs of a mapping
28602
398c5b3211f9 patch 8.2.4825: can only get a list of mappings
Bram Moolenaar <Bram@vim.org>
parents: 28592
diff changeset
1151 maplist() get list of all mappings
20687
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1152 mapset() restore a mapping
19657
da791e5c0139 patch 8.2.0385: menu functionality insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19384
diff changeset
1153 menu_info() get information about a menu item
4159
8b86b69546a9 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3893
diff changeset
1154 wildmenumode() check if the wildmode is active
8b86b69546a9 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3893
diff changeset
1155
7279
b5e9810b389d commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents: 6153
diff changeset
1156 Testing: *test-functions*
8673
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
1157 assert_equal() assert that two expressions values are equal
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1158 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
1159 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
1160 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
1161 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
1162 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
1163 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
1164 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
1165 assert_exception() assert that a command throws an exception
13341
acd7eaa13d2b Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13280
diff changeset
1166 assert_beeps() assert that a command beeps
24313
10c39822f496 patch 8.2.2697: function list test fails
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
1167 assert_nobeep() assert that a command does not cause a beep
13341
acd7eaa13d2b Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13280
diff changeset
1168 assert_fails() assert that a command fails
11229
146a1e213b60 Update runtime files. Add Rust support.
Christian Brabandt <cb@256bit.org>
parents: 11160
diff changeset
1169 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
1170 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
1171 test_autochdir() enable 'autochdir' during startup
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
1172 test_override() test with Vim internal overrides
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
1173 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
1174 test_garbagecollect_soon() set a flag to free memory soon
16808
c002c4899529 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16638
diff changeset
1175 test_getvalue() get value of an internal variable
27462
b43f6c879d52 patch 8.2.4259: number of test functions for GUI events is growing
Bram Moolenaar <Bram@vim.org>
parents: 27459
diff changeset
1176 test_gui_event() generate a GUI event for testing
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
1177 test_ignore_error() ignore a specific error message
15729
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15512
diff changeset
1178 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
1179 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
1180 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
1181 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
1182 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
1183 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
1184 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
1185 test_null_string() return a null String
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 10734
diff changeset
1186 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
1187 test_setmouse() set the mouse position
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1188 test_feedinput() add key sequence to input buffer
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1189 test_option_not_set() reset flag indicating option was set
20687
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1190 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
1191 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
1192 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
1193 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
1194
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
1195 Inter-process communication: *channel-functions*
10449
222b1432814e commit https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
1196 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
1197 ch_open() open a channel
00d64eb49ce1 commit https://github.com/vim/vim/commit/681baaf4a4c81418693dcafb81421a8614832e91
Christian Brabandt <cb@256bit.org>
parents: 7790
diff changeset
1198 ch_close() close a channel
10140
b11ceef7116e commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents: 9858
diff changeset
1199 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
1200 ch_read() read a message from a channel
15512
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15418
diff changeset
1201 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
1202 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
1203 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
1204 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
1205 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
1206 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
1207 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
1208 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
1209 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
1210 ch_info() get channel information
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
1211 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
1212 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
1213 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
1214 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
1215 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
1216 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
1217 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
1218
20687
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1219 Jobs: *job-functions*
9286
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
1220 job_start() start a job
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
1221 job_stop() stop a job
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
1222 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
1223 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
1224 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
1225 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
1226
15209
3a99b2e6d136 patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents: 15194
diff changeset
1227 Signs: *sign-functions*
3a99b2e6d136 patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents: 15194
diff changeset
1228 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
1229 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
1230 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
1231 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
1232 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
1233 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
1234 sign_undefine() undefine a sign
3a99b2e6d136 patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents: 15194
diff changeset
1235 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
1236 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
1237
12254
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1238 Terminal window: *terminal-functions*
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1239 term_start() open a terminal window and run a job
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1240 term_list() get the list of terminal buffers
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1241 term_sendkeys() send keystrokes to a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1242 term_wait() wait for screen to be updated
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1243 term_getjob() get the job associated with a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1244 term_scrape() get row of a terminal screen
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1245 term_getline() get a line of text from a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1246 term_getattr() get the value of attribute {what}
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1247 term_getcursor() get the cursor position of a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1248 term_getscrolled() get the scroll count of a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1249 term_getaltscreen() get the alternate screen flag
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1250 term_getsize() get the size of a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1251 term_getstatus() get the status of a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1252 term_gettitle() get the title of a terminal
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1253 term_gettty() get the tty name of a terminal
13735
a62eeee5f116 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13437
diff changeset
1254 term_setansicolors() set 16 ANSI colors, used for GUI
a62eeee5f116 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13437
diff changeset
1255 term_getansicolors() get 16 ANSI colors, used for GUI
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1256 term_dumpdiff() display difference between two screen dumps
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1257 term_dumpload() load a terminal screen dump in a window
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1258 term_dumpwrite() dump contents of a terminal screen to a file
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1259 term_setkill() set signal to stop job in a terminal
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1260 term_setrestore() set command to restore a terminal
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1261 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
1262 term_setapi() set terminal JSON API function name prefix
12254
8d76a56861ec Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11763
diff changeset
1263
17257
cb0ca75f0c26 patch 8.1.1628: popup window functions not in list of functions
Bram Moolenaar <Bram@vim.org>
parents: 17020
diff changeset
1264 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
1265 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
1266 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
1267 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
1268 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
1269 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
1270 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
1271 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
1272 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
1273 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
1274 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
1275 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
1276 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
1277 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
1278 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
1279 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
1280 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
1281 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
1282 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
1283 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
1284 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
1285 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
1286 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
1287 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
1288
9286
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
1289 Timers: *timer-functions*
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9227
diff changeset
1290 timer_start() create a timer
9858
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9644
diff changeset
1291 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
1292 timer_stop() stop a timer
9858
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9644
diff changeset
1293 timer_stopall() stop all timers
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9644
diff changeset
1294 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
1295
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1296 Tags: *tag-functions*
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1297 taglist() get list of matching tags
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1298 tagfiles() get a list of tags files
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1299 gettagstack() get the tag stack of a window
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1300 settagstack() modify the tag stack of a window
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1301
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1302 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
1303 prompt_getprompt() get the effective prompt text for a buffer
15068
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1304 prompt_setcallback() set prompt callback for a buffer
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1305 prompt_setinterrupt() set interrupt callback for a buffer
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1306 prompt_setprompt() set the prompt text for a buffer
d9d97b8afe0d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
1307
20687
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1308 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
1309 prop_add() attach a property at a position
25640
78ef12e0ce8c patch 8.2.3356: adding many text properties requires a lot of function calls
Bram Moolenaar <Bram@vim.org>
parents: 25619
diff changeset
1310 prop_add_list() attach a property at multiple positions
20687
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1311 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
1312 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
1313 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
1314 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
1315 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
1316 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
1317 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
1318 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
1319 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
1320
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1321 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
1322 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
1323 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
1324 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
1325 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
1326
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
1327 Various: *various-functions*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1328 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
1329 state() get current busy state
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1330 visualmode() last visual mode used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1331 exists() check if a variable, function, etc. exists
25555
446f478d6fb1 patch 8.2.3314: behavior of exists() in a :def function is unpredictable
Bram Moolenaar <Bram@vim.org>
parents: 25402
diff changeset
1332 exists_compiled() like exists() but check at compile time
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333 has() check if a feature is supported in Vim
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1334 changenr() return number of most recent change
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 cscope_connection() check if a cscope connection exists
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336 did_filetype() check if a FileType autocommand was used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 eventhandler() check if invoked by an event handler
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
1338 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
1339 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
1340 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
1341 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
1342 terminalprops() properties of the terminal
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1343
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1344 libcall() call a function in an external library
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1345 libcallnr() idem, returning a number
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1346
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
1347 undofile() get the name of the undo file
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
1348 undotree() return the state of the undo tree
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
1349
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1350 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
1351 getreginfo() get information about a register
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1352 getregtype() get type of a register
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1353 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
1354 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
1355 reg_recording() return the name of the register being recorded
824
8dd456c1e283 updated for version 7.0c13
vimboss
parents: 810
diff changeset
1356
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
1357 shiftwidth() effective value of 'shiftwidth'
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
1358
9464
be72f4201a1d commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa
Christian Brabandt <cb@256bit.org>
parents: 9319
diff changeset
1359 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
1360
20687
770a8e9c4781 patch 8.2.0897: list of functions in patched version is outdated
Bram Moolenaar <Bram@vim.org>
parents: 20643
diff changeset
1361 luaeval() evaluate |Lua| expression
2050
afcf9db31561 updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
1362 mzeval() evaluate |MzScheme| expression
7651
c7575b07de98 commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents: 7480
diff changeset
1363 perleval() evaluate Perl expression (|+perl|)
5618
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
1364 py3eval() evaluate Python expression (|+python3|)
350272cbf1fd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
1365 pyeval() evaluate Python expression (|+python|)
10734
523cd59d6db0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10449
diff changeset
1366 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
1367 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
1368
15194
8b334e4cb97f Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15068
diff changeset
1369 debugbreak() interrupt a program being debugged
2050
afcf9db31561 updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
1370
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1371 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1372 *41.7* Defining a function
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1373
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1374 Vim enables you to define your own functions. The basic function declaration
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1375 begins as follows: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1376
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1377 def {name}({var1}, {var2}, ...): return-type
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1378 {body}
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1379 enddef
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1380 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1381 Note:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1382 Function names must begin with a capital letter.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1383
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1384 Let's define a short function to return the smaller of two numbers. It starts
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1385 with this line: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1386
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1387 def Min(num1: number, num2: number): number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1388
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1389 This tells Vim that the function is named "Min", it takes two arguments that
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1390 are numbers: "num1" and "num2" and returns a number.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1391
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1392 The first thing you need to do is to check to see which number is smaller:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1393 >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1394 if num1 < num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1395
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1396 Let's assign the variable "smaller" the value of the smallest number: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1397
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1398 var smaller: number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1399 if num1 < num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1400 smaller = num1
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1401 else
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1402 smaller = num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1403 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1404
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1405 The variable "smaller" is a local variable. Variables used inside a function
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1406 are local unless prefixed by something like "g:", "w:", or "s:".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1407
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1408 Note:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1409 To access a global variable from inside a function you must prepend
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
1410 "g:" to it. Thus "g:today" inside a function is used for the global
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
1411 variable "today", and "today" is another variable, local to the
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1412 function or the script.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1413
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1414 You now use the `return` statement to return the smallest number to the user.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1415 Finally, you end the function: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1417 return smaller
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1418 enddef
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1419
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1420 The complete function definition is as follows: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1421
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1422 def Min(num1: number, num2: number): number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1423 var smaller: number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1424 if num1 < num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1425 smaller = num1
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1426 else
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1427 smaller = num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1428 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1429 return smaller
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1430 enddef
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1431
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1432 Obviously this is a verbose example. You can make it shorter by using two
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1433 return commands: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1434
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1435 def Min(num1: number, num2: number): number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1436 if num1 < num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1437 return num1
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1438 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1439 return num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1440 enddef
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1441
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1442 And if you remember the conditional expression, you need only one line: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1443
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1444 def Min(num1: number, num2: number): number
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1445 return num1 < num2 ? num1 : num2
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1446 enddef
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1447
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 667
diff changeset
1448 A user defined function is called in exactly the same way as a built-in
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1449 function. Only the name is different. The Min function can be used like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450 this: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1451
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1452 echo Min(5, 8)
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1453
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1454 Only now will the function be executed and the lines be parsed by Vim.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455 If there are mistakes, like using an undefined variable or function, you will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1456 now get an error message. When defining the function these errors are not
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1457 detected. To get the errors sooner you can tell Vim to compile all the
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1458 functions in the script: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1459
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1460 defcompile
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1461
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1462 Compiling functions takes a little time, but does report errors early. You
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1463 could use `:defcompile` at the end of your script while working on it, and
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1464 comment it out when everything is fine.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1465
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1466 For a function that does not return anything simply leave out the return type: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1467
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1468 def SayIt(text: string)
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1469 echo text
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1470 enddef
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1471
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1472 It is also possible to define a legacy function with `function` and
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1473 `endfunction`. These do not have types and are not compiled. Therefore they
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1474 execute much slower.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1475
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1477 USING A RANGE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1478
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1479 A line range can be used with a function call. The function will be called
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1480 once for every line in the range, with the cursor in that line. Example: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1481
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1482 def Number()
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1483 echo "line " .. line(".") .. " contains: " .. getline(".")
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1484 enddef
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1485
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1486 If you call this function with: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1487
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1488 :10,15call Number()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1489
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1490 The function will be called six times, starting on line 10 and ending on line
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1491 15.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1492
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1494 VARIABLE NUMBER OF ARGUMENTS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1495
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1496 Vim enables you to define functions that have a variable number of arguments.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 The following command, for instance, defines a function that must have 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1498 argument (start) and can have up to 20 additional arguments: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1499
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1500 def Show(start: string, ...items: list<string>)
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1501
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1502 The variable "items" will be a list in the function containing the extra
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1503 arguments. You can use it like any list, for example: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1504
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1505 def Show(start: string, ...items: list<string>)
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1506 echohl Title
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1507 echo "start is " .. start
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1508 echohl None
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1509 for index in range(len(items))
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1510 echon $" Arg {index} is {items[index]}"
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1511 endfor
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1512 echo
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1513 enddef
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1514
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1515 You can call it like this: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1516
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1517 Show('Title', 'one', 'two', 'three')
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1518 < start is Title Arg 0 is one Arg 1 is two Arg 2 is three ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1519
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1520 This uses the `echohl` command to specify the highlighting used for the
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1521 following `echo` command. `echohl None` stops it again. The `echon` command
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1522 works like `echo`, but doesn't output a line break.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1523
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1524 If you call it with one argument the "items" list will be empty.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1525 `range(len(items))` returns a list with the indexes, what `for` loops over,
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1526 we'll explain that further down.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1527
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1529 LISTING FUNCTIONS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1530
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1531 The `function` command lists the names and arguments of all user-defined
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1532 functions: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1533
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1534 :function
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1535 < def <SNR>86_Show(start: string, ...items: list<string>) ~
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 function GetVimIndent() ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 function SetSyn(name) ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1539 The "<SNR>" prefix means that a function is script-local. |Vim9| functions
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1540 wil start with "def" and include argument and return types. Legacy functions
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1541 are listed with "function".
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1542
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1543 To see what a function does, use its name as an argument for `function`: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 :function SetSyn
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1546 < 1 if &syntax == '' ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 2 let &syntax = a:name ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1548 3 endif ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 endfunction ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1551 To see the "Show" function you need to include the script prefix, since
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1552 multiple "Show" functions can be defined in different scripts. To find
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1553 the exact name you can use `function`, but the result may be a very long list.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1554 To only get the functions matching a pattern you can use the `filter` prefix:
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1555 >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1556 :filter Show function
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1557 < def <SNR>86_Show(start: string, ...items: list<string>) ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1558 >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1559 :function <SNR>86_Show
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1560 < 1 echohl Title ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1561 2 echo "start is " .. start ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1562 etc.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1563
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1564
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1565 DEBUGGING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1566
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1567 The line number is useful for when you get an error message or when debugging.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1568 See |debug-scripts| about debugging mode.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1569
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1570 You can also set the 'verbose' option to 12 or higher to see all function
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1571 calls. Set it to 15 or higher to see every executed line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1572
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1573
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1574 DELETING A FUNCTION
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1575
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1576 To delete the SetSyn() function: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1577
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1578 :delfunction SetSyn
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1579
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1580 Deleting only works for global functions and functions in legacy script, not
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1581 for functions defined in a |Vim9| script.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1582
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1583 You get an error when the function doesn't exist or cannot be deleted.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1584
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1585
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1586 FUNCTION REFERENCES
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1587
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1588 Sometimes it can be useful to have a variable point to one function or
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1589 another. You can do it with a function reference variable. Often shortened
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1590 to "funcref". Example: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1591
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1592 def Right(): string
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1593 return 'Right!'
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1594 enddef
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1595 def Wrong(): string
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1596 return 'Wrong!'
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1597 enddef
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1598
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1599 var Afunc = g:result == 1 ? Right : Wrong
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1600 echo Afunc()
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1601 < Wrong! ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1602
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1603 This assumes "g:result" is not one. See |Funcref| for details.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1604
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1605 Note that the name of a variable that holds a function reference must start
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1606 with a capital. Otherwise it could be confused with the name of a builtin
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1607 function.
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1608
25806
8d55e978f95b patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents: 25640
diff changeset
1609 More information about defining your own functions here: |user-functions|.
8d55e978f95b patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents: 25640
diff changeset
1610
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1611 ==============================================================================
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1612 *41.8* Lists and Dictionaries
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1613
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1614 So far we have used the basic types String and Number. Vim also supports two
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1615 composite types: List and Dictionary.
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1616
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1617 A List is an ordered sequence of items. The items can be any kind of value,
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1618 thus you can make a List of numbers, a List of Lists and even a List of mixed
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1619 items. To create a List with three strings: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1620
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1621 var alist = ['aap', 'noot', 'mies']
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1622
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1623 The List items are enclosed in square brackets and separated by commas. To
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1624 create an empty List: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1625
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1626 var alist = []
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1627
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1628 You can add items to a List with the add() function: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1629
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1630 var alist = []
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1631 add(alist, 'foo')
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1632 add(alist, 'bar')
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1633 echo alist
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1634 < ['foo', 'bar'] ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1635
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1636 List concatenation is done with +: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1637
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1638 var alist = ['foo', 'bar']
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1639 alist = alist + ['and', 'more']
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1640 echo alist
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1641 < ['foo', 'bar', 'and', 'more'] ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1642
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1643 Or, if you want to extend a List with a function, use `extend()`: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1644
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1645 var alist = ['one']
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1646 extend(alist, ['two', 'three'])
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1647 echo alist
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1648 < ['one', 'two', 'three'] ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1649
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1650 Notice that using `add()` will have a different effect than `extend()`: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1651
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1652 var alist = ['one']
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1653 add(alist, ['two', 'three'])
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1654 echo alist
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1655 < ['one', ['two', 'three']] ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1656
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1657 The second argument of add() is added as an item, now you have a nested list.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1658
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1659
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1660 FOR LOOP
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1661
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1662 One of the nice things you can do with a List is iterate over it: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1663
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1664 var alist = ['one', 'two', 'three']
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1665 for n in alist
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1666 echo n
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1667 endfor
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1668 < one ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1669 two ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1670 three ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1671
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1672 This will loop over each element in List "alist", assigning each value to
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1673 variable "n". The generic form of a for loop is: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1674
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1675 for {varname} in {list-expression}
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1676 {commands}
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1677 endfor
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1678
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1679 To loop a certain number of times you need a List of a specific length. The
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1680 range() function creates one for you: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1681
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1682 for a in range(3)
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1683 echo a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1684 endfor
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1685 < 0 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1686 1 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1687 2 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1688
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1689 Notice that the first item of the List that range() produces is zero, thus the
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1690 last item is one less than the length of the list. Detail: Internally range()
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1691 does not actually create the list, so that a large range used in a for loop
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1692 works efficiently. When used elsewhere, the range is turned into an actual
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1693 list, which takes more time for a long ist.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1694
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1695 You can also specify the maximum value, the stride and even go backwards: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1696
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1697 for a in range(8, 4, -2)
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1698 echo a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1699 endfor
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1700 < 8 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1701 6 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1702 4 ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1703
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1704 A more useful example, looping over all the lines in the buffer: >
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1705
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1706 for line in getline(1, 50)
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1707 if line =~ "Date: "
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1708 echo line
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1709 endif
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1710 endfor
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1711
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1712 This looks into lines 1 to 50 (inclusive) and echoes any date found in there.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1713
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1714 For further reading see |Lists|.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1715
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1716
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1717 DICTIONARIES
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1718
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1719 A Dictionary stores key-value pairs. You can quickly lookup a value if you
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1720 know the key. A Dictionary is created with curly braces: >
856
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
1721
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1722 var uk2nl = {one: 'een', two: 'twee', three: 'drie'}
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1723
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
1724 Now you can lookup words by putting the key in square brackets: >
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1725
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1726 echo uk2nl['two']
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1727 < twee ~
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1728
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1729 If the key does not have special characters, you can use the dot notation: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1730
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1731 echo uk2nl.two
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1732 < twee ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1733
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1734 The generic form for defining a Dictionary is: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1735
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1736 {<key> : <value>, ...}
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1737
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1738 An empty Dictionary is one without any keys: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1739
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1740 {}
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1741
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1742 The possibilities with Dictionaries are numerous. There are various functions
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1743 for them as well. For example, you can obtain a list of the keys and loop
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1744 over them: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1745
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1746 for key in keys(uk2nl)
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1747 echo key
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1748 endfor
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1749 < three ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1750 one ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1751 two ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1752
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1326
diff changeset
1753 You will notice the keys are not ordered. You can sort the list to get a
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1754 specific order: >
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1755
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1756 for key in sort(keys(uk2nl))
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1757 echo key
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1758 endfor
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1759 < one ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1760 three ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1761 two ~
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1762
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1763 But you can never get back the order in which items are defined. For that you
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1764 need to use a List, it stores items in an ordered sequence.
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1765
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1766 For further reading see |Dictionaries|.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1767
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1768 ==============================================================================
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1769 *41.9* Exceptions
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1771 Let's start with an example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1773 try
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1774 read ~/templates/pascal.tmpl
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1775 catch /E484:/
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1776 echo "Sorry, the Pascal template file cannot be found."
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1777 endtry
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1778
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1779 The `read` command will fail if the file does not exist. Instead of
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1780 generating an error message, this code catches the error and gives the user a
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1781 message with more information.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1783 For the commands in between `try` and `endtry` errors are turned into
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1784 exceptions. An exception is a string. In the case of an error the string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785 contains the error message. And every error message has a number. In this
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1786 case, the error we catch contains "E484:". This number is guaranteed to stay
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1787 the same (the text may change, e.g., it may be translated).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1788
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1789 Besides being able to give a nice error message, Vim will also continue
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1790 executing commands after the `:endtry`. Otherwise, once an uncaught error is
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1791 encountered, execution of the script/function/mapping will be aborted.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1792
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1793 When the `read` command causes another error, the pattern "E484:" will not
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1794 match in it. Thus this exception will not be caught and result in the usual
29087
f3ec3c57e070 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 29066
diff changeset
1795 error message and execution is aborted.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1796
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 You might be tempted to do this: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1798
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1799 try
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1800 read ~/templates/pascal.tmpl
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1801 catch
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1802 echo "Sorry, the Pascal template file cannot be found."
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1803 endtry
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1804
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1805 This means all errors are caught. But then you will not see an error that
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1806 would indicate a completely different problem, such as "E21: Cannot make
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1807 changes, 'modifiable' is off". Think twice before you catch any error!
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1808
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1809 Another useful mechanism is the `finally` command: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1810
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1811 var tmp = tempname()
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1812 try
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1813 exe ":.,$write " .. tmp
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1814 exe "!filter " .. tmp
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1815 :.,$delete
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1816 exe ":$read " .. tmp
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1817 finally
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1818 delete(tmp)
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1819 endtry
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1820
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1821 This filters the lines from the cursor until the end of the file through the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1822 "filter" command, which takes a file name argument. No matter if the
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1823 filtering works, if something goes wrong in between `try` and `finally` or the
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1824 user cancels the filtering by pressing CTRL-C, the `delete(tmp)` call is
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1825 always executed. This makes sure you don't leave the temporary file behind.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1826
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1827 The `finally` does not catch the exception, the error will still abort
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1828 further execution.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1829
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1830 More information about exception handling can be found in the reference
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1831 manual: |exception-handling|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1832
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1833 ==============================================================================
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 158
diff changeset
1834 *41.10* Various remarks
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1835
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1836 Here are a few items that are useful to know when writing Vim scripts.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1837
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1838
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1839 FILEFORMAT
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1840
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1841 The end-of-line character depends on the system. For Vim scripts it is
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1842 recommended to always use the Unix fileformat. This also works on any other
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1843 system. That way you can copy your Vim scripts from MS-Windows to Unix and
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1844 they still work. See |:source_crnl|. To be sure it is set right, do this
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1845 before writing the file: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1846
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1847 :setlocal fileformat=unix
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1848
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1849
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1850 WHITE SPACE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1851
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1852 Blank lines are allowed and ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1853
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1854 Leading whitespace characters (blanks and TABs) are always ignored.
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1855
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1856 Trailing whitespace is often ignored, but not always. One command that
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1857 includes it is `map`.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1858
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1859 To include a whitespace character in the value of an option, it must be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1860 escaped by a "\" (backslash) as in the following example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1861
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 :set tags=my\ nice\ file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1863
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1864 If it would be written as: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1865
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1866 :set tags=my nice file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1867
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1868 This will issue an error, because it is interpreted as: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1869
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1870 :set tags=my
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1871 :set nice
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1872 :set file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1873
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1874 |Vim9| script is very picky when it comes to white space. This was done
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1875 intentionally to make sure scripts are easy to read and to avoid mistakes.
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1876 If you use white space sensibly it will just work. When not you will get an
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1877 error message telling you where white space is missing or should be removed.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1878
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1879
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1880 COMMENTS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1881
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1882 In |Vim9| script the character # starts a comment. That character and
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1883 everything after it until the end-of-line is considered a comment and
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1884 is ignored, except for commands that don't consider comments, as shown in
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1885 examples below. A comment can start on any character position on the line,
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1886 but not when it is part of the command, e.g. inside a string.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1887
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1888 The character " (the double quote mark) starts a comment in legacy script.
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1889 This involves some cleverness to make sure double quoted strings are not
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1890 recognized as comments (just one reason to prefer |Vim9| script).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1891
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1892 There is a little "catch" with comments for some commands. Examples: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1893
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1894 abbrev dev development # shorthand
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1895 map <F3> o#include # insert include
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1896 execute cmd # do it
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1897 !ls *.c # list C files
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1898
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1899 - The abbreviation 'dev' will be expanded to 'development # shorthand'.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1900 - The mapping of <F3> will actually be the whole line after the 'o# ....'
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1901 including the '# insert include'.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1902 - The `execute` command will give an error.
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1903 - The `!` command will send everything after it to the shell, most likely
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1904 causing an error.
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1905
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1906 There can be no comment after `map`, `abbreviate`, `execute` and `!` commands
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1907 (there are a few more commands with this restriction). For the `map`,
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1908 `abbreviate` and `execute` commands there is a trick: >
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1909
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1910 abbrev dev development|# shorthand
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1911 map <F3> o#include|# insert include
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1912 execute '!ls *.c' |# do it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1913
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1914 With the '|' character the command is separated from the next one. And that
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1915 next command is only a comment. The last command, using `execute` is a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1916 general solution, it works for all commands that do not accept a comment or a
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1917 '|' to separate the next command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1918
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1919 Notice that there is no white space before the '|' in the abbreviation and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1920 mapping. For these commands, any character until the end-of-line or '|' is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1921 included. As a consequence of this behavior, you don't always see that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1922 trailing whitespace is included: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1923
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1924 map <F4> o#include
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1925
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1926 Here it is intended, in other cases it might be accidental. To spot these
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1927 problems, you can highlight trailing spaces: >
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1928 match Search /\s\+$/
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1929
1146
0e8da252bda1 updated for version 7.1a
vimboss
parents: 1104
diff changeset
1930 For Unix there is one special way to comment a line, that allows making a Vim
26847
eafb9fd4ec32 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26089
diff changeset
1931 script executable, and it also works in legacy script: >
1146
0e8da252bda1 updated for version 7.1a
vimboss
parents: 1104
diff changeset
1932 #!/usr/bin/env vim -S
0e8da252bda1 updated for version 7.1a
vimboss
parents: 1104
diff changeset
1933 echo "this is a Vim script"
0e8da252bda1 updated for version 7.1a
vimboss
parents: 1104
diff changeset
1934 quit
0e8da252bda1 updated for version 7.1a
vimboss
parents: 1104
diff changeset
1935
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1936
29066
f8e9d5023bf6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29024
diff changeset
1937 Advance information about writing Vim script is in |usr_50.txt|.
28933
57c9377b9c62 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 28917
diff changeset
1938
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1939 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1940
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1941 Next chapter: |usr_42.txt| Add new menus
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1942
14519
5c5908e81e93 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
1943 Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: