annotate runtime/doc/usr_41.txt @ 27400:722db0819111 v8.2.4228

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