annotate runtime/doc/usr_41.txt @ 28917:c5862dfaf0bd v8.2.4981

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