blob: f2ba03f90bcfeab25fc233a80a7dcd7c62fc29c5 [file] [log] [blame]
RestorerZ96509102024-07-11 21:14:15 +02001*repeat.txt* For Vim version 9.1. Last change: 2024 Jul 11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Repeating commands, Vim scripts and debugging *repeating*
8
9Chapter 26 of the user manual introduces repeating |usr_26.txt|.
10
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100111. Single repeats |single-repeat|
122. Multiple repeats |multi-repeat|
133. Complex repeats |complex-repeat|
144. Using Vim scripts |using-scripts|
155. Using Vim packages |packages|
166. Creating Vim packages |package-create|
177. Debugging scripts |debug-scripts|
188. Profiling |profiling|
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20==============================================================================
211. Single repeats *single-repeat*
22
23 *.*
24. Repeat last change, with count replaced with [count].
25 Also repeat a yank command, when the 'y' flag is
Bram Moolenaard4755bb2004-09-02 19:12:26 +000026 included in 'cpoptions'. Does not repeat a
27 command-line command.
Bram Moolenaar071d4272004-06-13 20:20:40 +000028
29Simple changes can be repeated with the "." command. Without a count, the
30count of the last change is used. If you enter a count, it will replace the
Bram Moolenaar92dff182014-02-11 19:15:50 +010031last one. |v:count| and |v:count1| will be set.
32
33If the last change included a specification of a numbered register, the
34register number will be incremented. See |redo-register| for an example how
35to use this.
36
37Note that when repeating a command that used a Visual selection, the same SIZE
38of area is used, see |visual-repeat|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
40 *@:*
41@: Repeat last command-line [count] times.
42 {not available when compiled without the
43 |+cmdline_hist| feature}
44
45
46==============================================================================
472. Multiple repeats *multi-repeat*
48
Bram Moolenaarf84b1222017-06-10 14:29:52 +020049 *:g* *:global* *E148*
Bram Moolenaar071d4272004-06-13 20:20:40 +000050:[range]g[lobal]/{pattern}/[cmd]
51 Execute the Ex command [cmd] (default ":p") on the
52 lines within [range] where {pattern} matches.
53
54:[range]g[lobal]!/{pattern}/[cmd]
55 Execute the Ex command [cmd] (default ":p") on the
56 lines within [range] where {pattern} does NOT match.
57
58 *:v* *:vglobal*
59:[range]v[global]/{pattern}/[cmd]
60 Same as :g!.
61
Bram Moolenaar3ec32172021-05-16 12:39:47 +020062Example: >
63 :g/^Obsolete/d _
64Using the underscore after `:d` avoids clobbering registers or the clipboard.
65This also makes it faster.
66
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000067Instead of the '/' which surrounds the {pattern}, you can use any other
Bram Moolenaarb7398fe2023-05-14 18:50:25 +010068single byte character, but not an alphabetic character, '\', '"', '|' or '!'.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000069This is useful if you want to include a '/' in the search pattern or
70replacement string.
71
72For the definition of a pattern, see |pattern|.
73
Bram Moolenaar32efaf62014-11-05 17:02:17 +010074NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for
75examples.
76
Bram Moolenaar071d4272004-06-13 20:20:40 +000077The global commands work by first scanning through the [range] lines and
78marking each line where a match occurs (for a multi-line pattern, only the
79start of the match matters).
Bram Moolenaar03413f42016-04-12 21:07:15 +020080In a second scan the [cmd] is executed for each marked line, as if the cursor
81was in that line. For ":v" and ":g!" the command is executed for each not
Bram Moolenaar071d4272004-06-13 20:20:40 +000082marked line. If a line is deleted its mark disappears.
83The default for [range] is the whole buffer (1,$). Use "CTRL-C" to interrupt
84the command. If an error message is given for a line, the command for that
85line is aborted and the global command continues with the next marked or
86unmarked line.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010087 *E147*
Bram Moolenaarf84b1222017-06-10 14:29:52 +020088When the command is used recursively, it only works on one line. Giving a
89range is then not allowed. This is useful to find all lines that match a
90pattern and do not match another pattern: >
91 :g/found/v/notfound/{cmd}
92This first finds all lines containing "found", but only executes {cmd} when
93there is no match for "notfound".
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +010095Any Ex command can be used, see |ex-cmd-index|. To execute a Normal mode
96command, you can use the `:normal` command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000097 :g/pat/normal {commands}
98Make sure that {commands} ends with a whole command, otherwise Vim will wait
99for you to type the rest of the command for each match. The screen will not
100have been updated, so you don't know what you are doing. See |:normal|.
101
102The undo/redo command will undo/redo the whole global command at once.
103The previous context mark will only be set once (with "''" you go back to
104where the cursor was before the global command).
105
106The global command sets both the last used search pattern and the last used
107substitute pattern (this is vi compatible). This makes it easy to globally
108replace a string:
109 :g/pat/s//PAT/g
110This replaces all occurrences of "pat" with "PAT". The same can be done with:
111 :%s/pat/PAT/g
112Which is two characters shorter!
113
Bram Moolenaar864207d2008-06-24 22:14:38 +0000114When using "global" in Ex mode, a special case is using ":visual" as a
115command. This will move to a matching line, go to Normal mode to let you
116execute commands there until you use |Q| to return to Ex mode. This will be
117repeated for each matching line. While doing this you cannot use ":global".
118To abort this type CTRL-C twice.
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000119
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120==============================================================================
1213. Complex repeats *complex-repeat*
122
123 *q* *recording*
124q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"}
125 (uppercase to append). The 'q' command is disabled
126 while executing a register, and it doesn't work inside
Bram Moolenaara0ed84a2015-11-19 17:56:13 +0100127 a mapping and |:normal|.
128
129 Note: If the register being used for recording is also
130 used for |y| and |p| the result is most likely not
131 what is expected, because the put will paste the
132 recorded macro and the yank will overwrite the
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200133 recorded macro.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200135 Note: The recording happens while you type, replaying
136 the register happens as if the keys come from a
137 mapping. This matters, for example, for undo, which
138 only syncs when commands were typed.
139
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140q Stops recording. (Implementation note: The 'q' that
141 stops recording is not stored in the register, unless
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200142 it was the result of a mapping)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
144 *@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200145@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 times. Note that register '%' (name of the current
147 file) and '#' (name of the alternate file) cannot be
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100148 used.
149 The register is executed like a mapping, that means
150 that the difference between 'wildchar' and 'wildcharm'
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200151 applies, and undo might not be synced in the same way.
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100152 For "@=" you are prompted to enter an expression. The
153 result of the expression is then executed.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200154 See also |@:|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000156 *@@* *E748*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157@@ Repeat the previous @{0-9a-z":*} [count] times.
158
Bram Moolenaar3ec32172021-05-16 12:39:47 +0200159 *:@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200160:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 command. First set cursor at line [addr] (default is
162 current line). When the last line in the register does
163 not have a <CR> it will be added automatically when
164 the 'e' flag is present in 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 For ":@=" the last used expression is used. The
166 result of evaluating the expression is executed as an
167 Ex command.
168 Mappings are not recognized in these commands.
Bram Moolenaar856c1112020-06-17 21:47:23 +0200169 When the |line-continuation| character (\) is present
170 at the beginning of a line in a linewise register,
171 then it is combined with the previous line. This is
172 useful for yanking and executing parts of a Vim
173 script.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200174 Future: Will execute the register for each line in the
175 address range.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176
Bram Moolenaar3ec32172021-05-16 12:39:47 +0200177:[addr]*{0-9a-z".=+} *:star-compatible*
178 When '*' is present in 'cpoptions' |cpo-star|, use
179 ":*" in the same way as ":@". This is NOT the default
180 when 'nocompatible' is used. When the '*' flag is not
181 present in 'cpoptions', ":*" is an alias for ":'<,'>",
182 select the Visual area |:star|.
183
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 *:@:*
185:[addr]@: Repeat last command-line. First set cursor at line
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200186 [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187
Bram Moolenaar7e1479b2016-09-11 15:07:27 +0200188:[addr]@ *:@@*
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200189:[addr]@@ Repeat the previous :@{register}. First set cursor at
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200190 line [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191
192==============================================================================
1934. Using Vim scripts *using-scripts*
194
195For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
196
197 *:so* *:source* *load-vim-script*
198:so[urce] {file} Read Ex commands from {file}. These are commands that
199 start with a ":".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000200 Triggers the |SourcePre| autocommand.
Bram Moolenaard799daa2022-06-20 11:17:32 +0100201 *:source-range*
Yegappan Lakshmanan35dc1762022-03-22 12:13:54 +0000202:[range]so[urce] [++clear]
203 Read Ex commands from the [range] of lines in the
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +0100204 current buffer. When [range] is omitted read all
205 lines.
Yegappan Lakshmanan35dc1762022-03-22 12:13:54 +0000206
207 When sourcing commands from the current buffer, the
208 same script-ID |<SID>| is used even if the buffer is
209 sourced multiple times. If a buffer is sourced more
210 than once, then the functions in the buffer are
211 defined again.
212
213 To source a range of lines that doesn't start with the
214 |:vim9script| command in Vim9 script context, the
Bram Moolenaar46eea442022-03-30 10:51:39 +0100215 |:vim9cmd| modifier can be used. If you use a Visual
216 selection and type ":", the range in the form "'<,'>"
217 can come before it: >
218 :'<,'>vim9cmd source
219< Otherwise the range goes after the modifier and must
220 have a colon prefixed, like all Vim9 ranges: >
221 :vim9cmd :5,9source
Yegappan Lakshmanan35dc1762022-03-22 12:13:54 +0000222
Bram Moolenaar46eea442022-03-30 10:51:39 +0100223< When a range of lines in a buffer is sourced in the
Yegappan Lakshmanan35dc1762022-03-22 12:13:54 +0000224 Vim9 script context, the previously defined
225 script-local variables and functions are not cleared.
226 This works like the range started with the
227 ":vim9script noclear" command. The "++clear" argument
228 can be used to clear the script-local variables and
229 functions before sourcing the script. This works like
Bram Moolenaar46eea442022-03-30 10:51:39 +0100230 the range started with the `:vim9script` command
Yegappan Lakshmanan35dc1762022-03-22 12:13:54 +0000231 without the "noclear" argument. See |vim9-reload| for
232 more information.
233 Examples: >
Yegappan Lakshmanan35dc1762022-03-22 12:13:54 +0000234 :4,5source
Yegappan Lakshmanan35dc1762022-03-22 12:13:54 +0000235 :10,18source ++clear
Bram Moolenaarb529cfb2022-07-25 15:42:07 +0100236<
Bram Moolenaar68e65602019-05-26 21:33:31 +0200237 *:source!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238:so[urce]! {file} Read Vim commands from {file}. These are commands
239 that are executed from Normal mode, like you type
240 them.
241 When used after |:global|, |:argdo|, |:windo|,
242 |:bufdo|, in a loop or when another command follows
243 the display won't be updated while executing the
244 commands.
Bram Moolenaar68e65602019-05-26 21:33:31 +0200245 Cannot be used in the |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
247 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100248:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100250 by 'runtimepath' and/or 'packpath'. There is no error
251 for non-existing files.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100252
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100253 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 :runtime syntax/c.vim
255
256< There can be multiple {file} arguments, separated by
257 spaces. Each {file} is searched for in the first
258 directory from 'runtimepath', then in the second
259 directory, etc. Use a backslash to include a space
260 inside {file} (although it's better not to use spaces
261 in file names, it causes trouble).
262
263 When [!] is included, all found files are sourced.
264 When it is not included only the first found file is
265 sourced.
266
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100267 When [where] is omitted only 'runtimepath' is used.
268 Other values:
269 START search under "start" in 'packpath'
Bram Moolenaar938ae282023-02-20 20:44:55 +0000270 OPT search under "opt" in 'packpath'
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100271 PACK search under "start" and "opt" in
272 'packpath'
273 ALL first use 'runtimepath', then search
274 under "start" and "opt" in 'packpath'
275
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 When {file} contains wildcards it is expanded to all
277 matching files. Example: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200278 :runtime! plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000280 starting up. This similar command: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200281 :runtime plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282< would source the first file only.
283
284 When 'verbose' is one or higher, there is a message
285 when no file could be found.
286 When 'verbose' is two or higher, there is a message
287 about each searched file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100289 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100290:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
291 and source any plugin files found. The directory must
292 match:
293 pack/*/opt/{name} ~
294 The directory is added to 'runtimepath' if it wasn't
295 there yet.
Bram Moolenaar26852122016-05-24 20:02:38 +0200296 If the directory pack/*/opt/{name}/after exists it is
297 added at the end of 'runtimepath'.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100298
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100299 If loading packages from "pack/*/start" was skipped,
300 then this directory is searched first:
301 pack/*/start/{name} ~
302
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100303 Note that {name} is the directory name, not the name
Bram Moolenaar03413f42016-04-12 21:07:15 +0200304 of the .vim file. All the files matching the pattern
305 pack/*/opt/{name}/plugin/**/*.vim ~
306 will be sourced. This allows for using subdirectories
307 below "plugin", just like with plugins in
308 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100309
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100310 If the filetype detection was not enabled yet (this
Bram Moolenaar10e8ff92023-06-10 21:40:39 +0100311 is usually done with a `syntax enable` or `filetype on`
312 command in your .vimrc file), this will also look
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100313 for "{name}/ftdetect/*.vim" files.
314
315 When the optional ! is added no plugin files or
316 ftdetect scripts are loaded, only the matching
317 directories are added to 'runtimepath'. This is
318 useful in your .vimrc. The plugins will then be
Bram Moolenaar2346a632021-06-13 19:02:49 +0200319 loaded during initialization, see |load-plugins| (note
320 that the loading order will be reversed, because each
321 directory is inserted before others).
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +0200322 Note that for ftdetect scripts to be loaded
323 you will need to write `filetype plugin indent on`
324 AFTER all `packadd!` commands.
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100325
326 Also see |pack-add|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200327 {only available when compiled with |+eval|}
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100328
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100329 *:packl* *:packloadall*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200330:packl[oadall][!] Load all packages in the "start" directory under each
331 entry in 'packpath'.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100332
Bram Moolenaar03413f42016-04-12 21:07:15 +0200333 First all the directories found are added to
334 'runtimepath', then the plugins found in the
335 directories are sourced. This allows for a plugin to
336 depend on something of another plugin, e.g. an
337 "autoload" directory. See |packload-two-steps| for
338 how this can be useful.
339
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100340 This is normally done automatically during startup,
341 after loading your .vimrc file. With this command it
342 can be done earlier.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200343
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200344 Packages will be loaded only once. Using
345 `:packloadall` a second time will have no effect.
346 When the optional ! is added this command will load
347 packages even when done before.
348
349 Note that when using `:packloadall` in the |vimrc|
350 file, the 'runtimepath' option is updated, and later
351 all plugins in 'runtimepath' will be loaded, which
352 means they are loaded again. Plugins are expected to
353 handle that.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200354
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200355 An error only causes sourcing the script where it
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100356 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100357 See |packages|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200358 {only available when compiled with |+eval|}
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100359
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
361 Specify the character encoding used in the script.
362 The following lines will be converted from [encoding]
363 to the value of the 'encoding' option, if they are
364 different. Examples: >
365 scriptencoding iso-8859-5
366 scriptencoding cp932
367<
368 When [encoding] is empty, no conversion is done. This
369 can be used to restrict conversion to a sequence of
370 lines: >
371 scriptencoding euc-jp
372 ... lines to be converted ...
373 scriptencoding
374 ... not converted ...
375
376< When conversion isn't supported by the system, there
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200377 is no error message and no conversion is done. When a
378 line can't be converted there is no error and the
379 original line is kept.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380
381 Don't use "ucs-2" or "ucs-4", scripts cannot be in
382 these encodings (they would contain NUL bytes).
383 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200384 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 to use ":scriptencoding utf-8" then.
386
Bram Moolenaar3df01732017-02-17 22:47:16 +0100387 If you set the 'encoding' option in your |.vimrc|,
388 `:scriptencoding` must be placed after that. E.g.: >
389 set encoding=utf-8
390 scriptencoding utf-8
391<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200393:scriptv[ersion] {version} *:scriptv* *:scriptversion*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000394 *E999* *E984* *E1040*
Bram Moolenaar62e1bb42019-04-08 16:25:07 +0200395 Specify the version of Vim for the lines that follow
396 in the same file. Only applies at the toplevel of
397 sourced scripts, not inside functions.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200398
399 If {version} is higher than what the current Vim
400 version supports E999 will be given. You either need
401 to rewrite the script to make it work with an older
402 Vim version, or update Vim to a newer version. See
403 |vimscript-version| for what changed between versions.
404
Bram Moolenaarfd218c82022-01-18 16:26:24 +0000405:vim9s[cript] [noclear] *:vim9s* *:vim9script*
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100406 Marks a script file as containing |Vim9-script|
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000407 commands. Also see |vim9-namespace|. *E1038*
408 Must be the first command in the file. *E1039*
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100409 For [noclear] see |vim9-reload|.
410 Without the |+eval| feature this changes the syntax
411 for some commands.
Bram Moolenaar39f3b142021-02-14 12:57:36 +0100412 See |:vim9cmd| for executing one command with Vim9
413 syntax and semantics.
Bram Moolenaar2346a632021-06-13 19:02:49 +0200414
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100415 *:scr* *:scriptnames*
416:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaarfd218c82022-01-18 16:26:24 +0000417 first encountered. The number is used for the script
418 ID |<SID>|.
Bram Moolenaar6079da72022-01-18 14:16:59 +0000419 For a script that was used with `import autoload` but
420 was not actually sourced yet an "A" is shown after the
421 script ID.
Bram Moolenaar753885b2022-08-24 16:30:36 +0100422 For a script that was referred to by one name but
423 after resolving symbolic links got sourced with
424 another name the other script is after "->". E.g.
425 "20->22" means script 20 was sourced as script 22.
Bram Moolenaardd60c362023-02-27 15:49:53 +0000426 Also see `getscriptinfo()`.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200427 {not available when compiled without the |+eval|
428 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100430:scr[iptnames][!] {scriptId} *:script*
Bram Moolenaar9d87a372018-12-18 21:41:50 +0100431 Edit script {scriptId}. Although ":scriptnames name"
432 works, using ":script name" is recommended.
433 When the current buffer can't be |abandon|ed and the !
434 is not present, the command fails.
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100435
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436 *:fini* *:finish* *E168*
437:fini[sh] Stop sourcing a script. Can only be used in a Vim
438 script file. This is a quick way to skip the rest of
439 the file. If it is used after a |:try| but before the
440 matching |:finally| (if present), the commands
441 following the ":finally" up to the matching |:endtry|
442 are executed first. This process applies to all
443 nested ":try"s in the script. The outermost ":endtry"
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200444 then stops sourcing the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445
446All commands and command sequences can be repeated by putting them in a named
447register and then executing it. There are two ways to get the commands in the
448register:
449- Use the record command "q". You type the commands once, and while they are
450 being executed they are stored in a register. Easy, because you can see
451 what you are doing. If you make a mistake, "p"ut the register into the
452 file, edit the command sequence, and then delete it into the register
453 again. You can continue recording by appending to the register (use an
454 uppercase letter).
455- Delete or yank the command sequence into the register.
456
457Often used command sequences can be put under a function key with the ':map'
458command.
459
460An alternative is to put the commands in a file, and execute them with the
461':source!' command. Useful for long command sequences. Can be combined with
462the ':map' command to put complicated commands under a function key.
463
Yegappan Lakshmanan85b43c62022-03-21 19:45:17 +0000464The ':source' command reads Ex commands from a file or a buffer line by line.
465You will have to type any needed keyboard input. The ':source!' command reads
466from a script file character by character, interpreting each character as if
467you typed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468
469Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
470you ':source' a file with the line "!ls" in it, you will have to type the
471<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
472the next characters from that file are read until a <CR> is found. You will
473not have to type <CR> yourself, unless ":!ls" was the last line in the file.
474
475It is possible to put ':source[!]' commands in the script file, so you can
476make a top-down hierarchy of script files. The ':source' command can be
477nested as deep as the number of files that can be opened at one time (about
47815). The ':source!' command can be nested up to 15 levels deep.
479
480You can use the "<sfile>" string (literally, this is not a special key) inside
481of the sourced file, in places where a file name is expected. It will be
482replaced by the file name of the sourced file. For example, if you have a
483"other.vimrc" file in the same directory as your ".vimrc" file, you can source
484it from your ".vimrc" file with this command: >
485 :source <sfile>:h/other.vimrc
486
487In script files terminal-dependent key codes are represented by
488terminal-independent two character codes. This means that they can be used
489in the same way on different kinds of terminals. The first character of a
490key code is 0x80 or 128, shown on the screen as "~@". The second one can be
491found in the list |key-notation|. Any of these codes can also be entered
492with CTRL-V followed by the three digit decimal code. This does NOT work for
493the <t_xx> termcap codes, these can only be used in mappings.
494
495 *:source_crnl* *W15*
Bram Moolenaar6f345a12019-12-17 21:27:18 +0100496Win32: Files that are read with ":source" normally have <CR><NL> <EOL>s.
497These always work. If you are using a file with <NL> <EOL>s (for example, a
498file made on Unix), this will be recognized if 'fileformats' is not empty and
499the first line does not end in a <CR>. This fails if the first line has
500something like ":map <F1> :help^M", where "^M" is a <CR>. If the first line
501ends in a <CR>, but following ones don't, you will get an error message,
502because the <CR> from the first lines will be lost.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaar520470a2005-06-16 21:59:56 +0000504Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505These always work. If you are using a file with <NL> <EOL>s (for example, a
506file made on Unix), this will be recognized if 'fileformats' is not empty and
507the first line does not end in a <CR>. Be careful not to use a file with <NL>
508linebreaks which has a <CR> in first line.
509
510On other systems, Vim expects ":source"ed files to end in a <NL>. These
511always work. If you are using a file with <CR><NL> <EOL>s (for example, a
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100512file made on MS-Windows), all lines will have a trailing <CR>. This may cause
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513problems for some commands (e.g., mappings). There is no automatic <EOL>
514detection, because it's common to start with a line that defines a mapping
515that ends in a <CR>, which will confuse the automaton.
516
517 *line-continuation*
518Long lines in a ":source"d Ex command script file can be split by inserting
519a line continuation symbol "\" (backslash) at the start of the next line.
520There can be white space before the backslash, which is ignored.
521
522Example: the lines >
523 :set comments=sr:/*,mb:*,el:*/,
524 \://,
525 \b:#,
526 \:%,
527 \n:>,
528 \fb:-
529are interpreted as if they were given in one line:
530 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
531
532All leading whitespace characters in the line before a backslash are ignored.
533Note however that trailing whitespace in the line before it cannot be
534inserted freely; it depends on the position where a command is split up
535whether additional whitespace is allowed or not.
536
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100537When a space is required it's best to put it right after the backslash. A
538space at the end of a line is hard to see and may be accidentally deleted. >
539 :syn match Comment
540 \ "very long regexp"
541 \ keepend
542
Bram Moolenaara4d131d2021-12-27 21:33:07 +0000543In |Vim9| script the backslash can often be omitted, but not always.
544See |vim9-line-continuation|.
545
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546There is a problem with the ":append" and ":insert" commands: >
547 :1append
548 \asdf
549 .
550The backslash is seen as a line-continuation symbol, thus this results in the
551command: >
552 :1appendasdf
553 .
554To avoid this, add the 'C' flag to the 'cpoptions' option: >
555 :set cpo+=C
556 :1append
557 \asdf
558 .
559 :set cpo-=C
560
561Note that when the commands are inside a function, you need to add the 'C'
562flag when defining the function, it is not relevant when executing it. >
563 :set cpo+=C
564 :function Foo()
565 :1append
566 \asdf
567 .
568 :endfunction
569 :set cpo-=C
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200570<
571 *line-continuation-comment*
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200572To add a comment in between the lines start with '"\ '. Notice the space
573after the backslash. Example: >
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200574 let array = [
575 "\ first entry comment
576 \ 'first',
577 "\ second entry comment
578 \ 'second',
579 \ ]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580
581Rationale:
582 Most programs work with a trailing backslash to indicate line
583 continuation. Using this in Vim would cause incompatibility with Vi.
584 For example for this Vi mapping: >
585 :map xx asdf\
586< Therefore the unusual leading backslash is used.
587
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200588 Starting a comment in a continuation line results in all following
589 continuation lines to be part of the comment. Since it was like this
590 for a long time, when making it possible to add a comment halfway a
591 sequence of continuation lines, it was not possible to use \", since
592 that was a valid continuation line. Using '"\ ' comes closest, even
593 though it may look a bit weird. Requiring the space after the
594 backslash is to make it very unlikely this is a normal comment line.
595
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01005975. Using Vim packages *packages*
598
599A Vim package is a directory that contains one or more plugins. The
600advantages over normal plugins:
601- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100602 Thus the files are not mixed with files of other plugins. That makes it
603 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100604- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100605 easy to update.
606- A package can contain multiple plugins that depend on each other.
607- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100608 ones that are only loaded when needed with `:packadd`.
609
610
611Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100612
613Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100614package from a zip archive "/tmp/foopack.zip":
615 % mkdir -p ~/.vim/pack/foo
616 % cd ~/.vim/pack/foo
617 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100618
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100619The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100620
621You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100622 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100623 pack/foo/start/foobar/plugin/foo.vim
624 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100625 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100626
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100627When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaar03413f42016-04-12 21:07:15 +0200628'packpath' for plugins under the "pack/*/start" directory. First all those
629directories are added to 'runtimepath'. Then all the plugins are loaded.
630See |packload-two-steps| for how these two steps can be useful.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100631
Bram Moolenaar3c053a12022-10-16 13:11:12 +0100632To allow for calling into package functionality while parsing your .vimrc,
633|:colorscheme| and |autoload| will both automatically search under 'packpath'
634as well in addition to 'runtimepath'. See the documentation for each for
635details.
636
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100637In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100638"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100639
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100640If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
641find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100642
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100643Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100644
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100645Note that the files under "pack/foo/opt" are not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100646ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100647is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100648
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100649Loading packages automatically will not happen if loading plugins is disabled,
650see |load-plugins|.
651
652To load packages earlier, so that 'runtimepath' gets updated: >
653 :packloadall
654This also works when loading plugins is disabled. The automatic loading will
655only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100656
Bram Moolenaar26852122016-05-24 20:02:38 +0200657If the package has an "after" directory, that directory is added to the end of
658'runtimepath', so that anything there will be loaded later.
659
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100660
661Using a single plugin and loading it automatically ~
662
663If you don't have a package but a single plugin, you need to create the extra
664directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100665 % mkdir -p ~/.vim/pack/foo/start/foobar
666 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100667 % unzip /tmp/someplugin.zip
668
669You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100670 pack/foo/start/foobar/plugin/foo.vim
671 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100672
673From here it works like above.
674
675
676Optional plugins ~
677 *pack-add*
678To load an optional plugin from a pack use the `:packadd` command: >
679 :packadd foodebug
680This searches for "pack/*/opt/foodebug" in 'packpath' and will find
681~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
682
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100683This could be done if some conditions are met. For example, depending on
684whether Vim supports a feature or a dependency is missing.
685
686You can also load an optional plugin at startup, by putting this command in
687your |.vimrc|: >
688 :packadd! foodebug
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200689The extra "!" is so that the plugin isn't loaded if Vim was started with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100690|--noplugin|.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100691
692It is perfectly normal for a package to only have files in the "opt"
693directory. You then need to load each plugin when you want to use it.
694
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100695
696Where to put what ~
697
698Since color schemes, loaded with `:colorscheme`, are found below
699"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
700you put them below "pack/*/opt", for example
701".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
702
703Filetype plugins should go under "pack/*/start", so that they are always
704found. Unless you have more than one plugin for a file type and want to
705select which one to load with `:packadd`. E.g. depending on the compiler
706version: >
707 if foo_compiler_version > 34
708 packadd foo_new
709 else
710 packadd foo_old
711 endif
712
713The "after" directory is most likely not useful in a package. It's not
714disallowed though.
715
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100716==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01007176. Creating Vim packages *package-create*
718
719This assumes you write one or more plugins that you distribute as a package.
720
721If you have two unrelated plugins you would use two packages, so that Vim
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200722users can choose what they include or not. Or you can decide to use one
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200723package with optional plugins, and tell the user to add the preferred ones with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100724`:packadd`.
725
726Decide how you want to distribute the package. You can create an archive or
727you could use a repository. An archive can be used by more users, but is a
728bit harder to update to a new version. A repository can usually be kept
729up-to-date easily, but it requires a program like "git" to be available.
730You can do both, github can automatically create an archive for a release.
731
732Your directory layout would be like this:
Bram Moolenaar938ae282023-02-20 20:44:55 +0000733 start/foobar/plugin/foo.vim " always loaded, defines commands
734 start/foobar/plugin/bar.vim " always loaded, defines commands
735 start/foobar/autoload/foo.vim " loaded when foo command used
736 start/foobar/doc/foo.txt " help for foo.vim
737 start/foobar/doc/tags " help tags
RestorerZ96509102024-07-11 21:14:15 +0200738 start/foobar/lang/<lang_id>/LC_MESSAGES/foobar.mo
Christ van Willegence0ef912024-06-20 23:41:59 +0200739 " messages for the plugin in the
740 " <lang_id> language. These files are
741 " optional.
Bram Moolenaar938ae282023-02-20 20:44:55 +0000742 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
743 opt/fooextra/autoload/extra.vim " loaded when extra command used
744 opt/fooextra/doc/extra.txt " help for extra.vim
745 opt/fooextra/doc/tags " help tags
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100746
747This allows for the user to do: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +0100748 mkdir ~/.vim/pack
749 cd ~/.vim/pack
750 git clone https://github.com/you/foobar.git myfoobar
RestorerZ96509102024-07-11 21:14:15 +0200751<
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100752Here "myfoobar" is a name that the user can choose, the only condition is that
753it differs from other packages.
754
755In your documentation you explain what the plugins do, and tell the user how
756to load the optional plugin: >
757 :packadd! fooextra
RestorerZ96509102024-07-11 21:14:15 +0200758<
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100759You could add this packadd command in one of your plugins, to be executed when
760the optional plugin is needed.
761
RestorerZ96509102024-07-11 21:14:15 +0200762 *package-doc* *package-documentation*
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100763Run the `:helptags` command to generate the doc/tags file. Including this
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200764generated file in the package means that the user can drop the package in the
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100765pack directory and the help command works right away. Don't forget to re-run
766the command after changing the plugin help: >
767 :helptags path/start/foobar/doc
768 :helptags path/opt/fooextra/doc
Christ van Willegence0ef912024-06-20 23:41:59 +0200769<
RestorerZ96509102024-07-11 21:14:15 +0200770 *package-translation*
771In order for a plugin to display translated messages, a few steps are
772required.
773The author of the plugin who likes to translate messages must define the name
774of the package and the location of the directory where the translations can be
775found using the |bindtextdomain()| function: >
776 :call bindtextdomain("foobar",
777 \ fnamemodify(expand("<script>"), ':p:h') .. '/../lang/')
Christ van Willegence0ef912024-06-20 23:41:59 +0200778<
RestorerZ96509102024-07-11 21:14:15 +0200779Where:
780 "foobar" is the unique package identifier by which the |gettext()|
781 function will later search for translation strings for this
782 plugin.
783 "lang/" is the relative or absolute path to the directory structure
784 where the translation file is located.
Christ van Willegence0ef912024-06-20 23:41:59 +0200785
RestorerZ96509102024-07-11 21:14:15 +0200786The directory structure where the message translation files should be placed
787is (from the top-level directory of the package):
788"lang/<lang_id>/LC_MESSAGES". For the format of <lang_id> see |multi-lang|.
789This function needs to be called only once during the initialization of the
790plugin.
791Once this is done, the |gettext()| function can be used to retrieve translated
792messages: >
793 :echo gettext("Hello", "foobar")
Christ van Willegence0ef912024-06-20 23:41:59 +0200794<
RestorerZ96509102024-07-11 21:14:15 +0200795Where:
796 "Hello" the message "Hello" to be translated into the user's language |:lang|
797 "foobar" the package identifier, which was previously defined using the
798 |bindtextdomain()| function.
799
800After that you need to create a template file for translation - POT-file.
801To do this, execute the following commands (using the Vim repository): >
802 cd ~/forkvim/src/po
803 make -f Makefile "PLUGPACKAGE={package}" \
804 "PO_PLUG_INPUTLIST={path/to/scripts-that-need-translations.vim}" \
805 ["POT_PLUGPACKAGE_PATH={path/where/to/write/{package}.pot}" \]
806 ["VIMPROG={path/to/vim} \]
807 {package}.pot
808<
809Where:
810PLUGPACKAGE A variable containing the name of the package that we
811 specified in the |bindtextdomain()| and
812 |gettext()| functions, for example, "foobar".
813PO_PLUG_INPUTLIST A variable containing scripts that have strings
814 to translate, i.e. where we specified the |gettext()|
815 function. Scripts are specified with an absolute
816 or relative path. Example: start/foobar/plugin/bar.vim
817 use blanks to separate scripts.
818POT_PLUGPACKAGE_PATH A variable containing the directory where the prepared
819 POT file will be saved. This is not a required variable,
820 if no directory is specified, then the POT file will
821 be placed in the "src/po" directory.
822VIMPROG A variable containing a directory with a working Vim.
823 If the Vim editor is already built and installed, and
824 is contained in the $PATH environment variable,
825 then you can specify just the name of the vim
826 executable.
827{package}.pot This is the Target. It is specified as the name of
828 the package, for example, "foobar" with the addition
829 of the .pot extension.
830Once a POT file is created, its contents are copied into separate PO files for
831each language for which the translation will be prepared.
832
833When the translation is finished, it is necessary to convert the PO files into
834binary MO-files format and place these MO-files into the "lang/" directory, the
835structure of which we created earlier.
836To do this, run the following commands:
837>
838 cd ~/forkvim/src/po
839 make -f Makefile "PLUGPACKAGE={package}" \
840 "PO_PLUGPACKAGE={path/to/{lang}.po}" \
841 ["MO_PLUGPACKAGE_PATH={path/to/lang/<lang_id>/LC_MESSAGES}" \]
842 {package}.mo
843<
844Where:
845PLUGPACKAGE A variable containing the name of the package that we
846 specified in the |bindtextdomain()| and |gettext()|
847 functions, for example, "foobar".
848PO_PLUGPACKAGE A variable containing a PO file. The file is specified
849 with an absolute or relative path. For example,
850 "~/myproject/translate/en.po"
851MO_PLUGPACKAGE_PATH A variable containing the structure of the "lang/"
852 directory, where the file with translations will be
853 placed, for example, "foobar.mo". This is not
854 a required variable, if the directory is not specified,
855 the MO file will be saved in the "src/po" directory.
856{package}.mo This is the Target. It is specified as the name of
857 the package, for example, "foobar" with the addition
858 of the .mo extension.
859
860 *package-translate_example*
861Let's show it all on some concrete example and translate the
862"ftplugin/aap.vim" file into Russian and German.
863
864First, let's prepare the "aap.vim" file, specifying |bindtextdomain()| and
865|gettext()| function calls in it.
866>
867 " Only do this when not done yet for this buffer
868 if exists("b:did_ftplugin")
869 finish
870 endif
871
872 " Don't load another plugin for this buffer
873 let b:did_ftplugin = 1
874 call bindtextdomain("aap", fnamemodify(expand("<script>"), ':p:h') .. '/../lang/')
875
876 " Reset 'formatoptions', 'comments', 'commentstring' and 'expandtab' to undo
877 " this plugin.
878 let b:undo_ftplugin = "setl fo< com< cms< et<"
879
880 " Set 'formatoptions' to break comment lines but not other lines,
881 " and insert the comment leader when hitting <CR> or using "o".
882 setlocal fo-=t fo+=croql
883
884 " Set 'comments' to format dashed lists in comments.
885 setlocal comments=s:#\ -,m:#\ \ ,e:#,n:#,fb:-
886 setlocal commentstring=#\ %s
887
888 " Expand tabs to spaces to avoid trouble.
889 setlocal expandtab
890
891 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
892 let b:browsefilter = gettext("Aap Recipe Files (*.aap)\t*.aap\n", "aap")
893 if has("win32")
894 let b:browsefilter ..= gettext("All Files (*.*)\t*\n", "aap")
895 else
896 let b:browsefilter ..= gettext("All Files (*)\t*\n", "aap")
897 endif
898 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
899 endif
900<
901Now let's create a POT file for it (example uses Windows paths):
902>
903 cd /d f:\forkvim\src\po
904 (the following command must be entered in one line, here it is separated for example)
905 nmake.exe -f Make_mvc.mak "PLUGPACKAGE=aap"
906 "PO_PLUG_INPUTLIST=d:\Programs\vim\vim91\ftplugin\aap.vim"
907 "POT_PLUGPACKAGE_PATH=e:\project\translate\plugins"
908 "VIMPROG=d:\Programs\vim\vim91\vim.exe"
909 aap.pot
910<
911After the POT file of our package is created, go to the directory where we
912saved it and perform the translation.
913>
914 cd /d e:\project\translate\plugins
915 copy aap.pot ru.po
916 copy aap.pot de.po
917<
918We have prepared a PO file with a translation into Russian:
919 # Test plugins translate ~
920 # ~
921 msgid "" ~
922 msgstr "" ~
923 "Project-Id-Version: aap\n" ~
924 "Report-Msgid-Bugs-To: \n" ~
925 "POT-Creation-Date: 2024-06-23 14:58+0300\n" ~
926 "PO-Revision-Date: 2024-06-23 14:58+0300\n" ~
927 "Last-Translator: Restorer\n" ~
928 "Language-Team: RuVim\n" ~
929 "Language: ru\n" ~
930 "MIME-Version: 1.0\n" ~
931 "Content-Type: text/plain; charset=UTF-8\n" ~
932 "Content-Transfer-Encoding: 8bit\n" ~
933
934 #: ../../runtime/ftplugin/aap.vim:32 ~
935 msgid "Aap Recipe Files (*.aap)\t*.aap\n" ~
936 msgstr "Файлы инструкций Aap (*.aap)\t*.aap\n" ~
937
938 #: ../../runtime/ftplugin/aap.vim:34 ~
939 msgid "All Files (*.*)\t*\n" ~
940 msgstr "Все файлы (*.*)\t*\n" ~
941
942 #: ../../runtime/ftplugin/aap.vim:36 ~
943 msgid "All Files (*)\t*\n" ~
944 msgstr "Все файлы (*)\t*\n" ~
945
946And the PO file in German:
947 # Test plugins translate~
948 #~
949 msgid ""~
950 msgstr ""~
951 "Project-Id-Version: aap\n"~
952 "Report-Msgid-Bugs-To: \n"~
953 "POT-Creation-Date: 2024-06-23 14:58+0300\n"~
954 "PO-Revision-Date: 2024-06-24 13:11+0300\n"~
955 "Last-Translator: Restorer\n"~
956 "Language-Team: German\n"~
957 "Language: de\n"~
958 "MIME-Version: 1.0\n"~
959 "Content-Type: text/plain; charset=UTF-8\n"~
960 "Content-Transfer-Encoding: 8bit\n"~
961
962 #: ../../runtime/ftplugin/aap.vim:32~
963 msgid "Aap Recipe Files (*.aap)\t*.aap\n"~
964 msgstr "Aap-Rezeptdateien (*.aap)\t*.aap\n"~
965
966 #: ../../runtime/ftplugin/aap.vim:34~
967 msgid "All Files (*.*)\t*\n"~
968 msgstr "Alle Dateien (*.*)\t*.*\n"~
969
970 #: ../../runtime/ftplugin/aap.vim:36~
971 msgid "All Files (*)\t*\n"~
972 msgstr "Alle Dateien (*)\t*\n"~
973
974Now convert these files into MO files so that |gettext()| can display message
975translations. Note that since this is not a specialized plugin package, we
976will put the MO files in the "lang/" directory of the Vim editor.
977Type the following commands:
978>
979 cd /d f:\forkvim\src\po
980 (the following command must be entered in one line, here it is separated for example)
981 For Russian:
982 nmake.exe -f Make_mvc.mak "PLUGPACKAGE=aap"
983 "PO_PLUGPACKAGE=e:\project\translate\plugins\ru.po"
984 "MO_PLUGPACKAGE_PATH=d:\Programs\vim\vim91\lang\ru\LC_MESSAGES"
985 aap.mo
986 For German:
987 nmake.exe -f Make_mvc.mak "PLUGPACKAGE=aap"
988 "PO_PLUGPACKAGE=e:\project\translate\plugins\de.po"
989 "MO_PLUGPACKAGE_PATH=d:\Programs\vim\vim91\lang\de\LC_MESSAGES"
990 aap.mo
991<
992That's it, the translations are ready and you can see the plugin's messages
993in your native language.
994
995Let's also try to translate a plugin package. For example, when a package
996contains several scripts containing strings that need to be translated.
997For example, let's translate the "netrw" package into Japanese.
998For this example, we will translate only a few lines from this package.
999Let's prepare the scripts where we need to translate the message strings.
1000
1001The file "autoload\netrw.vim":
1002>
1003 " Load Once:
1004 if &cp || exists("g:loaded_netrw")
1005 finish
1006 endif
1007 call bindtextdomain("netrw", fnamemodify(expand("<script>"), ':p:h') .. '/../lang/')
1008
1009 " Check that vim has patches that netrw requires.
1010 " Patches needed for v7.4: 1557, and 213.
1011 " (netrw will benefit from vim's having patch#656, too)
1012 let s:needspatches=[1557,213]
1013 if exists("s:needspatches")
1014 for ptch in s:needspatches
1015 if v:version < 704 || (v:version == 704 && !has("patch".ptch))
1016 if !exists("s:needpatch{ptch}")
1017 unsilent echomsg gettext("***sorry*** this version of netrw requires vim v7.4 with patch#", "netrw") .. ptch
1018 endif
1019 let s:needpatch{ptch}= 1
1020 finish
1021 endif
1022 endfor
1023 endif
1024<
1025The file "autoload\netrwSettings.vim":
1026>
1027 " Load Once:
1028 if exists("g:loaded_netrwSettings") || &cp
1029 finish
1030 endif
1031 call bindtextdomain("netrw", fnamemodify(expand("<script>"), ':p:h') .. '/../lang/')
1032 let g:loaded_netrwSettings = "v18"
1033 if v:version < 700
1034 echohl WarningMsg
1035 echo gettext("***warning*** this version of netrwSettings needs vim 7.0", "netrw")
1036 echohl Normal
1037 finish
1038 endif
1039<
1040Now we will prepare a POT file for further translation of messages.
1041Execute the following commands:
1042>
1043 cd ~/forkvim/src/po
1044 make -f Makefile "VIMPROG=/usr/local/bin/vim" "PLUGPACKAGE=netrw" \
1045 "POT_PLUGPACKAGE_PATH=~/project/translate/plugins" \
1046 "PO_PLUG_INPUTLIST=../../runtime/autoload/netrw.vim
1047 ../../runtime/autoload/netrwSettings.vim" \
1048 netrw.pot
1049<
1050Go to the directory with the POT file and make the translation:
1051>
1052 cd ~/project/translate/plugins
1053 cp ./netrw.pot ja.po
1054<
1055When we have the translation ready in the "ja.po" file:
1056 # Test plugins translate ~
1057 # ~
1058 msgid "" ~
1059 msgstr "" ~
1060 "Project-Id-Version: netrw\n" ~
1061 "Report-Msgid-Bugs-To: \n" ~
1062 "POT-Creation-Date: 2024-06-23 17:14+0300\n" ~
1063 "PO-Revision-Date: 2024-06-23 17:14+0300\n" ~
1064 "Last-Translator: Restorer\n" ~
1065 "Language-Team: Japanese\n" ~
1066 "Language: ja\n" ~
1067 "MIME-Version: 1.0\n" ~
1068 "Content-Type: text/plain; charset=UTF-8\n" ~
1069 "Content-Transfer-Encoding: 8bit\n" ~
1070
1071 #: ../../runtime/autoload/netrw.vim:51 ~
1072 msgid "***sorry*** this version of netrw requires vim v7.4 with patch#" ~
1073 msgstr "" ~
1074 "***申し訳ありません***このバージョンのnetrwには、パッチ付きのvim v7.4が必要です#" ~
1075
1076 #: ../../runtime/autoload/netrwSettings.vim:28 ~
1077 msgid "***warning*** this version of netrwSettings needs vim 7.0" ~
1078 msgstr "***警告***このバージョンのnetrwSettingsにはvim7.0が必要です" ~
1079
1080Convert ja.po to a MO file:
1081>
1082 cd ~/forkvim/src/po
1083 make -f Makefile "PLUGPACKAGE=netrw" \
1084 "PO_PLUGPACKAGE=~/project/translate/plugins/ja.po" \
1085 "MO_PLUGPACKAGE_PATH=/usr/local/share/vim/vim91/lang/ja/LC_MESSAGES" \
1086 netrw.mo
1087<
1088Executing those steps will allow you to get translation of any third-party
1089plug-in packages.
Bram Moolenaar03413f42016-04-12 21:07:15 +02001090
1091Dependencies between plugins ~
1092 *packload-two-steps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001093Suppose you have two plugins that depend on the same functionality. You can
Bram Moolenaar03413f42016-04-12 21:07:15 +02001094put the common functionality in an autoload directory, so that it will be
1095found automatically. Your package would have these files:
1096
1097 pack/foo/start/one/plugin/one.vim >
1098 call foolib#getit()
1099< pack/foo/start/two/plugin/two.vim >
1100 call foolib#getit()
1101< pack/foo/start/lib/autoload/foolib.vim >
1102 func foolib#getit()
1103
1104This works, because loading packages will first add all found directories to
1105'runtimepath' before sourcing the plugins.
1106
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01001107==============================================================================
11087. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109
1110Besides the obvious messages that you can add to your scripts to find out what
1111they are doing, Vim offers a debug mode. This allows you to step through a
1112sourced file or user function and set breakpoints.
1113
1114NOTE: The debugging mode is far from perfect. Debugging will have side
1115effects on how Vim works. You cannot use it to debug everything. For
1116example, the display is messed up by the debugging messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
1118An alternative to debug mode is setting the 'verbose' option. With a bigger
1119number it will give more verbose messages about what Vim is doing.
1120
1121
1122STARTING DEBUG MODE *debug-mode*
1123
1124To enter debugging mode use one of these methods:
11251. Start Vim with the |-D| argument: >
1126 vim -D file.txt
1127< Debugging will start as soon as the first vimrc file is sourced. This is
1128 useful to find out what is happening when Vim is starting up. A side
1129 effect is that Vim will switch the terminal mode before initialisations
1130 have finished, with unpredictable results.
1131 For a GUI-only version (Windows, Macintosh) the debugging will start as
1132 soon as the GUI window has been opened. To make this happen early, add a
1133 ":gui" command in the vimrc file.
1134 *:debug*
11352. Run a command with ":debug" prepended. Debugging will only be done while
1136 this command executes. Useful for debugging a specific script or user
1137 function. And for scripts and functions used by autocommands. Example: >
1138 :debug edit test.txt.gz
1139
11403. Set a breakpoint in a sourced file or user function. You could do this in
1141 the command line: >
1142 vim -c "breakadd file */explorer.vim" .
1143< This will run Vim and stop in the first line of the "explorer.vim" script.
1144 Breakpoints can also be set while in debugging mode.
1145
1146In debugging mode every executed command is displayed before it is executed.
1147Comment lines, empty lines and lines that are not executed are skipped. When
1148a line contains two commands, separated by "|", each command will be displayed
1149separately.
1150
1151
1152DEBUG MODE
1153
1154Once in debugging mode, the usual Ex commands can be used. For example, to
1155inspect the value of a variable: >
1156 echo idx
1157When inside a user function, this will print the value of the local variable
1158"idx". Prepend "g:" to get the value of a global variable: >
1159 echo g:idx
1160All commands are executed in the context of the current function or script.
1161You can also set options, for example setting or resetting 'verbose' will show
1162what happens, but you might want to set it just before executing the lines you
1163are interested in: >
1164 :set verbose=20
1165
1166Commands that require updating the screen should be avoided, because their
1167effect won't be noticed until after leaving debug mode. For example: >
1168 :help
1169won't be very helpful.
1170
1171There is a separate command-line history for debug mode.
1172
Bram Moolenaar6304be62021-11-27 10:57:26 +00001173NOTE: In Vim9 script, if a command is written at the script level and
1174continues on the next line, not using the old way with a backslash for line
1175continuation, only the first line is printed before the debugging prompt.
1176
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177The line number for a function line is relative to the start of the function.
1178If you have trouble figuring out where you are, edit the file that defines
1179the function in another Vim, search for the start of the function and do
1180"99j". Replace "99" with the line number.
1181
1182Additionally, these commands can be used:
1183 *>cont*
1184 cont Continue execution until the next breakpoint is hit.
1185 *>quit*
1186 quit Abort execution. This is like using CTRL-C, some
1187 things might still be executed, doesn't abort
1188 everything. Still stops at the next breakpoint.
1189 *>next*
1190 next Execute the command and come back to debug mode when
1191 it's finished. This steps over user function calls
1192 and sourced files.
1193 *>step*
1194 step Execute the command and come back to debug mode for
1195 the next command. This steps into called user
1196 functions and sourced files.
1197 *>interrupt*
1198 interrupt This is like using CTRL-C, but unlike ">quit" comes
1199 back to debug mode for the next command that is
1200 executed. Useful for testing |:finally| and |:catch|
1201 on interrupt exceptions.
1202 *>finish*
1203 finish Finish the current script or user function and come
1204 back to debug mode for the command after the one that
1205 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +01001206 *>bt*
1207 *>backtrace*
1208 *>where*
1209 backtrace Show the call stacktrace for current debugging session.
1210 bt
1211 where
1212 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +01001213 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +01001214 relative. E.g., ":frame +3" goes three frames up.
1215 *>up*
1216 up Goes one level up from call stacktrace.
1217 *>down*
1218 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219
1220About the additional commands in debug mode:
1221- There is no command-line completion for them, you get the completion for the
1222 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +01001223- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +01001224 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225- Hitting <CR> will repeat the previous one. When doing another command, this
1226 is reset (because it's not clear what you want to repeat).
1227- When you want to use the Ex command with the same name, prepend a colon:
1228 ":cont", ":next", ":finish" (or shorter).
Bram Moolenaar4d8f4762021-06-27 15:18:56 +02001229 *vim9-debug*
1230When debugging a compiled :def function, "step" will stop before every
Bram Moolenaar90df4b92021-07-07 20:26:08 +02001231executed line, not every single instruction. Thus it works mostly like a not
Bram Moolenaar4d8f4762021-06-27 15:18:56 +02001232compiled function. Access to local variables is limited you can use: >
1233 echo varname
1234But not much else.
1235When executing a command that is not a specific bytecode instruction but
1236executed like a normal Ex command, "step" will stop once in the compiled
1237context, where local variables can be inspected, and once just before
1238executing the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +01001240In a :def function variables that haven't been declared yet cannot be
1241inspected. Variables that have been declared can be inspected, also when the
1242block they were declared in has finished. In commands this would not be
1243possible, thus is slightly misleading (but can be useful).
1244
Bram Moolenaarf1f60f82016-01-16 15:40:53 +01001245The backtrace shows the hierarchy of function calls, e.g.:
1246 >bt ~
1247 3 function One[3] ~
1248 2 Two[3] ~
1249 ->1 Three[3] ~
1250 0 Four ~
1251 line 1: let four = 4 ~
1252
1253The "->" points to the current frame. Use "up", "down" and "frame N" to
1254select another frame.
1255
1256In the current frame you can evaluate the local function variables. There is
1257no way to see the command at the current line yet.
1258
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
1260DEFINING BREAKPOINTS
1261 *:breaka* *:breakadd*
1262:breaka[dd] func [lnum] {name}
1263 Set a breakpoint in a function. Example: >
1264 :breakadd func Explore
1265< Doesn't check for a valid function name, thus the breakpoint
1266 can be set before the function is defined.
1267
1268:breaka[dd] file [lnum] {name}
1269 Set a breakpoint in a sourced file. Example: >
1270 :breakadd file 43 .vimrc
1271
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001272:breaka[dd] here
1273 Set a breakpoint in the current line of the current file.
1274 Like doing: >
1275 :breakadd file <cursor-line> <current-file>
1276< Note that this only works for commands that are executed when
1277 sourcing the file, not for a function defined in that file.
1278
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01001279:breaka[dd] expr {expression}
1280 Sets a breakpoint, that will break whenever the {expression}
1281 evaluates to a different value. Example: >
1282 :breakadd expr g:lnum
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01001283< Will break, whenever the global variable lnum changes.
Bram Moolenaar6c391a72021-09-09 21:55:11 +02001284
1285 Errors in evaluation are suppressed, you can use the name of a
1286 variable that does not exist yet. This also means you will
1287 not notice anything if the expression has a mistake.
1288
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01001289 Note if you watch a |script-variable| this will break
1290 when switching scripts, since the script variable is only
1291 valid in the script where it has been defined and if that
1292 script is called from several other scripts, this will stop
1293 whenever that particular variable will become visible or
Bram Moolenaar9faec4e2021-02-27 16:38:07 +01001294 inaccessible again.
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01001295
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296The [lnum] is the line number of the breakpoint. Vim will stop at or after
1297this line. When omitted line 1 is used.
1298
Bram Moolenaar05159a02005-02-26 23:04:13 +00001299 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300{name} is a pattern that is matched with the file or function name. The
1301pattern is like what is used for autocommands. There must be a full match (as
1302if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
1303of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
1304to ignore case |/\c|. Don't include the () for the function name!
1305
Bram Moolenaar843ee412004-06-30 16:16:41 +00001306The match for sourced scripts is done against the full file name. If no path
1307is specified the current directory is used. Examples: >
1308 breakadd file explorer.vim
1309matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +00001311matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +00001313matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314
1315The match for functions is done against the name as it's shown in the output
Bram Moolenaarb2049902021-01-24 12:53:53 +01001316of ":function". However, for local functions the script-specific prefix such
1317as "<SNR>99_" is ignored to make it easier to match script-local functions
1318without knowing the ID of the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00001320Note that functions are first loaded and later executed. When they are loaded
1321the "file" breakpoints are checked, when they are executed the "func"
1322breakpoints.
1323
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324
1325DELETING BREAKPOINTS
1326 *:breakd* *:breakdel* *E161*
1327:breakd[el] {nr}
1328 Delete breakpoint {nr}. Use |:breaklist| to see the number of
1329 each breakpoint.
1330
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001331:breakd[el] *
1332 Delete all breakpoints.
1333
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334:breakd[el] func [lnum] {name}
1335 Delete a breakpoint in a function.
1336
1337:breakd[el] file [lnum] {name}
1338 Delete a breakpoint in a sourced file.
1339
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001340:breakd[el] here
1341 Delete a breakpoint at the current line of the current file.
1342
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343When [lnum] is omitted, the first breakpoint in the function or file is
1344deleted.
1345The {name} must be exactly the same as what was typed for the ":breakadd"
1346command. "explorer", "*explorer.vim" and "*explorer*" are different.
1347
1348
1349LISTING BREAKPOINTS
1350 *:breakl* *:breaklist*
1351:breakl[ist]
1352 List all breakpoints.
1353
1354
1355OBSCURE
1356
1357 *:debugg* *:debuggreedy*
1358:debugg[reedy]
1359 Read debug mode commands from the normal input stream, instead
1360 of getting them directly from the user. Only useful for test
1361 scripts. Example: >
1362 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
1363
1364:0debugg[reedy]
1365 Undo ":debuggreedy": get debug mode commands directly from the
1366 user, don't use typeahead for debug commands.
1367
Bram Moolenaar05159a02005-02-26 23:04:13 +00001368==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +010013698. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001370
Bram Moolenaar996343d2010-07-04 22:20:21 +02001371Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +00001372functions and/or scripts. The |+profile| feature is required for this.
Bram Moolenaarb2049902021-01-24 12:53:53 +01001373It is included when Vim was compiled with "huge" features.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001374
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001375You can also use the |reltime()| function to measure time. This only requires
Bram Moolenaarb2049902021-01-24 12:53:53 +01001376the |+reltime| feature, which is present in more builds.
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001377
Bram Moolenaar16ea3672013-07-28 16:02:18 +02001378For profiling syntax highlighting see |:syntime|.
1379
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01001380For example, to profile the one_script.vim script file: >
1381 :profile start /tmp/one_script_profile
1382 :profile file one_script.vim
1383 :source one_script.vim
1384 :exit
1385
Bram Moolenaar16ea3672013-07-28 16:02:18 +02001386
Bram Moolenaar05159a02005-02-26 23:04:13 +00001387:prof[ile] start {fname} *:prof* *:profile* *E750*
Yegappan Lakshmanan18ee0f62022-04-08 13:23:19 +01001388 Start profiling, write the output in {fname} upon exit or when
1389 a `:profile stop` or `:profile dump` command is invoked.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +02001390 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001391 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001392 The variable |v:profiling| is set to one.
1393
Yegappan Lakshmanan18ee0f62022-04-08 13:23:19 +01001394:prof[ile] stop
1395 Write the collected profiling information to the logfile and
1396 stop profiling. You can use the `:profile start` command to
1397 clear the profiling statistics and start profiling again.
1398
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001399:prof[ile] pause
Yegappan Lakshmanan18ee0f62022-04-08 13:23:19 +01001400 Don't profile until the following `:profile continue`. Can be
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001401 used when doing something that should not be counted (e.g., an
1402 external command). Does not nest.
1403
1404:prof[ile] continue
Yegappan Lakshmanan18ee0f62022-04-08 13:23:19 +01001405 Continue profiling after `:profile pause`.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001406
Bram Moolenaar05159a02005-02-26 23:04:13 +00001407:prof[ile] func {pattern}
1408 Profile function that matches the pattern {pattern}.
1409 See |:debug-name| for how {pattern} is used.
1410
1411:prof[ile][!] file {pattern}
1412 Profile script file that matches the pattern {pattern}.
1413 See |:debug-name| for how {pattern} is used.
1414 This only profiles the script itself, not the functions
1415 defined in it.
1416 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01001417 will also be profiled.
1418 Note that profiling only starts when the script is loaded
1419 after this command. A :profile command in the script itself
1420 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001421
Yegappan Lakshmanan18ee0f62022-04-08 13:23:19 +01001422:prof[ile] dump
1423 Write the current state of profiling to the logfile
1424 immediately. After running this command, Vim continues to
1425 collect the profiling statistics.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001426
Bram Moolenaard9fba312005-06-26 22:34:35 +00001427:profd[el] ... *:profd* *:profdel*
1428 Stop profiling for the arguments specified. See |:breakdel|
Yegappan Lakshmanan18ee0f62022-04-08 13:23:19 +01001429 for the arguments. Examples: >
1430 profdel func MyFunc
1431 profdel file MyScript.vim
1432 profdel here
Bram Moolenaard9fba312005-06-26 22:34:35 +00001433
Bram Moolenaar05159a02005-02-26 23:04:13 +00001434You must always start with a ":profile start fname" command. The resulting
Bram Moolenaarb2049902021-01-24 12:53:53 +01001435file is written when Vim exits. For example, to profile one specific
1436function: >
1437 profile start /tmp/vimprofile
1438 profile func MyFunc
1439
1440Here is an example of the output, with line
Bram Moolenaar05159a02005-02-26 23:04:13 +00001441numbers prepended for the explanation:
1442
1443 1 FUNCTION Test2() ~
1444 2 Called 1 time ~
1445 3 Total time: 0.155251 ~
1446 4 Self time: 0.002006 ~
1447 5 ~
1448 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001449 7 9 0.000096 for i in range(8) ~
1450 8 8 0.153655 0.000410 call Test3() ~
1451 9 8 0.000070 endfor ~
1452 10 " Ask a question ~
1453 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +00001454
1455The header (lines 1-4) gives the time for the whole function. The "Total"
1456time is the time passed while the function was executing. The "Self" time is
1457the "Total" time reduced by time spent in:
1458- other user defined functions
1459- sourced scripts
1460- executed autocommands
1461- external (shell) commands
1462
1463Lines 7-11 show the time spent in each executed line. Lines that are not
1464executed do not count. Thus a comment line is never counted.
1465
1466The Count column shows how many times a line was executed. Note that the
1467"for" command in line 7 is executed one more time as the following lines.
1468That is because the line is also executed to detect the end of the loop.
1469
1470The time Vim spends waiting for user input isn't counted at all. Thus how
1471long you take to respond to the input() prompt is irrelevant.
1472
1473Profiling should give a good indication of where time is spent, but keep in
1474mind there are various things that may clobber the results:
1475
Ernie Rael076de792023-03-16 21:43:15 +00001476- The accuracy of the time measured depends on the gettimeofday(), or
h_eastba77bbb2023-10-03 04:47:13 +09001477 clock_gettime() if available, system function. The accuracy ranges from
1478 1/100 second to nanoseconds. With clock_gettime() the times are displayed in
Bram Moolenaar71badf92023-04-22 22:40:14 +01001479 nanoseconds, otherwise microseconds. You can use `has("prof_nsec")`.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001480
1481- Real elapsed time is measured, if other processes are busy they may cause
1482 delays at unpredictable moments. You may want to run the profiling several
1483 times and use the lowest results.
1484
1485- If you have several commands in one line you only get one time. Split the
1486 line to see the time for the individual commands.
1487
1488- The time of the lines added up is mostly less than the time of the whole
1489 function. There is some overhead in between.
1490
1491- Functions that are deleted before Vim exits will not produce profiling
1492 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001493 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +00001494 : delfunc MyFunc
1495 :endif
1496<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001497- Profiling may give weird results on multi-processor systems, when sleep
1498 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001499
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001500- The "self" time is wrong when a function is used recursively.
1501
1502
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001503 vim:tw=78:ts=8:noet:ft=help:norl: