Mercurial > vim
annotate runtime/doc/repeat.txt @ 13696:3b1cfbc70b43 v8.0.1720
patch 8.0.1720: when a timer is running a terminal window may not close
commit https://github.com/vim/vim/commit/802bfb14636b24d86d0ca8e0947d808b9b7c941e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Apr 15 17:28:13 2018 +0200
patch 8.0.1720: when a timer is running a terminal window may not close
Problem: When a timer is running a terminal window may not close after a
shell has exited.
Solution: Call job_status() more often.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 15 Apr 2018 17:30:07 +0200 |
parents | 02b3f719eacb |
children | 1174611ad715 |
rev | line source |
---|---|
13437 | 1 *repeat.txt* For Vim version 8.0. Last change: 2018 Mar 04 |
7 | 2 |
3 | |
4 VIM REFERENCE MANUAL by Bram Moolenaar | |
5 | |
6 | |
7 Repeating commands, Vim scripts and debugging *repeating* | |
8 | |
9 Chapter 26 of the user manual introduces repeating |usr_26.txt|. | |
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 | 19 |
20 ============================================================================== | |
21 1. Single repeats *single-repeat* | |
22 | |
23 *.* | |
24 . Repeat last change, with count replaced with [count]. | |
25 Also repeat a yank command, when the 'y' flag is | |
22 | 26 included in 'cpoptions'. Does not repeat a |
27 command-line command. | |
7 | 28 |
29 Simple changes can be repeated with the "." command. Without a count, the | |
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 | 39 |
40 *@:* | |
41 @: Repeat last command-line [count] times. | |
42 {not available when compiled without the | |
43 |+cmdline_hist| feature} | |
44 | |
45 | |
46 ============================================================================== | |
47 2. Multiple repeats *multi-repeat* | |
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 | 50 :[range]g[lobal]/{pattern}/[cmd] |
51 Execute the Ex command [cmd] (default ":p") on the | |
52 lines within [range] where {pattern} matches. | |
53 | |
54 :[range]g[lobal]!/{pattern}/[cmd] | |
55 Execute the Ex command [cmd] (default ":p") on the | |
56 lines within [range] where {pattern} does NOT match. | |
57 | |
58 *:v* *:vglobal* | |
59 :[range]v[global]/{pattern}/[cmd] | |
60 Same as :g!. | |
61 | |
1125 | 62 Instead of the '/' which surrounds the {pattern}, you can use any other |
5239 | 63 single byte character, but not an alphabetic character, '\', '"' or '|'. |
1125 | 64 This is useful if you want to include a '/' in the search pattern or |
65 replacement string. | |
66 | |
67 For the definition of a pattern, see |pattern|. | |
68 | |
6336 | 69 NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for |
70 examples. | |
71 | |
7 | 72 The global commands work by first scanning through the [range] lines and |
73 marking each line where a match occurs (for a multi-line pattern, only the | |
74 start of the match matters). | |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
75 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
|
76 was in that line. For ":v" and ":g!" the command is executed for each not |
7 | 77 marked line. If a line is deleted its mark disappears. |
78 The default for [range] is the whole buffer (1,$). Use "CTRL-C" to interrupt | |
79 the command. If an error message is given for a line, the command for that | |
80 line is aborted and the global command continues with the next marked or | |
81 unmarked line. | |
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
|
82 *E147* |
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
|
83 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
|
84 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
|
85 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
|
86 :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
|
87 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
|
88 there is no match for "notfound". |
7 | 89 |
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
|
90 To execute a non-Ex command, you can use the `:normal` command: > |
7 | 91 :g/pat/normal {commands} |
92 Make sure that {commands} ends with a whole command, otherwise Vim will wait | |
93 for you to type the rest of the command for each match. The screen will not | |
94 have been updated, so you don't know what you are doing. See |:normal|. | |
95 | |
96 The undo/redo command will undo/redo the whole global command at once. | |
97 The previous context mark will only be set once (with "''" you go back to | |
98 where the cursor was before the global command). | |
99 | |
100 The global command sets both the last used search pattern and the last used | |
101 substitute pattern (this is vi compatible). This makes it easy to globally | |
102 replace a string: | |
103 :g/pat/s//PAT/g | |
104 This replaces all occurrences of "pat" with "PAT". The same can be done with: | |
105 :%s/pat/PAT/g | |
106 Which is two characters shorter! | |
107 | |
1623 | 108 When using "global" in Ex mode, a special case is using ":visual" as a |
109 command. This will move to a matching line, go to Normal mode to let you | |
110 execute commands there until you use |Q| to return to Ex mode. This will be | |
111 repeated for each matching line. While doing this you cannot use ":global". | |
112 To abort this type CTRL-C twice. | |
168 | 113 |
7 | 114 ============================================================================== |
115 3. Complex repeats *complex-repeat* | |
116 | |
117 *q* *recording* | |
118 q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"} | |
119 (uppercase to append). The 'q' command is disabled | |
120 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
|
121 a mapping and |:normal|. |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
6757
diff
changeset
|
122 |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
6757
diff
changeset
|
123 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
|
124 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
|
125 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
|
126 recorded macro and the yank will overwrite the |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
6757
diff
changeset
|
127 recorded macro. {Vi: no recording} |
7 | 128 |
129 q Stops recording. (Implementation note: The 'q' that | |
130 stops recording is not stored in the register, unless | |
131 it was the result of a mapping) {Vi: no recording} | |
132 | |
133 *@* | |
3445 | 134 @{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count] |
7 | 135 times. Note that register '%' (name of the current |
136 file) and '#' (name of the alternate file) cannot be | |
2681 | 137 used. |
138 The register is executed like a mapping, that means | |
139 that the difference between 'wildchar' and 'wildcharm' | |
140 applies. | |
141 For "@=" you are prompted to enter an expression. The | |
142 result of the expression is then executed. | |
143 See also |@:|. {Vi: only named registers} | |
7 | 144 |
168 | 145 *@@* *E748* |
7 | 146 @@ Repeat the previous @{0-9a-z":*} [count] times. |
147 | |
3445 | 148 :[addr]*{0-9a-z".=+} *:@* *:star* |
149 :[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex | |
7 | 150 command. First set cursor at line [addr] (default is |
151 current line). When the last line in the register does | |
152 not have a <CR> it will be added automatically when | |
153 the 'e' flag is present in 'cpoptions'. | |
154 Note that the ":*" command is only recognized when the | |
155 '*' flag is present in 'cpoptions'. This is NOT the | |
156 default when 'nocompatible' is used. | |
157 For ":@=" the last used expression is used. The | |
158 result of evaluating the expression is executed as an | |
159 Ex command. | |
160 Mappings are not recognized in these commands. | |
161 {Vi: only in some versions} Future: Will execute the | |
162 register for each line in the address range. | |
163 | |
164 *:@:* | |
165 :[addr]@: Repeat last command-line. First set cursor at line | |
166 [addr] (default is current line). {not in Vi} | |
167 | |
10186
a5ef9968638c
commit https://github.com/vim/vim/commit/7e1479b86c590a66b63a274c079b7f18907d45a4
Christian Brabandt <cb@256bit.org>
parents:
9644
diff
changeset
|
168 :[addr]@ *:@@* |
7 | 169 :[addr]@@ Repeat the previous :@{0-9a-z"}. First set cursor at |
170 line [addr] (default is current line). {Vi: only in | |
171 some versions} | |
172 | |
173 ============================================================================== | |
174 4. Using Vim scripts *using-scripts* | |
175 | |
176 For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|. | |
177 | |
178 *:so* *:source* *load-vim-script* | |
179 :so[urce] {file} Read Ex commands from {file}. These are commands that | |
180 start with a ":". | |
716 | 181 Triggers the |SourcePre| autocommand. |
7 | 182 |
183 :so[urce]! {file} Read Vim commands from {file}. These are commands | |
184 that are executed from Normal mode, like you type | |
185 them. | |
186 When used after |:global|, |:argdo|, |:windo|, | |
187 |:bufdo|, in a loop or when another command follows | |
188 the display won't be updated while executing the | |
189 commands. | |
190 {not in Vi} | |
191 | |
192 *:ru* *:runtime* | |
8526
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
193 :ru[ntime][!] [where] {file} .. |
7 | 194 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
|
195 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
|
196 for non-existing files. |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
197 |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
198 Example: > |
7 | 199 :runtime syntax/c.vim |
200 | |
201 < There can be multiple {file} arguments, separated by | |
202 spaces. Each {file} is searched for in the first | |
203 directory from 'runtimepath', then in the second | |
204 directory, etc. Use a backslash to include a space | |
205 inside {file} (although it's better not to use spaces | |
206 in file names, it causes trouble). | |
207 | |
208 When [!] is included, all found files are sourced. | |
209 When it is not included only the first found file is | |
210 sourced. | |
211 | |
8526
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
212 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
|
213 Other values: |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
214 START search under "start" in 'packpath' |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
215 OPT search under "opt" in 'packpath' |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
216 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
|
217 'packpath' |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
218 ALL first use 'runtimepath', then search |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
219 under "start" and "opt" in 'packpath' |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
220 |
7 | 221 When {file} contains wildcards it is expanded to all |
222 matching files. Example: > | |
223 :runtime! plugin/*.vim | |
224 < This is what Vim uses to load the plugin files when | |
237 | 225 starting up. This similar command: > |
7 | 226 :runtime plugin/*.vim |
227 < would source the first file only. | |
228 | |
229 When 'verbose' is one or higher, there is a message | |
230 when no file could be found. | |
231 When 'verbose' is two or higher, there is a message | |
232 about each searched file. | |
233 {not in Vi} | |
234 | |
8416
1a6527cce675
commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents:
8392
diff
changeset
|
235 *:pa* *:packadd* *E919* |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
236 :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
|
237 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
|
238 match: |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
239 pack/*/opt/{name} ~ |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
240 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
|
241 there yet. |
9116
bc38030aec7d
commit https://github.com/vim/vim/commit/26852128a2b713ef49341a0c18daba928444e7eb
Christian Brabandt <cb@256bit.org>
parents:
8876
diff
changeset
|
242 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
|
243 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
|
244 |
13051 | 245 If loading packages from "pack/*/start" was skipped, |
246 then this directory is searched first: | |
247 pack/*/start/{name} ~ | |
248 | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
249 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
|
250 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
|
251 pack/*/opt/{name}/plugin/**/*.vim ~ |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
252 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
|
253 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
|
254 'runtimepath'. |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
255 |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
256 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
|
257 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
|
258 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
|
259 for "{name}/ftdetect/*.vim" files. |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
260 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
261 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
|
262 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
|
263 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
|
264 useful in your .vimrc. The plugins will then be |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
265 loaded during initialization, see |load-plugins|. |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
266 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
267 Also see |pack-add|. |
13437 | 268 {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
|
269 |
8673
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
270 *:packl* *:packloadall* |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
271 :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
|
272 entry in 'packpath'. |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
273 |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
274 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
|
275 '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
|
276 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
|
277 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
|
278 "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
|
279 how this can be useful. |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
280 |
8673
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
281 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
|
282 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
|
283 can be done earlier. |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
284 |
8526
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
285 Packages will be loaded only once. After this command |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
286 it won't happen again. When the optional ! is added |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
287 this command will load packages even when done before. |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
288 |
8795
aba2d0a01290
commit https://github.com/vim/vim/commit/7db8f6f4f85e5d0526d23107b2a5e2334dc23354
Christian Brabandt <cb@256bit.org>
parents:
8748
diff
changeset
|
289 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
|
290 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
|
291 See |packages|. |
13437 | 292 {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
|
293 |
7 | 294 :scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167* |
295 Specify the character encoding used in the script. | |
296 The following lines will be converted from [encoding] | |
297 to the value of the 'encoding' option, if they are | |
298 different. Examples: > | |
299 scriptencoding iso-8859-5 | |
300 scriptencoding cp932 | |
301 < | |
302 When [encoding] is empty, no conversion is done. This | |
303 can be used to restrict conversion to a sequence of | |
304 lines: > | |
305 scriptencoding euc-jp | |
306 ... lines to be converted ... | |
307 scriptencoding | |
308 ... not converted ... | |
309 | |
310 < 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
|
311 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
|
312 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
|
313 original line is kept. |
7 | 314 |
315 Don't use "ucs-2" or "ucs-4", scripts cannot be in | |
316 these encodings (they would contain NUL bytes). | |
317 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
|
318 Mark) in utf-8 format Vim will recognize it, no need |
7 | 319 to use ":scriptencoding utf-8" then. |
320 | |
10895
c391bfbdb452
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
321 If you set the 'encoding' option in your |.vimrc|, |
c391bfbdb452
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
322 `:scriptencoding` must be placed after that. E.g.: > |
c391bfbdb452
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
323 set encoding=utf-8 |
c391bfbdb452
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
324 scriptencoding utf-8 |
c391bfbdb452
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
325 < |
7 | 326 When compiled without the |+multi_byte| feature this |
327 command is ignored. | |
328 {not in Vi} | |
329 | |
6476 | 330 *:scr* *:scriptnames* |
331 :scr[iptnames] List all sourced script names, in the order they were | |
7 | 332 first sourced. The number is used for the script ID |
333 |<SID>|. | |
334 {not in Vi} {not available when compiled without the | |
335 |+eval| feature} | |
336 | |
337 *:fini* *:finish* *E168* | |
338 :fini[sh] Stop sourcing a script. Can only be used in a Vim | |
339 script file. This is a quick way to skip the rest of | |
340 the file. If it is used after a |:try| but before the | |
341 matching |:finally| (if present), the commands | |
342 following the ":finally" up to the matching |:endtry| | |
343 are executed first. This process applies to all | |
344 nested ":try"s in the script. The outermost ":endtry" | |
345 then stops sourcing the script. {not in Vi} | |
346 | |
347 All commands and command sequences can be repeated by putting them in a named | |
348 register and then executing it. There are two ways to get the commands in the | |
349 register: | |
350 - Use the record command "q". You type the commands once, and while they are | |
351 being executed they are stored in a register. Easy, because you can see | |
352 what you are doing. If you make a mistake, "p"ut the register into the | |
353 file, edit the command sequence, and then delete it into the register | |
354 again. You can continue recording by appending to the register (use an | |
355 uppercase letter). | |
356 - Delete or yank the command sequence into the register. | |
357 | |
358 Often used command sequences can be put under a function key with the ':map' | |
359 command. | |
360 | |
361 An alternative is to put the commands in a file, and execute them with the | |
362 ':source!' command. Useful for long command sequences. Can be combined with | |
363 the ':map' command to put complicated commands under a function key. | |
364 | |
365 The ':source' command reads Ex commands from a file line by line. You will | |
366 have to type any needed keyboard input. The ':source!' command reads from a | |
367 script file character by character, interpreting each character as if you | |
368 typed it. | |
369 | |
370 Example: When you give the ":!ls" command you get the |hit-enter| prompt. If | |
371 you ':source' a file with the line "!ls" in it, you will have to type the | |
372 <Enter> yourself. But if you ':source!' a file with the line ":!ls" in it, | |
373 the next characters from that file are read until a <CR> is found. You will | |
374 not have to type <CR> yourself, unless ":!ls" was the last line in the file. | |
375 | |
376 It is possible to put ':source[!]' commands in the script file, so you can | |
377 make a top-down hierarchy of script files. The ':source' command can be | |
378 nested as deep as the number of files that can be opened at one time (about | |
379 15). The ':source!' command can be nested up to 15 levels deep. | |
380 | |
381 You can use the "<sfile>" string (literally, this is not a special key) inside | |
382 of the sourced file, in places where a file name is expected. It will be | |
383 replaced by the file name of the sourced file. For example, if you have a | |
384 "other.vimrc" file in the same directory as your ".vimrc" file, you can source | |
385 it from your ".vimrc" file with this command: > | |
386 :source <sfile>:h/other.vimrc | |
387 | |
388 In script files terminal-dependent key codes are represented by | |
389 terminal-independent two character codes. This means that they can be used | |
390 in the same way on different kinds of terminals. The first character of a | |
391 key code is 0x80 or 128, shown on the screen as "~@". The second one can be | |
392 found in the list |key-notation|. Any of these codes can also be entered | |
393 with CTRL-V followed by the three digit decimal code. This does NOT work for | |
394 the <t_xx> termcap codes, these can only be used in mappings. | |
395 | |
396 *:source_crnl* *W15* | |
397 MS-DOS, Win32 and OS/2: Files that are read with ":source" normally have | |
398 <CR><NL> <EOL>s. These always work. If you are using a file with <NL> <EOL>s | |
399 (for example, a file made on Unix), this will be recognized if 'fileformats' | |
400 is not empty and the first line does not end in a <CR>. This fails if the | |
401 first line has something like ":map <F1> :help^M", where "^M" is a <CR>. If | |
402 the first line ends in a <CR>, but following ones don't, you will get an error | |
403 message, because the <CR> from the first lines will be lost. | |
404 | |
333 | 405 Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s. |
7 | 406 These always work. If you are using a file with <NL> <EOL>s (for example, a |
407 file made on Unix), this will be recognized if 'fileformats' is not empty and | |
408 the first line does not end in a <CR>. Be careful not to use a file with <NL> | |
409 linebreaks which has a <CR> in first line. | |
410 | |
411 On other systems, Vim expects ":source"ed files to end in a <NL>. These | |
412 always work. If you are using a file with <CR><NL> <EOL>s (for example, a | |
413 file made on MS-DOS), all lines will have a trailing <CR>. This may cause | |
414 problems for some commands (e.g., mappings). There is no automatic <EOL> | |
415 detection, because it's common to start with a line that defines a mapping | |
416 that ends in a <CR>, which will confuse the automaton. | |
417 | |
418 *line-continuation* | |
419 Long lines in a ":source"d Ex command script file can be split by inserting | |
420 a line continuation symbol "\" (backslash) at the start of the next line. | |
421 There can be white space before the backslash, which is ignored. | |
422 | |
423 Example: the lines > | |
424 :set comments=sr:/*,mb:*,el:*/, | |
425 \://, | |
426 \b:#, | |
427 \:%, | |
428 \n:>, | |
429 \fb:- | |
430 are interpreted as if they were given in one line: | |
431 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:- | |
432 | |
433 All leading whitespace characters in the line before a backslash are ignored. | |
434 Note however that trailing whitespace in the line before it cannot be | |
435 inserted freely; it depends on the position where a command is split up | |
436 whether additional whitespace is allowed or not. | |
437 | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
438 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
|
439 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
|
440 :syn match Comment |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
441 \ "very long regexp" |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
442 \ keepend |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
443 |
7 | 444 There is a problem with the ":append" and ":insert" commands: > |
445 :1append | |
446 \asdf | |
447 . | |
448 The backslash is seen as a line-continuation symbol, thus this results in the | |
449 command: > | |
450 :1appendasdf | |
451 . | |
452 To avoid this, add the 'C' flag to the 'cpoptions' option: > | |
453 :set cpo+=C | |
454 :1append | |
455 \asdf | |
456 . | |
457 :set cpo-=C | |
458 | |
459 Note that when the commands are inside a function, you need to add the 'C' | |
460 flag when defining the function, it is not relevant when executing it. > | |
461 :set cpo+=C | |
462 :function Foo() | |
463 :1append | |
464 \asdf | |
465 . | |
466 :endfunction | |
467 :set cpo-=C | |
468 | |
469 Rationale: | |
470 Most programs work with a trailing backslash to indicate line | |
471 continuation. Using this in Vim would cause incompatibility with Vi. | |
472 For example for this Vi mapping: > | |
473 :map xx asdf\ | |
474 < Therefore the unusual leading backslash is used. | |
475 | |
476 ============================================================================== | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
477 5. Using Vim packages *packages* |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
478 |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
479 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
|
480 advantages over normal plugins: |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
481 - 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
|
482 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
|
483 easy to update and remove. |
8376
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
484 - 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
|
485 easy to update. |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
486 - 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
|
487 - 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
|
488 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
|
489 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
490 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
491 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
|
492 |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
493 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
|
494 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
|
495 % mkdir -p ~/.vim/pack/foo |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
496 % cd ~/.vim/pack/foo |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
497 % unzip /tmp/foopack.zip |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
498 |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
499 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
|
500 |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
501 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
|
502 pack/foo/README.txt |
8475
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8440
diff
changeset
|
503 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
|
504 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
|
505 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
|
506 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
507 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
|
508 '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
|
509 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
|
510 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
|
511 |
8475
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8440
diff
changeset
|
512 In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds |
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8440
diff
changeset
|
513 "~/.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
|
514 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
515 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
|
516 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
|
517 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
518 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
|
519 |
8748
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
520 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
|
521 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
|
522 is used. |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
523 |
8526
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
524 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
|
525 see |load-plugins|. |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
526 |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
527 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
|
528 :packloadall |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
529 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
|
530 only happen once. |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
531 |
9116
bc38030aec7d
commit https://github.com/vim/vim/commit/26852128a2b713ef49341a0c18daba928444e7eb
Christian Brabandt <cb@256bit.org>
parents:
8876
diff
changeset
|
532 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
|
533 '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
|
534 |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
535 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
536 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
|
537 |
8388
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
538 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
|
539 directory level: |
8475
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8440
diff
changeset
|
540 % 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
|
541 % 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
|
542 % unzip /tmp/someplugin.zip |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
543 |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
544 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
|
545 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
|
546 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
|
547 |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
548 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
|
549 |
8376
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
550 |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
551 Optional plugins ~ |
8388
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
552 *pack-add* |
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
553 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
|
554 :packadd foodebug |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
555 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
|
556 ~/.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
|
557 |
8748
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
558 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
|
559 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
|
560 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
561 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
|
562 your |.vimrc|: > |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
563 :packadd! foodebug |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9116
diff
changeset
|
564 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
|
565 |--noplugin|. |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
566 |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
567 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
|
568 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
|
569 |
8748
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
570 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
571 Where to put what ~ |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
572 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
573 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
|
574 "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
|
575 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
|
576 ".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
|
577 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
578 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
|
579 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
|
580 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
|
581 version: > |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
582 if foo_compiler_version > 34 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
583 packadd foo_new |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
584 else |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
585 packadd foo_old |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
586 endif |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
587 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
588 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
|
589 disallowed though. |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
590 |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8061
diff
changeset
|
591 ============================================================================== |
8748
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
592 6. Creating Vim packages *package-create* |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
593 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
594 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
|
595 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
596 If you have two unrelated plugins you would use two packages, so that Vim |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
597 users can chose what they include or not. Or you can decide to use one |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
598 package with optional plugins, and tell the user to add the ones he wants with |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
599 `:packadd`. |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
600 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
601 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
|
602 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
|
603 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
|
604 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
|
605 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
|
606 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
607 Your directory layout would be like this: |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
608 start/foobar/plugin/foo.vim " always loaded, defines commands |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
609 start/foobar/plugin/bar.vim " always loaded, defines commands |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
610 start/foobar/autoload/foo.vim " loaded when foo command used |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
611 start/foobar/doc/foo.txt " help for foo.vim |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
612 start/foobar/doc/tags " help tags |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
613 opt/fooextra/plugin/extra.vim " optional plugin, defines commands |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
614 opt/fooextra/autoload/extra.vim " loaded when extra command used |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
615 opt/fooextra/doc/extra.txt " help for extra.vim |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
616 opt/fooextra/doc/tags " help tags |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
617 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
618 This allows for the user to do: > |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
619 mkdir ~/.vim/pack/myfoobar |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
620 cd ~/.vim/pack/myfoobar |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
621 git clone https://github.com/you/foobar.git |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
622 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
623 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
|
624 it differs from other packages. |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
625 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
626 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
|
627 to load the optional plugin: > |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
628 :packadd! fooextra |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
629 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
630 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
|
631 the optional plugin is needed. |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
632 |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
633 Run the `:helptags` command to generate the doc/tags file. Including this |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
634 generated file in the package means that the user can drop the package in his |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
635 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
|
636 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
|
637 :helptags path/start/foobar/doc |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
638 :helptags path/opt/fooextra/doc |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
639 |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
640 |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
641 Dependencies between plugins ~ |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
642 *packload-two-steps* |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9116
diff
changeset
|
643 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
|
644 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
|
645 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
|
646 |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
647 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
|
648 call foolib#getit() |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
649 < 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
|
650 call foolib#getit() |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
651 < 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
|
652 func foolib#getit() |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
653 |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
654 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
|
655 'runtimepath' before sourcing the plugins. |
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
8795
diff
changeset
|
656 |
8748
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
657 ============================================================================== |
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
658 7. Debugging scripts *debug-scripts* |
7 | 659 |
660 Besides the obvious messages that you can add to your scripts to find out what | |
661 they are doing, Vim offers a debug mode. This allows you to step through a | |
662 sourced file or user function and set breakpoints. | |
663 | |
664 NOTE: The debugging mode is far from perfect. Debugging will have side | |
665 effects on how Vim works. You cannot use it to debug everything. For | |
666 example, the display is messed up by the debugging messages. | |
667 {Vi does not have a debug mode} | |
668 | |
669 An alternative to debug mode is setting the 'verbose' option. With a bigger | |
670 number it will give more verbose messages about what Vim is doing. | |
671 | |
672 | |
673 STARTING DEBUG MODE *debug-mode* | |
674 | |
675 To enter debugging mode use one of these methods: | |
676 1. Start Vim with the |-D| argument: > | |
677 vim -D file.txt | |
678 < Debugging will start as soon as the first vimrc file is sourced. This is | |
679 useful to find out what is happening when Vim is starting up. A side | |
680 effect is that Vim will switch the terminal mode before initialisations | |
681 have finished, with unpredictable results. | |
682 For a GUI-only version (Windows, Macintosh) the debugging will start as | |
683 soon as the GUI window has been opened. To make this happen early, add a | |
684 ":gui" command in the vimrc file. | |
685 *:debug* | |
686 2. Run a command with ":debug" prepended. Debugging will only be done while | |
687 this command executes. Useful for debugging a specific script or user | |
688 function. And for scripts and functions used by autocommands. Example: > | |
689 :debug edit test.txt.gz | |
690 | |
691 3. Set a breakpoint in a sourced file or user function. You could do this in | |
692 the command line: > | |
693 vim -c "breakadd file */explorer.vim" . | |
694 < This will run Vim and stop in the first line of the "explorer.vim" script. | |
695 Breakpoints can also be set while in debugging mode. | |
696 | |
697 In debugging mode every executed command is displayed before it is executed. | |
698 Comment lines, empty lines and lines that are not executed are skipped. When | |
699 a line contains two commands, separated by "|", each command will be displayed | |
700 separately. | |
701 | |
702 | |
703 DEBUG MODE | |
704 | |
705 Once in debugging mode, the usual Ex commands can be used. For example, to | |
706 inspect the value of a variable: > | |
707 echo idx | |
708 When inside a user function, this will print the value of the local variable | |
709 "idx". Prepend "g:" to get the value of a global variable: > | |
710 echo g:idx | |
711 All commands are executed in the context of the current function or script. | |
712 You can also set options, for example setting or resetting 'verbose' will show | |
713 what happens, but you might want to set it just before executing the lines you | |
714 are interested in: > | |
715 :set verbose=20 | |
716 | |
717 Commands that require updating the screen should be avoided, because their | |
718 effect won't be noticed until after leaving debug mode. For example: > | |
719 :help | |
720 won't be very helpful. | |
721 | |
722 There is a separate command-line history for debug mode. | |
723 | |
724 The line number for a function line is relative to the start of the function. | |
725 If you have trouble figuring out where you are, edit the file that defines | |
726 the function in another Vim, search for the start of the function and do | |
727 "99j". Replace "99" with the line number. | |
728 | |
729 Additionally, these commands can be used: | |
730 *>cont* | |
731 cont Continue execution until the next breakpoint is hit. | |
732 *>quit* | |
733 quit Abort execution. This is like using CTRL-C, some | |
734 things might still be executed, doesn't abort | |
735 everything. Still stops at the next breakpoint. | |
736 *>next* | |
737 next Execute the command and come back to debug mode when | |
738 it's finished. This steps over user function calls | |
739 and sourced files. | |
740 *>step* | |
741 step Execute the command and come back to debug mode for | |
742 the next command. This steps into called user | |
743 functions and sourced files. | |
744 *>interrupt* | |
745 interrupt This is like using CTRL-C, but unlike ">quit" comes | |
746 back to debug mode for the next command that is | |
747 executed. Useful for testing |:finally| and |:catch| | |
748 on interrupt exceptions. | |
749 *>finish* | |
750 finish Finish the current script or user function and come | |
751 back to debug mode for the command after the one that | |
752 sourced or called it. | |
7605
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
753 *>bt* |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
754 *>backtrace* |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
755 *>where* |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
756 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
|
757 bt |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
758 where |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
759 *>frame* |
8061
abd64cf67bcf
commit https://github.com/vim/vim/commit/38a55639d603823efcf2d2fdf542dbffdeb60b75
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
760 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
|
761 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
|
762 *>up* |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
763 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
|
764 *>down* |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
765 down Goes one level down from call stacktrace. |
7 | 766 |
767 About the additional commands in debug mode: | |
768 - There is no command-line completion for them, you get the completion for the | |
769 normal Ex commands only. | |
8303
88207f4b861a
commit https://github.com/vim/vim/commit/dae8d21dd291df6a6679a00be64e18bca0156576
Christian Brabandt <cb@256bit.org>
parents:
8246
diff
changeset
|
770 - 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
|
771 starts with the same letter. "f" stands for "finish", use "fr" for "frame". |
7 | 772 - Hitting <CR> will repeat the previous one. When doing another command, this |
773 is reset (because it's not clear what you want to repeat). | |
774 - When you want to use the Ex command with the same name, prepend a colon: | |
775 ":cont", ":next", ":finish" (or shorter). | |
776 | |
7605
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
777 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
|
778 >bt ~ |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
779 3 function One[3] ~ |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
780 2 Two[3] ~ |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
781 ->1 Three[3] ~ |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
782 0 Four ~ |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
783 line 1: let four = 4 ~ |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
784 |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
785 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
|
786 select another frame. |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
787 |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
788 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
|
789 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
|
790 |
7 | 791 |
792 DEFINING BREAKPOINTS | |
793 *:breaka* *:breakadd* | |
794 :breaka[dd] func [lnum] {name} | |
795 Set a breakpoint in a function. Example: > | |
796 :breakadd func Explore | |
797 < Doesn't check for a valid function name, thus the breakpoint | |
798 can be set before the function is defined. | |
799 | |
800 :breaka[dd] file [lnum] {name} | |
801 Set a breakpoint in a sourced file. Example: > | |
802 :breakadd file 43 .vimrc | |
803 | |
10 | 804 :breaka[dd] here |
805 Set a breakpoint in the current line of the current file. | |
806 Like doing: > | |
807 :breakadd file <cursor-line> <current-file> | |
808 < Note that this only works for commands that are executed when | |
809 sourcing the file, not for a function defined in that file. | |
810 | |
13262
69278c25429d
patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
811 :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
|
812 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
|
813 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
|
814 :breakadd expr g:lnum |
69278c25429d
patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
815 |
69278c25429d
patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
816 < Will break, whenever the global variable lnum changes. |
69278c25429d
patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
817 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
|
818 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
|
819 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
|
820 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
|
821 whenever that particular variable will become visible or |
69278c25429d
patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
822 unaccessible again. |
69278c25429d
patch 8.0.1505: debugger can't break on a condition
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
823 |
7 | 824 The [lnum] is the line number of the breakpoint. Vim will stop at or after |
825 this line. When omitted line 1 is used. | |
826 | |
170 | 827 *:debug-name* |
7 | 828 {name} is a pattern that is matched with the file or function name. The |
829 pattern is like what is used for autocommands. There must be a full match (as | |
830 if the pattern starts with "^" and ends in "$"). A "*" matches any sequence | |
831 of characters. 'ignorecase' is not used, but "\c" can be used in the pattern | |
832 to ignore case |/\c|. Don't include the () for the function name! | |
833 | |
11 | 834 The match for sourced scripts is done against the full file name. If no path |
835 is specified the current directory is used. Examples: > | |
836 breakadd file explorer.vim | |
837 matches "explorer.vim" in the current directory. > | |
7 | 838 breakadd file *explorer.vim |
11 | 839 matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. > |
7 | 840 breakadd file */explorer.vim |
11 | 841 matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory. |
7 | 842 |
843 The match for functions is done against the name as it's shown in the output | |
844 of ":function". For local functions this means that something like "<SNR>99_" | |
845 is prepended. | |
846 | |
148 | 847 Note that functions are first loaded and later executed. When they are loaded |
848 the "file" breakpoints are checked, when they are executed the "func" | |
849 breakpoints. | |
850 | |
7 | 851 |
852 DELETING BREAKPOINTS | |
853 *:breakd* *:breakdel* *E161* | |
854 :breakd[el] {nr} | |
855 Delete breakpoint {nr}. Use |:breaklist| to see the number of | |
856 each breakpoint. | |
857 | |
359 | 858 :breakd[el] * |
859 Delete all breakpoints. | |
860 | |
7 | 861 :breakd[el] func [lnum] {name} |
862 Delete a breakpoint in a function. | |
863 | |
864 :breakd[el] file [lnum] {name} | |
865 Delete a breakpoint in a sourced file. | |
866 | |
10 | 867 :breakd[el] here |
868 Delete a breakpoint at the current line of the current file. | |
869 | |
7 | 870 When [lnum] is omitted, the first breakpoint in the function or file is |
871 deleted. | |
872 The {name} must be exactly the same as what was typed for the ":breakadd" | |
873 command. "explorer", "*explorer.vim" and "*explorer*" are different. | |
874 | |
875 | |
876 LISTING BREAKPOINTS | |
877 *:breakl* *:breaklist* | |
878 :breakl[ist] | |
879 List all breakpoints. | |
880 | |
881 | |
882 OBSCURE | |
883 | |
884 *:debugg* *:debuggreedy* | |
885 :debugg[reedy] | |
886 Read debug mode commands from the normal input stream, instead | |
887 of getting them directly from the user. Only useful for test | |
888 scripts. Example: > | |
889 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim | |
890 | |
891 :0debugg[reedy] | |
892 Undo ":debuggreedy": get debug mode commands directly from the | |
893 user, don't use typeahead for debug commands. | |
894 | |
170 | 895 ============================================================================== |
8748
b1a19a2f73f0
commit https://github.com/vim/vim/commit/4f3f668c8486444e53163c29d2fc79bf47eb3c82
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
896 8. Profiling *profile* *profiling* |
170 | 897 |
2283
7e1bd501306d
Mainly documentation updates.
Bram Moolenaar <bram@vim.org>
parents:
2207
diff
changeset
|
898 Profiling means that Vim measures the time that is spent on executing |
170 | 899 functions and/or scripts. The |+profile| feature is required for this. |
900 It is only included when Vim was compiled with "huge" features. | |
901 {Vi does not have profiling} | |
902 | |
794 | 903 You can also use the |reltime()| function to measure time. This only requires |
904 the |+reltime| feature, which is present more often. | |
905 | |
5244 | 906 For profiling syntax highlighting see |:syntime|. |
907 | |
5763 | 908 For example, to profile the one_script.vim script file: > |
909 :profile start /tmp/one_script_profile | |
910 :profile file one_script.vim | |
911 :source one_script.vim | |
912 :exit | |
913 | |
5244 | 914 |
170 | 915 :prof[ile] start {fname} *:prof* *:profile* *E750* |
916 Start profiling, write the output in {fname} upon exit. | |
6757 | 917 "~/" and environment variables in {fname} will be expanded. |
790 | 918 If {fname} already exists it will be silently overwritten. |
170 | 919 The variable |v:profiling| is set to one. |
920 | |
790 | 921 :prof[ile] pause |
922 Don't profile until the following ":profile continue". Can be | |
923 used when doing something that should not be counted (e.g., an | |
924 external command). Does not nest. | |
925 | |
926 :prof[ile] continue | |
927 Continue profiling after ":profile pause". | |
928 | |
170 | 929 :prof[ile] func {pattern} |
930 Profile function that matches the pattern {pattern}. | |
931 See |:debug-name| for how {pattern} is used. | |
932 | |
933 :prof[ile][!] file {pattern} | |
934 Profile script file that matches the pattern {pattern}. | |
935 See |:debug-name| for how {pattern} is used. | |
936 This only profiles the script itself, not the functions | |
937 defined in it. | |
938 When the [!] is added then all functions defined in the script | |
5763 | 939 will also be profiled. |
940 Note that profiling only starts when the script is loaded | |
941 after this command. A :profile command in the script itself | |
942 won't work. | |
170 | 943 |
944 | |
364 | 945 :profd[el] ... *:profd* *:profdel* |
946 Stop profiling for the arguments specified. See |:breakdel| | |
947 for the arguments. | |
948 | |
949 | |
170 | 950 You must always start with a ":profile start fname" command. The resulting |
951 file is written when Vim exits. Here is an example of the output, with line | |
952 numbers prepended for the explanation: | |
953 | |
954 1 FUNCTION Test2() ~ | |
955 2 Called 1 time ~ | |
956 3 Total time: 0.155251 ~ | |
957 4 Self time: 0.002006 ~ | |
958 5 ~ | |
959 6 count total (s) self (s) ~ | |
856 | 960 7 9 0.000096 for i in range(8) ~ |
961 8 8 0.153655 0.000410 call Test3() ~ | |
962 9 8 0.000070 endfor ~ | |
963 10 " Ask a question ~ | |
964 11 1 0.001341 echo input("give me an answer: ") ~ | |
170 | 965 |
966 The header (lines 1-4) gives the time for the whole function. The "Total" | |
967 time is the time passed while the function was executing. The "Self" time is | |
968 the "Total" time reduced by time spent in: | |
969 - other user defined functions | |
970 - sourced scripts | |
971 - executed autocommands | |
972 - external (shell) commands | |
973 | |
974 Lines 7-11 show the time spent in each executed line. Lines that are not | |
975 executed do not count. Thus a comment line is never counted. | |
976 | |
977 The Count column shows how many times a line was executed. Note that the | |
978 "for" command in line 7 is executed one more time as the following lines. | |
979 That is because the line is also executed to detect the end of the loop. | |
980 | |
981 The time Vim spends waiting for user input isn't counted at all. Thus how | |
982 long you take to respond to the input() prompt is irrelevant. | |
983 | |
984 Profiling should give a good indication of where time is spent, but keep in | |
985 mind there are various things that may clobber the results: | |
986 | |
987 - The accuracy of the time measured depends on the gettimeofday() system | |
988 function. It may only be as accurate as 1/100 second, even though the times | |
989 are displayed in micro seconds. | |
990 | |
991 - Real elapsed time is measured, if other processes are busy they may cause | |
992 delays at unpredictable moments. You may want to run the profiling several | |
993 times and use the lowest results. | |
994 | |
995 - If you have several commands in one line you only get one time. Split the | |
996 line to see the time for the individual commands. | |
997 | |
998 - The time of the lines added up is mostly less than the time of the whole | |
999 function. There is some overhead in between. | |
1000 | |
1001 - Functions that are deleted before Vim exits will not produce profiling | |
1002 information. You can check the |v:profiling| variable if needed: > | |
856 | 1003 :if !v:profiling |
170 | 1004 : delfunc MyFunc |
1005 :endif | |
1006 < | |
177 | 1007 - Profiling may give weird results on multi-processor systems, when sleep |
1008 mode kicks in or the processor frequency is reduced to save power. | |
170 | 1009 |
1125 | 1010 - The "self" time is wrong when a function is used recursively. |
1011 | |
1012 | |
7 | 1013 vim:tw=78:ts=8:ft=help:norl: |