annotate runtime/doc/repeat.txt @ 32160:98774a275d6d v9.0.1411

patch 9.0.1411: accuracy of profiling is not optimal Commit: https://github.com/vim/vim/commit/076de79ad832558267b3ff903c048df2f4c1a5d6 Author: Ernie Rael <errael@raelity.com> Date: Thu Mar 16 21:43:15 2023 +0000 patch 9.0.1411: accuracy of profiling is not optimal Problem: Accuracy of profiling is not optimal. Solution: Use CLOCK_MONOTONIC if possible. (Ernie Rael, closes https://github.com/vim/vim/issues/12129)
author Bram Moolenaar <Bram@vim.org>
date Thu, 16 Mar 2023 22:45:04 +0100
parents b2412874362f
children b2e8663e6dcc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32061
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 32004
diff changeset
1 *repeat.txt* For Vim version 9.0. Last change: 2023 Feb 25
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 VIM REFERENCE MANUAL by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 Repeating commands, Vim scripts and debugging *repeating*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 Chapter 26 of the user manual introduces repeating |usr_26.txt|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
11 1. Single repeats |single-repeat|
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
12 2. Multiple repeats |multi-repeat|
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
13 3. Complex repeats |complex-repeat|
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
14 4. Using Vim scripts |using-scripts|
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
15 5. Using Vim packages |packages|
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
16 6. Creating Vim packages |package-create|
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
17 7. Debugging scripts |debug-scripts|
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
18 8. Profiling |profiling|
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 1. Single repeats *single-repeat*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 *.*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 . Repeat last change, with count replaced with [count].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 Also repeat a yank command, when the 'y' flag is
22
cc049b00ee70 updated for version 7.0014
vimboss
parents: 11
diff changeset
26 included in 'cpoptions'. Does not repeat a
cc049b00ee70 updated for version 7.0014
vimboss
parents: 11
diff changeset
27 command-line command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 Simple changes can be repeated with the "." command. Without a count, the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 count of the last change is used. If you enter a count, it will replace the
5663
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
31 last one. |v:count| and |v:count1| will be set.
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
32
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
33 If the last change included a specification of a numbered register, the
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
34 register number will be incremented. See |redo-register| for an example how
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
35 to use this.
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
36
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
37 Note that when repeating a command that used a Visual selection, the same SIZE
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
38 of area is used, see |visual-repeat|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 *@:*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 @: Repeat last command-line [count] times.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 {not available when compiled without the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 |+cmdline_hist| feature}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 2. Multiple repeats *multi-repeat*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
49 *:g* *:global* *E148*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 :[range]g[lobal]/{pattern}/[cmd]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 Execute the Ex command [cmd] (default ":p") on the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 lines within [range] where {pattern} matches.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 :[range]g[lobal]!/{pattern}/[cmd]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 Execute the Ex command [cmd] (default ":p") on the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 lines within [range] where {pattern} does NOT match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 *:v* *:vglobal*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 :[range]v[global]/{pattern}/[cmd]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 Same as :g!.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61
24636
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
62 Example: >
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
63 :g/^Obsolete/d _
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
64 Using the underscore after `:d` avoids clobbering registers or the clipboard.
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
65 This also makes it faster.
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
66
1125
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
67 Instead of the '/' which surrounds the {pattern}, you can use any other
5239
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
68 single byte character, but not an alphabetic character, '\', '"' or '|'.
1125
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
69 This is useful if you want to include a '/' in the search pattern or
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
70 replacement string.
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
71
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
72 For the definition of a pattern, see |pattern|.
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
73
6336
4abac79c0b7a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5763
diff changeset
74 NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for
4abac79c0b7a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5763
diff changeset
75 examples.
4abac79c0b7a Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5763
diff changeset
76
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 The global commands work by first scanning through the [range] lines and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 marking each line where a match occurs (for a multi-line pattern, only the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 start of the match matters).
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
80 In a second scan the [cmd] is executed for each marked line, as if the cursor
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
81 was in that line. For ":v" and ":g!" the command is executed for each not
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 marked line. If a line is deleted its mark disappears.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 The default for [range] is the whole buffer (1,$). Use "CTRL-C" to interrupt
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 the command. If an error message is given for a line, the command for that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 line is aborted and the global command continues with the next marked or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 unmarked line.
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18130
diff changeset
87 *E147*
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
88 When the command is used recursively, it only works on one line. Giving a
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
89 range is then not allowed. This is useful to find all lines that match a
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
90 pattern and do not match another pattern: >
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
91 :g/found/v/notfound/{cmd}
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
92 This first finds all lines containing "found", but only executes {cmd} when
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 10895
diff changeset
93 there is no match for "notfound".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
95 Any Ex command can be used, see |ex-cmd-index|. To execute a Normal mode
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
96 command, you can use the `:normal` command: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 :g/pat/normal {commands}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 Make sure that {commands} ends with a whole command, otherwise Vim will wait
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 for you to type the rest of the command for each match. The screen will not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 have been updated, so you don't know what you are doing. See |:normal|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 The undo/redo command will undo/redo the whole global command at once.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 The previous context mark will only be set once (with "''" you go back to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 where the cursor was before the global command).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 The global command sets both the last used search pattern and the last used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 substitute pattern (this is vi compatible). This makes it easy to globally
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 replace a string:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 :g/pat/s//PAT/g
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 This replaces all occurrences of "pat" with "PAT". The same can be done with:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 :%s/pat/PAT/g
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 Which is two characters shorter!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113
1623
53938adac247 updated for version 7.2a
vimboss
parents: 1270
diff changeset
114 When using "global" in Ex mode, a special case is using ":visual" as a
53938adac247 updated for version 7.2a
vimboss
parents: 1270
diff changeset
115 command. This will move to a matching line, go to Normal mode to let you
53938adac247 updated for version 7.2a
vimboss
parents: 1270
diff changeset
116 execute commands there until you use |Q| to return to Ex mode. This will be
53938adac247 updated for version 7.2a
vimboss
parents: 1270
diff changeset
117 repeated for each matching line. While doing this you cannot use ":global".
53938adac247 updated for version 7.2a
vimboss
parents: 1270
diff changeset
118 To abort this type CTRL-C twice.
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 148
diff changeset
119
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 3. Complex repeats *complex-repeat*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 *q* *recording*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 (uppercase to append). The 'q' command is disabled
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 while executing a register, and it doesn't work inside
7233
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 6757
diff changeset
127 a mapping and |:normal|.
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 6757
diff changeset
128
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 6757
diff changeset
129 Note: If the register being used for recording is also
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 6757
diff changeset
130 used for |y| and |p| the result is most likely not
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 6757
diff changeset
131 what is expected, because the put will paste the
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 6757
diff changeset
132 recorded macro and the yank will overwrite the
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16553
diff changeset
133 recorded macro.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134
20552
74e3316c1d5a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 20241
diff changeset
135 Note: The recording happens while you type, replaying
74e3316c1d5a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 20241
diff changeset
136 the register happens as if the keys come from a
74e3316c1d5a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 20241
diff changeset
137 mapping. This matters, for example, for undo, which
74e3316c1d5a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 20241
diff changeset
138 only syncs when commands were typed.
74e3316c1d5a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 20241
diff changeset
139
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 q Stops recording. (Implementation note: The 'q' that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 stops recording is not stored in the register, unless
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16553
diff changeset
142 it was the result of a mapping)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 *@*
3445
2cfb68fa26cd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2681
diff changeset
145 @{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146 times. Note that register '%' (name of the current
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 file) and '#' (name of the alternate file) cannot be
2681
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
148 used.
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
149 The register is executed like a mapping, that means
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
150 that the difference between 'wildchar' and 'wildcharm'
20552
74e3316c1d5a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 20241
diff changeset
151 applies, and undo might not be synced in the same way.
2681
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
152 For "@=" you are prompted to enter an expression. The
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
153 result of the expression is then executed.
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16553
diff changeset
154 See also |@:|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 148
diff changeset
156 *@@* *E748*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 @@ Repeat the previous @{0-9a-z":*} [count] times.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158
24636
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
159 *:@*
3445
2cfb68fa26cd Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2681
diff changeset
160 :[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 command. First set cursor at line [addr] (default is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 current line). When the last line in the register does
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 not have a <CR> it will be added automatically when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 the 'e' flag is present in 'cpoptions'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 For ":@=" the last used expression is used. The
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 result of evaluating the expression is executed as an
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 Ex command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 Mappings are not recognized in these commands.
20891
4bdc07beeadb patch 8.2.0997: cannot execute a register containing line continuation
Bram Moolenaar <Bram@vim.org>
parents: 20552
diff changeset
169 When the |line-continuation| character (\) is present
4bdc07beeadb patch 8.2.0997: cannot execute a register containing line continuation
Bram Moolenaar <Bram@vim.org>
parents: 20552
diff changeset
170 at the beginning of a line in a linewise register,
4bdc07beeadb patch 8.2.0997: cannot execute a register containing line continuation
Bram Moolenaar <Bram@vim.org>
parents: 20552
diff changeset
171 then it is combined with the previous line. This is
4bdc07beeadb patch 8.2.0997: cannot execute a register containing line continuation
Bram Moolenaar <Bram@vim.org>
parents: 20552
diff changeset
172 useful for yanking and executing parts of a Vim
4bdc07beeadb patch 8.2.0997: cannot execute a register containing line continuation
Bram Moolenaar <Bram@vim.org>
parents: 20552
diff changeset
173 script.
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16553
diff changeset
174 Future: Will execute the register for each line in the
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16553
diff changeset
175 address range.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176
24636
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
177 :[addr]*{0-9a-z".=+} *:star-compatible*
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
178 When '*' is present in 'cpoptions' |cpo-star|, use
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
179 ":*" in the same way as ":@". This is NOT the default
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
180 when 'nocompatible' is used. When the '*' flag is not
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
181 present in 'cpoptions', ":*" is an alias for ":'<,'>",
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
182 select the Visual area |:star|.
840665e74421 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24103
diff changeset
183
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 *:@:*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 :[addr]@: Repeat last command-line. First set cursor at line
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16267
diff changeset
186 [addr] (default is current line).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187
10186
a5ef9968638c commit https://github.com/vim/vim/commit/7e1479b86c590a66b63a274c079b7f18907d45a4
Christian Brabandt <cb@256bit.org>
parents: 9644
diff changeset
188 :[addr]@ *:@@*
20241
56265f711890 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18972
diff changeset
189 :[addr]@@ Repeat the previous :@{register}. First set cursor at
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16267
diff changeset
190 line [addr] (default is current line).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 4. Using Vim scripts *using-scripts*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 *:so* *:source* *load-vim-script*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 :so[urce] {file} Read Ex commands from {file}. These are commands that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 start with a ":".
716
8ae24f338cab updated for version 7.0217
vimboss
parents: 364
diff changeset
200 Triggers the |SourcePre| autocommand.
29236
0eef32b4ebbc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28379
diff changeset
201 *:source-range*
28164
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
202 :[range]so[urce] [++clear]
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
203 Read Ex commands from the [range] of lines in the
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
204 current buffer. When [range] is omitted read all
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
205 lines.
28164
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
206
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
207 When sourcing commands from the current buffer, the
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
208 same script-ID |<SID>| is used even if the buffer is
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
209 sourced multiple times. If a buffer is sourced more
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
210 than once, then the functions in the buffer are
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
211 defined again.
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
212
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
213 To source a range of lines that doesn't start with the
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
214 |:vim9script| command in Vim9 script context, the
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
215 |:vim9cmd| modifier can be used. If you use a Visual
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
216 selection and type ":", the range in the form "'<,'>"
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
217 can come before it: >
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
218 :'<,'>vim9cmd source
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
219 < Otherwise the range goes after the modifier and must
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
220 have a colon prefixed, like all Vim9 ranges: >
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
221 :vim9cmd :5,9source
28164
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
222
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
223 < When a range of lines in a buffer is sourced in the
28164
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
224 Vim9 script context, the previously defined
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
225 script-local variables and functions are not cleared.
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
226 This works like the range started with the
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
227 ":vim9script noclear" command. The "++clear" argument
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
228 can be used to clear the script-local variables and
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
229 functions before sourcing the script. This works like
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28164
diff changeset
230 the range started with the `:vim9script` command
28164
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
231 without the "noclear" argument. See |vim9-reload| for
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
232 more information.
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
233 Examples: >
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
234 :4,5source
b0b712d48225 patch 8.2.4607: sourcing buffer lines may lead to errors for conflicts
Bram Moolenaar <Bram@vim.org>
parents: 28158
diff changeset
235 :10,18source ++clear
29450
67f31c24291b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29314
diff changeset
236 <
16808
c002c4899529 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
237 *:source!*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 :so[urce]! {file} Read Vim commands from {file}. These are commands
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 that are executed from Normal mode, like you type
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240 them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 When used after |:global|, |:argdo|, |:windo|,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 |:bufdo|, in a loop or when another command follows
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 the display won't be updated while executing the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 commands.
16808
c002c4899529 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
245 Cannot be used in the |sandbox|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 *:ru* *:runtime*
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
248 :ru[ntime][!] [where] {file} ..
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 Read Ex commands from {file} in each directory given
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
250 by 'runtimepath' and/or 'packpath'. There is no error
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
251 for non-existing files.
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18130
diff changeset
252
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
253 Example: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 :runtime syntax/c.vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 < There can be multiple {file} arguments, separated by
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 spaces. Each {file} is searched for in the first
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 directory from 'runtimepath', then in the second
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 directory, etc. Use a backslash to include a space
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 inside {file} (although it's better not to use spaces
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 in file names, it causes trouble).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 When [!] is included, all found files are sourced.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 When it is not included only the first found file is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 sourced.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
267 When [where] is omitted only 'runtimepath' is used.
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
268 Other values:
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
269 START search under "start" in 'packpath'
32004
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
270 OPT search under "opt" in 'packpath'
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
271 PACK search under "start" and "opt" in
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
272 'packpath'
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
273 ALL first use 'runtimepath', then search
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
274 under "start" and "opt" in 'packpath'
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
275
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 When {file} contains wildcards it is expanded to all
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 matching files. Example: >
18130
1e5672da6a69 Updte runtime files
Bram Moolenaar <Bram@vim.org>
parents: 17161
diff changeset
278 :runtime! plugin/**/*.vim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 < This is what Vim uses to load the plugin files when
237
73354c21f1e4 updated for version 7.0066
vimboss
parents: 177
diff changeset
280 starting up. This similar command: >
18130
1e5672da6a69 Updte runtime files
Bram Moolenaar <Bram@vim.org>
parents: 17161
diff changeset
281 :runtime plugin/**/*.vim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282 < would source the first file only.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 When 'verbose' is one or higher, there is a message
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 when no file could be found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 When 'verbose' is two or higher, there is a message
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 about each searched file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288
8416
1a6527cce675 commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents: 8392
diff changeset
289 *:pa* *:packadd* *E919*
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
290 :pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
291 and source any plugin files found. The directory must
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
292 match:
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
293 pack/*/opt/{name} ~
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
294 The directory is added to 'runtimepath' if it wasn't
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
295 there yet.
9116
bc38030aec7d commit https://github.com/vim/vim/commit/26852128a2b713ef49341a0c18daba928444e7eb
Christian Brabandt <cb@256bit.org>
parents: 8876
diff changeset
296 If the directory pack/*/opt/{name}/after exists it is
bc38030aec7d commit https://github.com/vim/vim/commit/26852128a2b713ef49341a0c18daba928444e7eb
Christian Brabandt <cb@256bit.org>
parents: 8876
diff changeset
297 added at the end of 'runtimepath'.
8303
88207f4b861a commit https://github.com/vim/vim/commit/dae8d21dd291df6a6679a00be64e18bca0156576
Christian Brabandt <cb@256bit.org>
parents: 8246
diff changeset
298
13051
a6d3e2081544 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11494
diff changeset
299 If loading packages from "pack/*/start" was skipped,
a6d3e2081544 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11494
diff changeset
300 then this directory is searched first:
a6d3e2081544 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11494
diff changeset
301 pack/*/start/{name} ~
a6d3e2081544 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 11494
diff changeset
302
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
303 Note that {name} is the directory name, not the name
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
304 of the .vim file. All the files matching the pattern
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
305 pack/*/opt/{name}/plugin/**/*.vim ~
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
306 will be sourced. This allows for using subdirectories
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
307 below "plugin", just like with plugins in
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
308 'runtimepath'.
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
309
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
310 If the filetype detection was not enabled yet (this
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
311 is usually done with a "syntax enable" or "filetype
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
312 on" command in your .vimrc file), this will also look
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
313 for "{name}/ftdetect/*.vim" files.
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
314
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
315 When the optional ! is added no plugin files or
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
316 ftdetect scripts are loaded, only the matching
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
317 directories are added to 'runtimepath'. This is
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
318 useful in your .vimrc. The plugins will then be
24911
fd37be6dc258 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24636
diff changeset
319 loaded during initialization, see |load-plugins| (note
fd37be6dc258 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24636
diff changeset
320 that the loading order will be reversed, because each
fd37be6dc258 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24636
diff changeset
321 directory is inserted before others).
22565
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
322 Note that for ftdetect scripts to be loaded
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
323 you will need to write `filetype plugin indent on`
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
324 AFTER all `packadd!` commands.
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
325
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
326 Also see |pack-add|.
14249
4543777545a3 Updated runtime and language files.
Christian Brabandt <cb@256bit.org>
parents: 13963
diff changeset
327 {only available when compiled with |+eval|}
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
328
8673
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 8526
diff changeset
329 *:packl* *:packloadall*
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
330 :packl[oadall][!] Load all packages in the "start" directory under each
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
331 entry in 'packpath'.
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18130
diff changeset
332
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
333 First all the directories found are added to
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
334 'runtimepath', then the plugins found in the
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
335 directories are sourced. This allows for a plugin to
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
336 depend on something of another plugin, e.g. an
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
337 "autoload" directory. See |packload-two-steps| for
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
338 how this can be useful.
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
339
8673
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 8526
diff changeset
340 This is normally done automatically during startup,
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 8526
diff changeset
341 after loading your .vimrc file. With this command it
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 8526
diff changeset
342 can be done earlier.
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
343
17161
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
344 Packages will be loaded only once. Using
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
345 `:packloadall` a second time will have no effect.
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
346 When the optional ! is added this command will load
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
347 packages even when done before.
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
348
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
349 Note that when using `:packloadall` in the |vimrc|
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
350 file, the 'runtimepath' option is updated, and later
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
351 all plugins in 'runtimepath' will be loaded, which
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
352 means they are loaded again. Plugins are expected to
9ccb1ea9b2fc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
353 handle that.
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
354
8795
aba2d0a01290 commit https://github.com/vim/vim/commit/7db8f6f4f85e5d0526d23107b2a5e2334dc23354
Christian Brabandt <cb@256bit.org>
parents: 8748
diff changeset
355 An error only causes sourcing the script where it
8673
ed7251c3e2d3 commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents: 8526
diff changeset
356 happens to be aborted, further plugins will be loaded.
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
357 See |packages|.
14249
4543777545a3 Updated runtime and language files.
Christian Brabandt <cb@256bit.org>
parents: 13963
diff changeset
358 {only available when compiled with |+eval|}
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
359
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 :scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 Specify the character encoding used in the script.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 The following lines will be converted from [encoding]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 to the value of the 'encoding' option, if they are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 different. Examples: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 scriptencoding iso-8859-5
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 scriptencoding cp932
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 When [encoding] is empty, no conversion is done. This
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 can be used to restrict conversion to a sequence of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 lines: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 scriptencoding euc-jp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 ... lines to be converted ...
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 scriptencoding
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 ... not converted ...
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 < When conversion isn't supported by the system, there
9644
9f7bcc2c3b97 commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
377 is no error message and no conversion is done. When a
9f7bcc2c3b97 commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
378 line can't be converted there is no error and the
9f7bcc2c3b97 commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
379 original line is kept.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 Don't use "ucs-2" or "ucs-4", scripts cannot be in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 these encodings (they would contain NUL bytes).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 When a sourced script starts with a BOM (Byte Order
2207
b17bbfa96fa0 Add the settabvar() and gettabvar() functions.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
384 Mark) in utf-8 format Vim will recognize it, no need
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385 to use ":scriptencoding utf-8" then.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386
10895
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
387 If you set the 'encoding' option in your |.vimrc|,
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
388 `:scriptencoding` must be placed after that. E.g.: >
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
389 set encoding=utf-8
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
390 scriptencoding utf-8
c391bfbdb452 Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
391 <
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392
16223
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
393 :scriptv[ersion] {version} *:scriptv* *:scriptversion*
27321
3649b5a6b1b6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27215
diff changeset
394 *E999* *E984* *E1040*
16267
b471858040bc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
395 Specify the version of Vim for the lines that follow
b471858040bc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
396 in the same file. Only applies at the toplevel of
b471858040bc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
397 sourced scripts, not inside functions.
16223
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
398
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
399 If {version} is higher than what the current Vim
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
400 version supports E999 will be given. You either need
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
401 to rewrite the script to make it work with an older
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
402 Vim version, or update Vim to a newer version. See
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
403 |vimscript-version| for what changed between versions.
abb67309c1ca patch 8.1.1116: cannot enforce a Vim script style
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
404
27215
5b54f413d132 patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not useful
Bram Moolenaar <Bram@vim.org>
parents: 27213
diff changeset
405 :vim9s[cript] [noclear] *:vim9s* *:vim9script*
23466
15fa3923cc49 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
406 Marks a script file as containing |Vim9-script|
27321
3649b5a6b1b6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27215
diff changeset
407 commands. Also see |vim9-namespace|. *E1038*
3649b5a6b1b6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27215
diff changeset
408 Must be the first command in the file. *E1039*
23466
15fa3923cc49 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
409 For [noclear] see |vim9-reload|.
15fa3923cc49 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
410 Without the |+eval| feature this changes the syntax
15fa3923cc49 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 22565
diff changeset
411 for some commands.
23938
2a885d095bff patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents: 23717
diff changeset
412 See |:vim9cmd| for executing one command with Vim9
2a885d095bff patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents: 23717
diff changeset
413 syntax and semantics.
24911
fd37be6dc258 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24636
diff changeset
414
6476
11d78e58a487 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 6336
diff changeset
415 *:scr* *:scriptnames*
11d78e58a487 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 6336
diff changeset
416 :scr[iptnames] List all sourced script names, in the order they were
27215
5b54f413d132 patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not useful
Bram Moolenaar <Bram@vim.org>
parents: 27213
diff changeset
417 first encountered. The number is used for the script
5b54f413d132 patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not useful
Bram Moolenaar <Bram@vim.org>
parents: 27213
diff changeset
418 ID |<SID>|.
27213
42561e956a70 patch 8.2.4135: Vim9: ":scriptnames" shows unloaded imported autoload script
Bram Moolenaar <Bram@vim.org>
parents: 27162
diff changeset
419 For a script that was used with `import autoload` but
42561e956a70 patch 8.2.4135: Vim9: ":scriptnames" shows unloaded imported autoload script
Bram Moolenaar <Bram@vim.org>
parents: 27162
diff changeset
420 was not actually sourced yet an "A" is shown after the
42561e956a70 patch 8.2.4135: Vim9: ":scriptnames" shows unloaded imported autoload script
Bram Moolenaar <Bram@vim.org>
parents: 27162
diff changeset
421 script ID.
29828
6b7020f3d856 patch 9.0.0253: a symlink to an autoload script results in two entries
Bram Moolenaar <Bram@vim.org>
parents: 29450
diff changeset
422 For a script that was referred to by one name but
6b7020f3d856 patch 9.0.0253: a symlink to an autoload script results in two entries
Bram Moolenaar <Bram@vim.org>
parents: 29450
diff changeset
423 after resolving symbolic links got sourced with
6b7020f3d856 patch 9.0.0253: a symlink to an autoload script results in two entries
Bram Moolenaar <Bram@vim.org>
parents: 29450
diff changeset
424 another name the other script is after "->". E.g.
6b7020f3d856 patch 9.0.0253: a symlink to an autoload script results in two entries
Bram Moolenaar <Bram@vim.org>
parents: 29450
diff changeset
425 "20->22" means script 20 was sourced as script 22.
32061
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 32004
diff changeset
426 Also see `getscriptinfo()`.
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16267
diff changeset
427 {not available when compiled without the |+eval|
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16267
diff changeset
428 feature}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429
15085
1783c0b6bc2e patch 8.1.0553: it is not easy to edit a script that was sourced
Bram Moolenaar <Bram@vim.org>
parents: 14864
diff changeset
430 :scr[iptnames][!] {scriptId} *:script*
15194
8b334e4cb97f Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15085
diff changeset
431 Edit script {scriptId}. Although ":scriptnames name"
8b334e4cb97f Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15085
diff changeset
432 works, using ":script name" is recommended.
8b334e4cb97f Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15085
diff changeset
433 When the current buffer can't be |abandon|ed and the !
8b334e4cb97f Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15085
diff changeset
434 is not present, the command fails.
15085
1783c0b6bc2e patch 8.1.0553: it is not easy to edit a script that was sourced
Bram Moolenaar <Bram@vim.org>
parents: 14864
diff changeset
435
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
436 *:fini* *:finish* *E168*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
437 :fini[sh] Stop sourcing a script. Can only be used in a Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 script file. This is a quick way to skip the rest of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 the file. If it is used after a |:try| but before the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 matching |:finally| (if present), the commands
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 following the ":finally" up to the matching |:endtry|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 are executed first. This process applies to all
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 nested ":try"s in the script. The outermost ":endtry"
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16267
diff changeset
444 then stops sourcing the script.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 All commands and command sequences can be repeated by putting them in a named
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447 register and then executing it. There are two ways to get the commands in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448 register:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449 - Use the record command "q". You type the commands once, and while they are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 being executed they are stored in a register. Easy, because you can see
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 what you are doing. If you make a mistake, "p"ut the register into the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452 file, edit the command sequence, and then delete it into the register
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 again. You can continue recording by appending to the register (use an
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 uppercase letter).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 - Delete or yank the command sequence into the register.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457 Often used command sequences can be put under a function key with the ':map'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
458 command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 An alternative is to put the commands in a file, and execute them with the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 ':source!' command. Useful for long command sequences. Can be combined with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 the ':map' command to put complicated commands under a function key.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463
28158
e1d1fa6ba1ed patch 8.2.4603: sourcing buffer lines is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 28139
diff changeset
464 The ':source' command reads Ex commands from a file or a buffer line by line.
e1d1fa6ba1ed patch 8.2.4603: sourcing buffer lines is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 28139
diff changeset
465 You will have to type any needed keyboard input. The ':source!' command reads
e1d1fa6ba1ed patch 8.2.4603: sourcing buffer lines is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 28139
diff changeset
466 from a script file character by character, interpreting each character as if
e1d1fa6ba1ed patch 8.2.4603: sourcing buffer lines is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 28139
diff changeset
467 you typed it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 you ':source' a file with the line "!ls" in it, you will have to type the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 <Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 the next characters from that file are read until a <CR> is found. You will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 not have to type <CR> yourself, unless ":!ls" was the last line in the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475 It is possible to put ':source[!]' commands in the script file, so you can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 make a top-down hierarchy of script files. The ':source' command can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 nested as deep as the number of files that can be opened at one time (about
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 15). The ':source!' command can be nested up to 15 levels deep.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480 You can use the "<sfile>" string (literally, this is not a special key) inside
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 of the sourced file, in places where a file name is expected. It will be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482 replaced by the file name of the sourced file. For example, if you have a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483 "other.vimrc" file in the same directory as your ".vimrc" file, you can source
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
484 it from your ".vimrc" file with this command: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 :source <sfile>:h/other.vimrc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
487 In script files terminal-dependent key codes are represented by
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
488 terminal-independent two character codes. This means that they can be used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489 in the same way on different kinds of terminals. The first character of a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
490 key code is 0x80 or 128, shown on the screen as "~@". The second one can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
491 found in the list |key-notation|. Any of these codes can also be entered
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492 with CTRL-V followed by the three digit decimal code. This does NOT work for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493 the <t_xx> termcap codes, these can only be used in mappings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
495 *:source_crnl* *W15*
18912
ccd16426a1f9 patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents: 18879
diff changeset
496 Win32: Files that are read with ":source" normally have <CR><NL> <EOL>s.
ccd16426a1f9 patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents: 18879
diff changeset
497 These always work. If you are using a file with <NL> <EOL>s (for example, a
ccd16426a1f9 patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents: 18879
diff changeset
498 file made on Unix), this will be recognized if 'fileformats' is not empty and
ccd16426a1f9 patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents: 18879
diff changeset
499 the first line does not end in a <CR>. This fails if the first line has
ccd16426a1f9 patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents: 18879
diff changeset
500 something like ":map <F1> :help^M", where "^M" is a <CR>. If the first line
ccd16426a1f9 patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents: 18879
diff changeset
501 ends in a <CR>, but following ones don't, you will get an error message,
ccd16426a1f9 patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents: 18879
diff changeset
502 because the <CR> from the first lines will be lost.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503
333
18f024844150 updated for version 7.0086
vimboss
parents: 237
diff changeset
504 Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 These always work. If you are using a file with <NL> <EOL>s (for example, a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 file made on Unix), this will be recognized if 'fileformats' is not empty and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 the first line does not end in a <CR>. Be careful not to use a file with <NL>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 linebreaks which has a <CR> in first line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510 On other systems, Vim expects ":source"ed files to end in a <NL>. These
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 always work. If you are using a file with <CR><NL> <EOL>s (for example, a
18972
130acb903dbe Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 18912
diff changeset
512 file made on MS-Windows), all lines will have a trailing <CR>. This may cause
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 problems for some commands (e.g., mappings). There is no automatic <EOL>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
514 detection, because it's common to start with a line that defines a mapping
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
515 that ends in a <CR>, which will confuse the automaton.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
517 *line-continuation*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518 Long lines in a ":source"d Ex command script file can be split by inserting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519 a line continuation symbol "\" (backslash) at the start of the next line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
520 There can be white space before the backslash, which is ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 Example: the lines >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 :set comments=sr:/*,mb:*,el:*/,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524 \://,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 \b:#,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526 \:%,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
527 \n:>,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
528 \fb:-
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 are interpreted as if they were given in one line:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532 All leading whitespace characters in the line before a backslash are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533 Note however that trailing whitespace in the line before it cannot be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
534 inserted freely; it depends on the position where a command is split up
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
535 whether additional whitespace is allowed or not.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
536
2033
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
537 When a space is required it's best to put it right after the backslash. A
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
538 space at the end of a line is hard to see and may be accidentally deleted. >
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
539 :syn match Comment
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
540 \ "very long regexp"
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
541 \ keepend
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
542
26779
edb7d53fc7e3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26304
diff changeset
543 In |Vim9| script the backslash can often be omitted, but not always.
edb7d53fc7e3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26304
diff changeset
544 See |vim9-line-continuation|.
edb7d53fc7e3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 26304
diff changeset
545
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 There is a problem with the ":append" and ":insert" commands: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 :1append
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 \asdf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 .
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 The backslash is seen as a line-continuation symbol, thus this results in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 command: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 :1appendasdf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 .
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554 To avoid this, add the 'C' flag to the 'cpoptions' option: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555 :set cpo+=C
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556 :1append
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
557 \asdf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558 .
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 :set cpo-=C
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 Note that when the commands are inside a function, you need to add the 'C'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 flag when defining the function, it is not relevant when executing it. >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563 :set cpo+=C
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564 :function Foo()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 :1append
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 \asdf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 .
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 :endfunction
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 :set cpo-=C
14714
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
570 <
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
571 *line-continuation-comment*
14864
40ef13331e02 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14714
diff changeset
572 To add a comment in between the lines start with '"\ '. Notice the space
40ef13331e02 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14714
diff changeset
573 after the backslash. Example: >
14714
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
574 let array = [
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
575 "\ first entry comment
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
576 \ 'first',
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
577 "\ second entry comment
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
578 \ 'second',
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
579 \ ]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581 Rationale:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 Most programs work with a trailing backslash to indicate line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 continuation. Using this in Vim would cause incompatibility with Vi.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 For example for this Vi mapping: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 :map xx asdf\
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586 < Therefore the unusual leading backslash is used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587
14714
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
588 Starting a comment in a continuation line results in all following
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
589 continuation lines to be part of the comment. Since it was like this
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
590 for a long time, when making it possible to add a comment halfway a
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
591 sequence of continuation lines, it was not possible to use \", since
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
592 that was a valid continuation line. Using '"\ ' comes closest, even
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
593 though it may look a bit weird. Requiring the space after the
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
594 backslash is to make it very unlikely this is a normal comment line.
bdbb049c2aa8 patch 8.1.0369: continuation lines cannot contain comments
Christian Brabandt <cb@256bit.org>
parents: 14421
diff changeset
595
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596 ==============================================================================
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
597 5. Using Vim packages *packages*
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
598
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
599 A Vim package is a directory that contains one or more plugins. The
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
600 advantages over normal plugins:
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
601 - A package can be downloaded as an archive and unpacked in its own directory.
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
602 Thus the files are not mixed with files of other plugins. That makes it
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
603 easy to update and remove.
8376
e448f2a5d45b commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents: 8303
diff changeset
604 - A package can be a git, mercurial, etc. repository. That makes it really
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
605 easy to update.
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
606 - A package can contain multiple plugins that depend on each other.
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
607 - A package can contain plugins that are automatically loaded on startup and
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
608 ones that are only loaded when needed with `:packadd`.
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
609
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
610
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
611 Using a package and loading automatically ~
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
612
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
613 Let's assume your Vim files are in the "~/.vim" directory and you want to add a
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
614 package from a zip archive "/tmp/foopack.zip":
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
615 % mkdir -p ~/.vim/pack/foo
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
616 % cd ~/.vim/pack/foo
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
617 % unzip /tmp/foopack.zip
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
618
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
619 The directory name "foo" is arbitrary, you can pick anything you like.
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
620
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
621 You would now have these files under ~/.vim:
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
622 pack/foo/README.txt
8475
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
623 pack/foo/start/foobar/plugin/foo.vim
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
624 pack/foo/start/foobar/syntax/some.vim
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
625 pack/foo/opt/foodebug/plugin/debugger.vim
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
626
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
627 When Vim starts up, after processing your .vimrc, it scans all directories in
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
628 'packpath' for plugins under the "pack/*/start" directory. First all those
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
629 directories are added to 'runtimepath'. Then all the plugins are loaded.
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
630 See |packload-two-steps| for how these two steps can be useful.
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
631
30875
3295247d97a5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 30547
diff changeset
632 To allow for calling into package functionality while parsing your .vimrc,
3295247d97a5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 30547
diff changeset
633 |:colorscheme| and |autoload| will both automatically search under 'packpath'
3295247d97a5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 30547
diff changeset
634 as well in addition to 'runtimepath'. See the documentation for each for
3295247d97a5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 30547
diff changeset
635 details.
3295247d97a5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 30547
diff changeset
636
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18130
diff changeset
637 In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
8475
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
638 "~/.vim/pack/foo/start/foobar" to 'runtimepath'.
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
639
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
640 If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
641 find the syntax/some.vim file, because its directory is in 'runtimepath'.
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
642
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
643 Vim will also load ftdetect files, if there are any.
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
644
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
645 Note that the files under "pack/foo/opt" are not loaded automatically, only the
8475
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
646 ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
647 is used.
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
648
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
649 Loading packages automatically will not happen if loading plugins is disabled,
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
650 see |load-plugins|.
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
651
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
652 To load packages earlier, so that 'runtimepath' gets updated: >
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
653 :packloadall
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
654 This also works when loading plugins is disabled. The automatic loading will
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
655 only happen once.
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
656
9116
bc38030aec7d commit https://github.com/vim/vim/commit/26852128a2b713ef49341a0c18daba928444e7eb
Christian Brabandt <cb@256bit.org>
parents: 8876
diff changeset
657 If the package has an "after" directory, that directory is added to the end of
bc38030aec7d commit https://github.com/vim/vim/commit/26852128a2b713ef49341a0c18daba928444e7eb
Christian Brabandt <cb@256bit.org>
parents: 8876
diff changeset
658 'runtimepath', so that anything there will be loaded later.
bc38030aec7d commit https://github.com/vim/vim/commit/26852128a2b713ef49341a0c18daba928444e7eb
Christian Brabandt <cb@256bit.org>
parents: 8876
diff changeset
659
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
660
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
661 Using a single plugin and loading it automatically ~
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
662
8388
f5972de59001 commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents: 8376
diff changeset
663 If you don't have a package but a single plugin, you need to create the extra
f5972de59001 commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents: 8376
diff changeset
664 directory level:
8475
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
665 % mkdir -p ~/.vim/pack/foo/start/foobar
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
666 % cd ~/.vim/pack/foo/start/foobar
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
667 % unzip /tmp/someplugin.zip
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
668
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
669 You would now have these files:
8475
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
670 pack/foo/start/foobar/plugin/foo.vim
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8440
diff changeset
671 pack/foo/start/foobar/syntax/some.vim
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
672
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
673 From here it works like above.
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
674
8376
e448f2a5d45b commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents: 8303
diff changeset
675
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
676 Optional plugins ~
8388
f5972de59001 commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents: 8376
diff changeset
677 *pack-add*
f5972de59001 commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents: 8376
diff changeset
678 To load an optional plugin from a pack use the `:packadd` command: >
8440
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
679 :packadd foodebug
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
680 This searches for "pack/*/opt/foodebug" in 'packpath' and will find
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
681 ~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
4c6ad81d41fe commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
682
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
683 This could be done if some conditions are met. For example, depending on
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
684 whether Vim supports a feature or a dependency is missing.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
685
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
686 You can also load an optional plugin at startup, by putting this command in
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
687 your |.vimrc|: >
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
688 :packadd! foodebug
9286
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9116
diff changeset
689 The extra "!" is so that the plugin isn't loaded if Vim was started with
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
690 |--noplugin|.
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
691
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
692 It is perfectly normal for a package to only have files in the "opt"
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
693 directory. You then need to load each plugin when you want to use it.
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
694
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
695
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
696 Where to put what ~
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
697
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
698 Since color schemes, loaded with `:colorscheme`, are found below
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
699 "pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
700 you put them below "pack/*/opt", for example
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
701 ".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
702
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
703 Filetype plugins should go under "pack/*/start", so that they are always
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
704 found. Unless you have more than one plugin for a file type and want to
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
705 select which one to load with `:packadd`. E.g. depending on the compiler
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
706 version: >
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
707 if foo_compiler_version > 34
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
708 packadd foo_new
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
709 else
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
710 packadd foo_old
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
711 endif
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
712
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
713 The "after" directory is most likely not useful in a package. It's not
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
714 disallowed though.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
715
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8061
diff changeset
716 ==============================================================================
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
717 6. Creating Vim packages *package-create*
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
718
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
719 This assumes you write one or more plugins that you distribute as a package.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
720
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
721 If you have two unrelated plugins you would use two packages, so that Vim
21499
3a1ed539ae2a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 20891
diff changeset
722 users can choose what they include or not. Or you can decide to use one
21825
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 21499
diff changeset
723 package with optional plugins, and tell the user to add the preferred ones with
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
724 `:packadd`.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
725
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
726 Decide how you want to distribute the package. You can create an archive or
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
727 you could use a repository. An archive can be used by more users, but is a
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
728 bit harder to update to a new version. A repository can usually be kept
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
729 up-to-date easily, but it requires a program like "git" to be available.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
730 You can do both, github can automatically create an archive for a release.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
731
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
732 Your directory layout would be like this:
32004
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
733 start/foobar/plugin/foo.vim " always loaded, defines commands
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
734 start/foobar/plugin/bar.vim " always loaded, defines commands
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
735 start/foobar/autoload/foo.vim " loaded when foo command used
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
736 start/foobar/doc/foo.txt " help for foo.vim
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
737 start/foobar/doc/tags " help tags
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
738 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
739 opt/fooextra/autoload/extra.vim " loaded when extra command used
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
740 opt/fooextra/doc/extra.txt " help for extra.vim
a9b5ffbc0428 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 30875
diff changeset
741 opt/fooextra/doc/tags " help tags
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
742
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
743 This allows for the user to do: >
24103
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 24024
diff changeset
744 mkdir ~/.vim/pack
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 24024
diff changeset
745 cd ~/.vim/pack
788e10cec9bd Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 24024
diff changeset
746 git clone https://github.com/you/foobar.git myfoobar
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
747
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
748 Here "myfoobar" is a name that the user can choose, the only condition is that
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
749 it differs from other packages.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
750
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
751 In your documentation you explain what the plugins do, and tell the user how
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
752 to load the optional plugin: >
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
753 :packadd! fooextra
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
754
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
755 You could add this packadd command in one of your plugins, to be executed when
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
756 the optional plugin is needed.
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
757
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
758 Run the `:helptags` command to generate the doc/tags file. Including this
21825
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 21499
diff changeset
759 generated file in the package means that the user can drop the package in the
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
760 pack directory and the help command works right away. Don't forget to re-run
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
761 the command after changing the plugin help: >
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
762 :helptags path/start/foobar/doc
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
763 :helptags path/opt/fooextra/doc
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
764
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
765
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
766 Dependencies between plugins ~
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
767 *packload-two-steps*
9286
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 9116
diff changeset
768 Suppose you have two plugins that depend on the same functionality. You can
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
769 put the common functionality in an autoload directory, so that it will be
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
770 found automatically. Your package would have these files:
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
771
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
772 pack/foo/start/one/plugin/one.vim >
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
773 call foolib#getit()
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
774 < pack/foo/start/two/plugin/two.vim >
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
775 call foolib#getit()
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
776 < pack/foo/start/lib/autoload/foolib.vim >
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
777 func foolib#getit()
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
778
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
779 This works, because loading packages will first add all found directories to
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
780 'runtimepath' before sourcing the plugins.
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 8795
diff changeset
781
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
782 ==============================================================================
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
783 7. Debugging scripts *debug-scripts*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
784
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
785 Besides the obvious messages that you can add to your scripts to find out what
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
786 they are doing, Vim offers a debug mode. This allows you to step through a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
787 sourced file or user function and set breakpoints.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
788
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
789 NOTE: The debugging mode is far from perfect. Debugging will have side
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
790 effects on how Vim works. You cannot use it to debug everything. For
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
791 example, the display is messed up by the debugging messages.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 An alternative to debug mode is setting the 'verbose' option. With a bigger
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
794 number it will give more verbose messages about what Vim is doing.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
795
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
796
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797 STARTING DEBUG MODE *debug-mode*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
799 To enter debugging mode use one of these methods:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 1. Start Vim with the |-D| argument: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801 vim -D file.txt
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802 < Debugging will start as soon as the first vimrc file is sourced. This is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803 useful to find out what is happening when Vim is starting up. A side
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 effect is that Vim will switch the terminal mode before initialisations
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805 have finished, with unpredictable results.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
806 For a GUI-only version (Windows, Macintosh) the debugging will start as
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
807 soon as the GUI window has been opened. To make this happen early, add a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
808 ":gui" command in the vimrc file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809 *:debug*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810 2. Run a command with ":debug" prepended. Debugging will only be done while
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811 this command executes. Useful for debugging a specific script or user
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
812 function. And for scripts and functions used by autocommands. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
813 :debug edit test.txt.gz
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
814
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
815 3. Set a breakpoint in a sourced file or user function. You could do this in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
816 the command line: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
817 vim -c "breakadd file */explorer.vim" .
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 < This will run Vim and stop in the first line of the "explorer.vim" script.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819 Breakpoints can also be set while in debugging mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821 In debugging mode every executed command is displayed before it is executed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 Comment lines, empty lines and lines that are not executed are skipped. When
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823 a line contains two commands, separated by "|", each command will be displayed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 separately.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
827 DEBUG MODE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
829 Once in debugging mode, the usual Ex commands can be used. For example, to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
830 inspect the value of a variable: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831 echo idx
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832 When inside a user function, this will print the value of the local variable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 "idx". Prepend "g:" to get the value of a global variable: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 echo g:idx
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 All commands are executed in the context of the current function or script.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 You can also set options, for example setting or resetting 'verbose' will show
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 what happens, but you might want to set it just before executing the lines you
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 are interested in: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839 :set verbose=20
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 Commands that require updating the screen should be avoided, because their
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842 effect won't be noticed until after leaving debug mode. For example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843 :help
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 won't be very helpful.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
846 There is a separate command-line history for debug mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
847
26304
bb2175e5ccee Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
848 NOTE: In Vim9 script, if a command is written at the script level and
bb2175e5ccee Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
849 continues on the next line, not using the old way with a backslash for line
bb2175e5ccee Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
850 continuation, only the first line is printed before the debugging prompt.
bb2175e5ccee Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
851
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
852 The line number for a function line is relative to the start of the function.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853 If you have trouble figuring out where you are, edit the file that defines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
854 the function in another Vim, search for the start of the function and do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
855 "99j". Replace "99" with the line number.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
856
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
857 Additionally, these commands can be used:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
858 *>cont*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
859 cont Continue execution until the next breakpoint is hit.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
860 *>quit*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
861 quit Abort execution. This is like using CTRL-C, some
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
862 things might still be executed, doesn't abort
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
863 everything. Still stops at the next breakpoint.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
864 *>next*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
865 next Execute the command and come back to debug mode when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
866 it's finished. This steps over user function calls
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 and sourced files.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
868 *>step*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
869 step Execute the command and come back to debug mode for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870 the next command. This steps into called user
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
871 functions and sourced files.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
872 *>interrupt*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
873 interrupt This is like using CTRL-C, but unlike ">quit" comes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
874 back to debug mode for the next command that is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
875 executed. Useful for testing |:finally| and |:catch|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
876 on interrupt exceptions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
877 *>finish*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
878 finish Finish the current script or user function and come
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
879 back to debug mode for the command after the one that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
880 sourced or called it.
7605
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
881 *>bt*
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
882 *>backtrace*
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
883 *>where*
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
884 backtrace Show the call stacktrace for current debugging session.
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
885 bt
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
886 where
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
887 *>frame*
8061
abd64cf67bcf commit https://github.com/vim/vim/commit/38a55639d603823efcf2d2fdf542dbffdeb60b75
Christian Brabandt <cb@256bit.org>
parents: 7605
diff changeset
888 frame N Goes to N backtrace level. + and - signs make movement
7605
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
889 relative. E.g., ":frame +3" goes three frames up.
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
890 *>up*
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
891 up Goes one level up from call stacktrace.
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
892 *>down*
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
893 down Goes one level down from call stacktrace.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
894
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
895 About the additional commands in debug mode:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896 - There is no command-line completion for them, you get the completion for the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 normal Ex commands only.
8303
88207f4b861a commit https://github.com/vim/vim/commit/dae8d21dd291df6a6679a00be64e18bca0156576
Christian Brabandt <cb@256bit.org>
parents: 8246
diff changeset
898 - You can shorten them, up to a single character, unless more than one command
7605
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
899 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
900 - Hitting <CR> will repeat the previous one. When doing another command, this
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
901 is reset (because it's not clear what you want to repeat).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902 - When you want to use the Ex command with the same name, prepend a colon:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
903 ":cont", ":next", ":finish" (or shorter).
25056
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
904 *vim9-debug*
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
905 When debugging a compiled :def function, "step" will stop before every
25161
84c7dc0fdcd2 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25056
diff changeset
906 executed line, not every single instruction. Thus it works mostly like a not
25056
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
907 compiled function. Access to local variables is limited you can use: >
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
908 echo varname
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
909 But not much else.
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
910 When executing a command that is not a specific bytecode instruction but
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
911 executed like a normal Ex command, "step" will stop once in the compiled
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
912 context, where local variables can be inspected, and once just before
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
913 executing the command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914
30547
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
915 In a :def function variables that haven't been declared yet cannot be
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
916 inspected. Variables that have been declared can be inspected, also when the
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
917 block they were declared in has finished. In commands this would not be
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
918 possible, thus is slightly misleading (but can be useful).
1e91e26ceebf Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29828
diff changeset
919
7605
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
920 The backtrace shows the hierarchy of function calls, e.g.:
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
921 >bt ~
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
922 3 function One[3] ~
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
923 2 Two[3] ~
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
924 ->1 Three[3] ~
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
925 0 Four ~
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
926 line 1: let four = 4 ~
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
927
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
928 The "->" points to the current frame. Use "up", "down" and "frame N" to
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
929 select another frame.
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
930
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
931 In the current frame you can evaluate the local function variables. There is
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
932 no way to see the command at the current line yet.
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
933
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
934
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
935 DEFINING BREAKPOINTS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
936 *:breaka* *:breakadd*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937 :breaka[dd] func [lnum] {name}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
938 Set a breakpoint in a function. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
939 :breakadd func Explore
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
940 < Doesn't check for a valid function name, thus the breakpoint
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
941 can be set before the function is defined.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
942
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
943 :breaka[dd] file [lnum] {name}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
944 Set a breakpoint in a sourced file. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945 :breakadd file 43 .vimrc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
947 :breaka[dd] here
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
948 Set a breakpoint in the current line of the current file.
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
949 Like doing: >
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
950 :breakadd file <cursor-line> <current-file>
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
951 < Note that this only works for commands that are executed when
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
952 sourcing the file, not for a function defined in that file.
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
953
13262
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
954 :breaka[dd] expr {expression}
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
955 Sets a breakpoint, that will break whenever the {expression}
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
956 evaluates to a different value. Example: >
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
957 :breakadd expr g:lnum
25773
11b656e74444 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25161
diff changeset
958 < Will break, whenever the global variable lnum changes.
13262
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
959
25773
11b656e74444 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25161
diff changeset
960 Errors in evaluation are suppressed, you can use the name of a
11b656e74444 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25161
diff changeset
961 variable that does not exist yet. This also means you will
11b656e74444 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25161
diff changeset
962 not notice anything if the expression has a mistake.
11b656e74444 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25161
diff changeset
963
13262
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
964 Note if you watch a |script-variable| this will break
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
965 when switching scripts, since the script variable is only
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
966 valid in the script where it has been defined and if that
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
967 script is called from several other scripts, this will stop
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
968 whenever that particular variable will become visible or
24024
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23938
diff changeset
969 inaccessible again.
13262
69278c25429d patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents: 13051
diff changeset
970
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
971 The [lnum] is the line number of the breakpoint. Vim will stop at or after
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
972 this line. When omitted line 1 is used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
974 *:debug-name*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 {name} is a pattern that is matched with the file or function name. The
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 pattern is like what is used for autocommands. There must be a full match (as
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
978 of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 to ignore case |/\c|. Don't include the () for the function name!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
980
11
4424b47a0797 updated for version 7.0003
vimboss
parents: 10
diff changeset
981 The match for sourced scripts is done against the full file name. If no path
4424b47a0797 updated for version 7.0003
vimboss
parents: 10
diff changeset
982 is specified the current directory is used. Examples: >
4424b47a0797 updated for version 7.0003
vimboss
parents: 10
diff changeset
983 breakadd file explorer.vim
4424b47a0797 updated for version 7.0003
vimboss
parents: 10
diff changeset
984 matches "explorer.vim" in the current directory. >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
985 breakadd file *explorer.vim
11
4424b47a0797 updated for version 7.0003
vimboss
parents: 10
diff changeset
986 matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
987 breakadd file */explorer.vim
11
4424b47a0797 updated for version 7.0003
vimboss
parents: 10
diff changeset
988 matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
989
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
990 The match for functions is done against the name as it's shown in the output
23717
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
991 of ":function". However, for local functions the script-specific prefix such
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
992 as "<SNR>99_" is ignored to make it easier to match script-local functions
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
993 without knowing the ID of the script.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994
148
72aefd4c1e0d updated for version 7.0046
vimboss
parents: 22
diff changeset
995 Note that functions are first loaded and later executed. When they are loaded
72aefd4c1e0d updated for version 7.0046
vimboss
parents: 22
diff changeset
996 the "file" breakpoints are checked, when they are executed the "func"
72aefd4c1e0d updated for version 7.0046
vimboss
parents: 22
diff changeset
997 breakpoints.
72aefd4c1e0d updated for version 7.0046
vimboss
parents: 22
diff changeset
998
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
999
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 DELETING BREAKPOINTS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001 *:breakd* *:breakdel* *E161*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1002 :breakd[el] {nr}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1003 Delete breakpoint {nr}. Use |:breaklist| to see the number of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1004 each breakpoint.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 333
diff changeset
1006 :breakd[el] *
6c62b9b939bd updated for version 7.0093
vimboss
parents: 333
diff changeset
1007 Delete all breakpoints.
6c62b9b939bd updated for version 7.0093
vimboss
parents: 333
diff changeset
1008
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1009 :breakd[el] func [lnum] {name}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1010 Delete a breakpoint in a function.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1011
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1012 :breakd[el] file [lnum] {name}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1013 Delete a breakpoint in a sourced file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1014
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1015 :breakd[el] here
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1016 Delete a breakpoint at the current line of the current file.
4e2284e71352 updated for version 7.0002
vimboss
parents: 7
diff changeset
1017
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1018 When [lnum] is omitted, the first breakpoint in the function or file is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1019 deleted.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1020 The {name} must be exactly the same as what was typed for the ":breakadd"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1021 command. "explorer", "*explorer.vim" and "*explorer*" are different.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1022
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1023
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1024 LISTING BREAKPOINTS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1025 *:breakl* *:breaklist*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1026 :breakl[ist]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1027 List all breakpoints.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1028
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1029
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1030 OBSCURE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1031
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1032 *:debugg* *:debuggreedy*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1033 :debugg[reedy]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1034 Read debug mode commands from the normal input stream, instead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1035 of getting them directly from the user. Only useful for test
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1036 scripts. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1037 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1038
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1039 :0debugg[reedy]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1040 Undo ":debuggreedy": get debug mode commands directly from the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1041 user, don't use typeahead for debug commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1043 ==============================================================================
8748
b1a19a2f73f0 commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents: 8673
diff changeset
1044 8. Profiling *profile* *profiling*
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1045
2283
7e1bd501306d Mainly documentation updates.
Bram Moolenaar <bram@vim.org>
parents: 2207
diff changeset
1046 Profiling means that Vim measures the time that is spent on executing
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1047 functions and/or scripts. The |+profile| feature is required for this.
23717
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1048 It is included when Vim was compiled with "huge" features.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1049
794
f19994020dad updated for version 7.0231
vimboss
parents: 790
diff changeset
1050 You can also use the |reltime()| function to measure time. This only requires
23717
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1051 the |+reltime| feature, which is present in more builds.
794
f19994020dad updated for version 7.0231
vimboss
parents: 790
diff changeset
1052
5244
eb7ce2918a03 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5239
diff changeset
1053 For profiling syntax highlighting see |:syntime|.
eb7ce2918a03 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5239
diff changeset
1054
5763
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1055 For example, to profile the one_script.vim script file: >
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1056 :profile start /tmp/one_script_profile
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1057 :profile file one_script.vim
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1058 :source one_script.vim
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1059 :exit
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1060
5244
eb7ce2918a03 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5239
diff changeset
1061
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1062 :prof[ile] start {fname} *:prof* *:profile* *E750*
28373
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1063 Start profiling, write the output in {fname} upon exit or when
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1064 a `:profile stop` or `:profile dump` command is invoked.
6757
49db2b239564 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 6476
diff changeset
1065 "~/" and environment variables in {fname} will be expanded.
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 716
diff changeset
1066 If {fname} already exists it will be silently overwritten.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1067 The variable |v:profiling| is set to one.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1068
28373
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1069 :prof[ile] stop
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1070 Write the collected profiling information to the logfile and
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1071 stop profiling. You can use the `:profile start` command to
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1072 clear the profiling statistics and start profiling again.
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1073
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 716
diff changeset
1074 :prof[ile] pause
28373
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1075 Don't profile until the following `:profile continue`. Can be
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 716
diff changeset
1076 used when doing something that should not be counted (e.g., an
c8680debe1cc updated for version 7.0230
vimboss
parents: 716
diff changeset
1077 external command). Does not nest.
c8680debe1cc updated for version 7.0230
vimboss
parents: 716
diff changeset
1078
c8680debe1cc updated for version 7.0230
vimboss
parents: 716
diff changeset
1079 :prof[ile] continue
28373
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1080 Continue profiling after `:profile pause`.
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 716
diff changeset
1081
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1082 :prof[ile] func {pattern}
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1083 Profile function that matches the pattern {pattern}.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1084 See |:debug-name| for how {pattern} is used.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1085
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1086 :prof[ile][!] file {pattern}
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1087 Profile script file that matches the pattern {pattern}.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1088 See |:debug-name| for how {pattern} is used.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1089 This only profiles the script itself, not the functions
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1090 defined in it.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1091 When the [!] is added then all functions defined in the script
5763
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1092 will also be profiled.
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1093 Note that profiling only starts when the script is loaded
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1094 after this command. A :profile command in the script itself
c52a655d927d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5663
diff changeset
1095 won't work.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1096
28373
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1097 :prof[ile] dump
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1098 Write the current state of profiling to the logfile
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1099 immediately. After running this command, Vim continues to
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1100 collect the profiling statistics.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1101
364
5332dd13733c updated for version 7.0094
vimboss
parents: 359
diff changeset
1102 :profd[el] ... *:profd* *:profdel*
5332dd13733c updated for version 7.0094
vimboss
parents: 359
diff changeset
1103 Stop profiling for the arguments specified. See |:breakdel|
28373
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1104 for the arguments. Examples: >
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1105 profdel func MyFunc
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1106 profdel file MyScript.vim
2ddf8aa1252c patch 8.2.4712: only get profiling information after exiting
Bram Moolenaar <Bram@vim.org>
parents: 28246
diff changeset
1107 profdel here
364
5332dd13733c updated for version 7.0094
vimboss
parents: 359
diff changeset
1108
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1109 You must always start with a ":profile start fname" command. The resulting
23717
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1110 file is written when Vim exits. For example, to profile one specific
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1111 function: >
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1112 profile start /tmp/vimprofile
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1113 profile func MyFunc
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1114
e3720756acdc patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents: 23466
diff changeset
1115 Here is an example of the output, with line
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1116 numbers prepended for the explanation:
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1117
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1118 1 FUNCTION Test2() ~
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1119 2 Called 1 time ~
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1120 3 Total time: 0.155251 ~
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1121 4 Self time: 0.002006 ~
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1122 5 ~
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1123 6 count total (s) self (s) ~
856
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
1124 7 9 0.000096 for i in range(8) ~
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
1125 8 8 0.153655 0.000410 call Test3() ~
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
1126 9 8 0.000070 endfor ~
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
1127 10 " Ask a question ~
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
1128 11 1 0.001341 echo input("give me an answer: ") ~
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1129
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1130 The header (lines 1-4) gives the time for the whole function. The "Total"
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1131 time is the time passed while the function was executing. The "Self" time is
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1132 the "Total" time reduced by time spent in:
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1133 - other user defined functions
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1134 - sourced scripts
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1135 - executed autocommands
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1136 - external (shell) commands
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1137
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1138 Lines 7-11 show the time spent in each executed line. Lines that are not
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1139 executed do not count. Thus a comment line is never counted.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1140
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1141 The Count column shows how many times a line was executed. Note that the
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1142 "for" command in line 7 is executed one more time as the following lines.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1143 That is because the line is also executed to detect the end of the loop.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1144
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1145 The time Vim spends waiting for user input isn't counted at all. Thus how
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1146 long you take to respond to the input() prompt is irrelevant.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1147
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1148 Profiling should give a good indication of where time is spent, but keep in
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1149 mind there are various things that may clobber the results:
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1150
32160
98774a275d6d patch 9.0.1411: accuracy of profiling is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 32061
diff changeset
1151 - The accuracy of the time measured depends on the gettimeofday(), or
98774a275d6d patch 9.0.1411: accuracy of profiling is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 32061
diff changeset
1152 clock_gettime if available, system function. The accuracy ranges from 1/100
98774a275d6d patch 9.0.1411: accuracy of profiling is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 32061
diff changeset
1153 second to nano seconds. With clock_gettime the times are displayed in nano
98774a275d6d patch 9.0.1411: accuracy of profiling is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 32061
diff changeset
1154 seconds, otherwise micro seconds. You can use `has("prof_nsec")`.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1155
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1156 - Real elapsed time is measured, if other processes are busy they may cause
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1157 delays at unpredictable moments. You may want to run the profiling several
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1158 times and use the lowest results.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1159
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1160 - If you have several commands in one line you only get one time. Split the
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1161 line to see the time for the individual commands.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1162
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1163 - The time of the lines added up is mostly less than the time of the whole
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1164 function. There is some overhead in between.
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1165
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1166 - Functions that are deleted before Vim exits will not produce profiling
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1167 information. You can check the |v:profiling| variable if needed: >
856
8cd729851562 updated for version 7.0g
vimboss
parents: 842
diff changeset
1168 :if !v:profiling
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1169 : delfunc MyFunc
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1170 :endif
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1171 <
177
84c21eb4fc40 updated for version 7.0054
vimboss
parents: 170
diff changeset
1172 - Profiling may give weird results on multi-processor systems, when sleep
84c21eb4fc40 updated for version 7.0054
vimboss
parents: 170
diff changeset
1173 mode kicks in or the processor frequency is reduced to save power.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 168
diff changeset
1174
1125
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
1175 - The "self" time is wrong when a function is used recursively.
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
1176
96cd8222a819 updated for version 7.1a
vimboss
parents: 874
diff changeset
1177
14421
2f7e67dd088c Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14249
diff changeset
1178 vim:tw=78:ts=8:noet:ft=help:norl: