annotate runtime/doc/usr_41.txt @ 31347:56a2af8c0980 v9.0.1007

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