Bram Moolenaar | 9faec4e | 2021-02-27 16:38:07 +0100 | [diff] [blame] | 1 | *repeat.txt* For Vim version 8.2. Last change: 2021 Feb 13 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 11 | 1. Single repeats |single-repeat| |
| 12 | 2. Multiple repeats |multi-repeat| |
| 13 | 3. Complex repeats |complex-repeat| |
| 14 | 4. Using Vim scripts |using-scripts| |
| 15 | 5. Using Vim packages |packages| |
| 16 | 6. Creating Vim packages |package-create| |
| 17 | 7. Debugging scripts |debug-scripts| |
| 18 | 8. Profiling |profiling| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 26 | included in 'cpoptions'. Does not repeat a |
| 27 | command-line command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 92dff18 | 2014-02-11 19:15:50 +0100 | [diff] [blame] | 31 | last one. |v:count| and |v:count1| will be set. |
| 32 | |
| 33 | If the last change included a specification of a numbered register, the |
| 34 | register number will be incremented. See |redo-register| for an example how |
| 35 | to use this. |
| 36 | |
| 37 | Note that when repeating a command that used a Visual selection, the same SIZE |
| 38 | of area is used, see |visual-repeat|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | f84b122 | 2017-06-10 14:29:52 +0200 | [diff] [blame] | 49 | *:g* *:global* *E148* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 62 | Instead of the '/' which surrounds the {pattern}, you can use any other |
Bram Moolenaar | e2db695 | 2013-07-24 19:53:36 +0200 | [diff] [blame] | 63 | single byte character, but not an alphabetic character, '\', '"' or '|'. |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 32efaf6 | 2014-11-05 17:02:17 +0100 | [diff] [blame] | 69 | NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for |
| 70 | examples. |
| 71 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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). |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 75 | In a second scan the [cmd] is executed for each marked line, as if the cursor |
| 76 | was in that line. For ":v" and ":g!" the command is executed for each not |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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. |
Bram Moolenaar | 664f3cf | 2019-12-07 16:03:51 +0100 | [diff] [blame] | 82 | *E147* |
Bram Moolenaar | f84b122 | 2017-06-10 14:29:52 +0200 | [diff] [blame] | 83 | When the command is used recursively, it only works on one line. Giving a |
| 84 | range is then not allowed. This is useful to find all lines that match a |
| 85 | pattern and do not match another pattern: > |
| 86 | :g/found/v/notfound/{cmd} |
| 87 | This first finds all lines containing "found", but only executes {cmd} when |
| 88 | there is no match for "notfound". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 89 | |
Bram Moolenaar | f84b122 | 2017-06-10 14:29:52 +0200 | [diff] [blame] | 90 | To execute a non-Ex command, you can use the `:normal` command: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 864207d | 2008-06-24 22:14:38 +0000 | [diff] [blame] | 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. |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 113 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | a0ed84a | 2015-11-19 17:56:13 +0100 | [diff] [blame] | 121 | a mapping and |:normal|. |
| 122 | |
| 123 | Note: If the register being used for recording is also |
| 124 | used for |y| and |p| the result is most likely not |
| 125 | what is expected, because the put will paste the |
| 126 | recorded macro and the yank will overwrite the |
Bram Moolenaar | a6c27c4 | 2019-05-09 19:16:22 +0200 | [diff] [blame] | 127 | recorded macro. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 128 | |
Bram Moolenaar | 388a5d4 | 2020-05-26 21:20:45 +0200 | [diff] [blame] | 129 | Note: The recording happens while you type, replaying |
| 130 | the register happens as if the keys come from a |
| 131 | mapping. This matters, for example, for undo, which |
| 132 | only syncs when commands were typed. |
| 133 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 134 | q Stops recording. (Implementation note: The 'q' that |
| 135 | stops recording is not stored in the register, unless |
Bram Moolenaar | a6c27c4 | 2019-05-09 19:16:22 +0200 | [diff] [blame] | 136 | it was the result of a mapping) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 137 | |
| 138 | *@* |
Bram Moolenaar | 61d35bd | 2012-03-28 20:51:51 +0200 | [diff] [blame] | 139 | @{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 140 | times. Note that register '%' (name of the current |
| 141 | file) and '#' (name of the alternate file) cannot be |
Bram Moolenaar | 2a8a3ec | 2011-01-08 16:06:37 +0100 | [diff] [blame] | 142 | used. |
| 143 | The register is executed like a mapping, that means |
| 144 | that the difference between 'wildchar' and 'wildcharm' |
Bram Moolenaar | 388a5d4 | 2020-05-26 21:20:45 +0200 | [diff] [blame] | 145 | applies, and undo might not be synced in the same way. |
Bram Moolenaar | 2a8a3ec | 2011-01-08 16:06:37 +0100 | [diff] [blame] | 146 | For "@=" you are prompted to enter an expression. The |
| 147 | result of the expression is then executed. |
Bram Moolenaar | a6c27c4 | 2019-05-09 19:16:22 +0200 | [diff] [blame] | 148 | See also |@:|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 150 | *@@* *E748* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 151 | @@ Repeat the previous @{0-9a-z":*} [count] times. |
| 152 | |
Bram Moolenaar | 61d35bd | 2012-03-28 20:51:51 +0200 | [diff] [blame] | 153 | :[addr]*{0-9a-z".=+} *:@* *:star* |
| 154 | :[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 155 | command. First set cursor at line [addr] (default is |
| 156 | current line). When the last line in the register does |
| 157 | not have a <CR> it will be added automatically when |
| 158 | the 'e' flag is present in 'cpoptions'. |
| 159 | Note that the ":*" command is only recognized when the |
| 160 | '*' flag is present in 'cpoptions'. This is NOT the |
| 161 | default when 'nocompatible' is used. |
| 162 | For ":@=" the last used expression is used. The |
| 163 | result of evaluating the expression is executed as an |
| 164 | Ex command. |
| 165 | Mappings are not recognized in these commands. |
Bram Moolenaar | 856c111 | 2020-06-17 21:47:23 +0200 | [diff] [blame] | 166 | When the |line-continuation| character (\) is present |
| 167 | at the beginning of a line in a linewise register, |
| 168 | then it is combined with the previous line. This is |
| 169 | useful for yanking and executing parts of a Vim |
| 170 | script. |
Bram Moolenaar | a6c27c4 | 2019-05-09 19:16:22 +0200 | [diff] [blame] | 171 | Future: Will execute the register for each line in the |
| 172 | address range. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 173 | |
| 174 | *:@:* |
| 175 | :[addr]@: Repeat last command-line. First set cursor at line |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 176 | [addr] (default is current line). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 177 | |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 178 | :[addr]@ *:@@* |
Bram Moolenaar | 7ceefb3 | 2020-05-01 16:07:38 +0200 | [diff] [blame] | 179 | :[addr]@@ Repeat the previous :@{register}. First set cursor at |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 180 | line [addr] (default is current line). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 181 | |
| 182 | ============================================================================== |
| 183 | 4. Using Vim scripts *using-scripts* |
| 184 | |
| 185 | For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|. |
| 186 | |
| 187 | *:so* *:source* *load-vim-script* |
| 188 | :so[urce] {file} Read Ex commands from {file}. These are commands that |
| 189 | start with a ":". |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 190 | Triggers the |SourcePre| autocommand. |
Bram Moolenaar | 68e6560 | 2019-05-26 21:33:31 +0200 | [diff] [blame] | 191 | *:source!* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 192 | :so[urce]! {file} Read Vim commands from {file}. These are commands |
| 193 | that are executed from Normal mode, like you type |
| 194 | them. |
| 195 | When used after |:global|, |:argdo|, |:windo|, |
| 196 | |:bufdo|, in a loop or when another command follows |
| 197 | the display won't be updated while executing the |
| 198 | commands. |
Bram Moolenaar | 68e6560 | 2019-05-26 21:33:31 +0200 | [diff] [blame] | 199 | Cannot be used in the |sandbox|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 200 | |
| 201 | *:ru* *:runtime* |
Bram Moolenaar | 8dcf259 | 2016-03-12 22:47:14 +0100 | [diff] [blame] | 202 | :ru[ntime][!] [where] {file} .. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 203 | Read Ex commands from {file} in each directory given |
Bram Moolenaar | 8dcf259 | 2016-03-12 22:47:14 +0100 | [diff] [blame] | 204 | by 'runtimepath' and/or 'packpath'. There is no error |
| 205 | for non-existing files. |
Bram Moolenaar | 664f3cf | 2019-12-07 16:03:51 +0100 | [diff] [blame] | 206 | |
Bram Moolenaar | 8dcf259 | 2016-03-12 22:47:14 +0100 | [diff] [blame] | 207 | Example: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 208 | :runtime syntax/c.vim |
| 209 | |
| 210 | < There can be multiple {file} arguments, separated by |
| 211 | spaces. Each {file} is searched for in the first |
| 212 | directory from 'runtimepath', then in the second |
| 213 | directory, etc. Use a backslash to include a space |
| 214 | inside {file} (although it's better not to use spaces |
| 215 | in file names, it causes trouble). |
| 216 | |
| 217 | When [!] is included, all found files are sourced. |
| 218 | When it is not included only the first found file is |
| 219 | sourced. |
| 220 | |
Bram Moolenaar | 8dcf259 | 2016-03-12 22:47:14 +0100 | [diff] [blame] | 221 | When [where] is omitted only 'runtimepath' is used. |
| 222 | Other values: |
| 223 | START search under "start" in 'packpath' |
| 224 | OPT search under "opt" in 'packpath' |
| 225 | PACK search under "start" and "opt" in |
| 226 | 'packpath' |
| 227 | ALL first use 'runtimepath', then search |
| 228 | under "start" and "opt" in 'packpath' |
| 229 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 230 | When {file} contains wildcards it is expanded to all |
| 231 | matching files. Example: > |
Bram Moolenaar | 589edb3 | 2019-09-20 14:38:13 +0200 | [diff] [blame] | 232 | :runtime! plugin/**/*.vim |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 233 | < This is what Vim uses to load the plugin files when |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 234 | starting up. This similar command: > |
Bram Moolenaar | 589edb3 | 2019-09-20 14:38:13 +0200 | [diff] [blame] | 235 | :runtime plugin/**/*.vim |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 236 | < would source the first file only. |
| 237 | |
| 238 | When 'verbose' is one or higher, there is a message |
| 239 | when no file could be found. |
| 240 | When 'verbose' is two or higher, there is a message |
| 241 | about each searched file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 242 | |
Bram Moolenaar | be82c25 | 2016-03-06 14:44:08 +0100 | [diff] [blame] | 243 | *:pa* *:packadd* *E919* |
Bram Moolenaar | 328da0d | 2016-03-04 22:22:32 +0100 | [diff] [blame] | 244 | :pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath' |
| 245 | and source any plugin files found. The directory must |
| 246 | match: |
| 247 | pack/*/opt/{name} ~ |
| 248 | The directory is added to 'runtimepath' if it wasn't |
| 249 | there yet. |
Bram Moolenaar | 2685212 | 2016-05-24 20:02:38 +0200 | [diff] [blame] | 250 | If the directory pack/*/opt/{name}/after exists it is |
| 251 | added at the end of 'runtimepath'. |
Bram Moolenaar | dae8d21 | 2016-02-27 22:40:16 +0100 | [diff] [blame] | 252 | |
Bram Moolenaar | f0b03c4 | 2017-12-17 17:17:07 +0100 | [diff] [blame] | 253 | If loading packages from "pack/*/start" was skipped, |
| 254 | then this directory is searched first: |
| 255 | pack/*/start/{name} ~ |
| 256 | |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 257 | Note that {name} is the directory name, not the name |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 258 | of the .vim file. All the files matching the pattern |
| 259 | pack/*/opt/{name}/plugin/**/*.vim ~ |
| 260 | will be sourced. This allows for using subdirectories |
| 261 | below "plugin", just like with plugins in |
| 262 | 'runtimepath'. |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 263 | |
Bram Moolenaar | 328da0d | 2016-03-04 22:22:32 +0100 | [diff] [blame] | 264 | If the filetype detection was not enabled yet (this |
| 265 | is usually done with a "syntax enable" or "filetype |
| 266 | on" command in your .vimrc file), this will also look |
| 267 | for "{name}/ftdetect/*.vim" files. |
| 268 | |
| 269 | When the optional ! is added no plugin files or |
| 270 | ftdetect scripts are loaded, only the matching |
| 271 | directories are added to 'runtimepath'. This is |
| 272 | useful in your .vimrc. The plugins will then be |
| 273 | loaded during initialization, see |load-plugins|. |
Bram Moolenaar | 4f4d51a | 2020-10-11 13:57:40 +0200 | [diff] [blame] | 274 | Note that for ftdetect scripts to be loaded |
| 275 | you will need to write `filetype plugin indent on` |
| 276 | AFTER all `packadd!` commands. |
Bram Moolenaar | 328da0d | 2016-03-04 22:22:32 +0100 | [diff] [blame] | 277 | |
| 278 | Also see |pack-add|. |
Bram Moolenaar | 6dc819b | 2018-07-03 16:42:19 +0200 | [diff] [blame] | 279 | {only available when compiled with |+eval|} |
Bram Moolenaar | 328da0d | 2016-03-04 22:22:32 +0100 | [diff] [blame] | 280 | |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 281 | *:packl* *:packloadall* |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 282 | :packl[oadall][!] Load all packages in the "start" directory under each |
| 283 | entry in 'packpath'. |
Bram Moolenaar | 664f3cf | 2019-12-07 16:03:51 +0100 | [diff] [blame] | 284 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 285 | First all the directories found are added to |
| 286 | 'runtimepath', then the plugins found in the |
| 287 | directories are sourced. This allows for a plugin to |
| 288 | depend on something of another plugin, e.g. an |
| 289 | "autoload" directory. See |packload-two-steps| for |
| 290 | how this can be useful. |
| 291 | |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 292 | This is normally done automatically during startup, |
| 293 | after loading your .vimrc file. With this command it |
| 294 | can be done earlier. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 295 | |
Bram Moolenaar | 6c1e157 | 2019-06-22 02:13:00 +0200 | [diff] [blame] | 296 | Packages will be loaded only once. Using |
| 297 | `:packloadall` a second time will have no effect. |
| 298 | When the optional ! is added this command will load |
| 299 | packages even when done before. |
| 300 | |
| 301 | Note that when using `:packloadall` in the |vimrc| |
| 302 | file, the 'runtimepath' option is updated, and later |
| 303 | all plugins in 'runtimepath' will be loaded, which |
| 304 | means they are loaded again. Plugins are expected to |
| 305 | handle that. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 306 | |
Bram Moolenaar | 7db8f6f | 2016-03-29 23:12:46 +0200 | [diff] [blame] | 307 | An error only causes sourcing the script where it |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 308 | happens to be aborted, further plugins will be loaded. |
Bram Moolenaar | 8dcf259 | 2016-03-12 22:47:14 +0100 | [diff] [blame] | 309 | See |packages|. |
Bram Moolenaar | 6dc819b | 2018-07-03 16:42:19 +0200 | [diff] [blame] | 310 | {only available when compiled with |+eval|} |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 311 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 312 | :scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167* |
| 313 | Specify the character encoding used in the script. |
| 314 | The following lines will be converted from [encoding] |
| 315 | to the value of the 'encoding' option, if they are |
| 316 | different. Examples: > |
| 317 | scriptencoding iso-8859-5 |
| 318 | scriptencoding cp932 |
| 319 | < |
| 320 | When [encoding] is empty, no conversion is done. This |
| 321 | can be used to restrict conversion to a sequence of |
| 322 | lines: > |
| 323 | scriptencoding euc-jp |
| 324 | ... lines to be converted ... |
| 325 | scriptencoding |
| 326 | ... not converted ... |
| 327 | |
| 328 | < When conversion isn't supported by the system, there |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 329 | is no error message and no conversion is done. When a |
| 330 | line can't be converted there is no error and the |
| 331 | original line is kept. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 332 | |
| 333 | Don't use "ucs-2" or "ucs-4", scripts cannot be in |
| 334 | these encodings (they would contain NUL bytes). |
| 335 | When a sourced script starts with a BOM (Byte Order |
Bram Moolenaar | 06b5d51 | 2010-05-22 15:37:44 +0200 | [diff] [blame] | 336 | Mark) in utf-8 format Vim will recognize it, no need |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 337 | to use ":scriptencoding utf-8" then. |
| 338 | |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 339 | If you set the 'encoding' option in your |.vimrc|, |
| 340 | `:scriptencoding` must be placed after that. E.g.: > |
| 341 | set encoding=utf-8 |
| 342 | scriptencoding utf-8 |
| 343 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 344 | |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 345 | :scriptv[ersion] {version} *:scriptv* *:scriptversion* |
| 346 | *E999* *E984* |
Bram Moolenaar | 62e1bb4 | 2019-04-08 16:25:07 +0200 | [diff] [blame] | 347 | Specify the version of Vim for the lines that follow |
| 348 | in the same file. Only applies at the toplevel of |
| 349 | sourced scripts, not inside functions. |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 350 | |
| 351 | If {version} is higher than what the current Vim |
| 352 | version supports E999 will be given. You either need |
| 353 | to rewrite the script to make it work with an older |
| 354 | Vim version, or update Vim to a newer version. See |
| 355 | |vimscript-version| for what changed between versions. |
| 356 | |
Bram Moolenaar | 39f3b14 | 2021-02-14 12:57:36 +0100 | [diff] [blame] | 357 | :vim9s[cript] [noclear] *:vim9s* *:vim9script* |
Bram Moolenaar | 7e6a515 | 2021-01-02 16:39:53 +0100 | [diff] [blame] | 358 | Marks a script file as containing |Vim9-script| |
| 359 | commands. Also see |vim9-namespace|. |
| 360 | Must be the first command in the file. |
| 361 | For [noclear] see |vim9-reload|. |
| 362 | Without the |+eval| feature this changes the syntax |
| 363 | for some commands. |
Bram Moolenaar | 39f3b14 | 2021-02-14 12:57:36 +0100 | [diff] [blame] | 364 | See |:vim9cmd| for executing one command with Vim9 |
| 365 | syntax and semantics. |
Bram Moolenaar | 7e6a515 | 2021-01-02 16:39:53 +0100 | [diff] [blame] | 366 | |
Bram Moolenaar | 8feef4f | 2015-01-07 16:57:10 +0100 | [diff] [blame] | 367 | *:scr* *:scriptnames* |
| 368 | :scr[iptnames] List all sourced script names, in the order they were |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 369 | first sourced. The number is used for the script ID |
| 370 | |<SID>|. |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 371 | {not available when compiled without the |+eval| |
| 372 | feature} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 373 | |
Bram Moolenaar | 07dc18f | 2018-11-30 22:48:32 +0100 | [diff] [blame] | 374 | :scr[iptnames][!] {scriptId} *:script* |
Bram Moolenaar | 9d87a37 | 2018-12-18 21:41:50 +0100 | [diff] [blame] | 375 | Edit script {scriptId}. Although ":scriptnames name" |
| 376 | works, using ":script name" is recommended. |
| 377 | When the current buffer can't be |abandon|ed and the ! |
| 378 | is not present, the command fails. |
Bram Moolenaar | 07dc18f | 2018-11-30 22:48:32 +0100 | [diff] [blame] | 379 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 380 | *:fini* *:finish* *E168* |
| 381 | :fini[sh] Stop sourcing a script. Can only be used in a Vim |
| 382 | script file. This is a quick way to skip the rest of |
| 383 | the file. If it is used after a |:try| but before the |
| 384 | matching |:finally| (if present), the commands |
| 385 | following the ":finally" up to the matching |:endtry| |
| 386 | are executed first. This process applies to all |
| 387 | nested ":try"s in the script. The outermost ":endtry" |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 388 | then stops sourcing the script. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 389 | |
| 390 | All commands and command sequences can be repeated by putting them in a named |
| 391 | register and then executing it. There are two ways to get the commands in the |
| 392 | register: |
| 393 | - Use the record command "q". You type the commands once, and while they are |
| 394 | being executed they are stored in a register. Easy, because you can see |
| 395 | what you are doing. If you make a mistake, "p"ut the register into the |
| 396 | file, edit the command sequence, and then delete it into the register |
| 397 | again. You can continue recording by appending to the register (use an |
| 398 | uppercase letter). |
| 399 | - Delete or yank the command sequence into the register. |
| 400 | |
| 401 | Often used command sequences can be put under a function key with the ':map' |
| 402 | command. |
| 403 | |
| 404 | An alternative is to put the commands in a file, and execute them with the |
| 405 | ':source!' command. Useful for long command sequences. Can be combined with |
| 406 | the ':map' command to put complicated commands under a function key. |
| 407 | |
| 408 | The ':source' command reads Ex commands from a file line by line. You will |
| 409 | have to type any needed keyboard input. The ':source!' command reads from a |
| 410 | script file character by character, interpreting each character as if you |
| 411 | typed it. |
| 412 | |
| 413 | Example: When you give the ":!ls" command you get the |hit-enter| prompt. If |
| 414 | you ':source' a file with the line "!ls" in it, you will have to type the |
| 415 | <Enter> yourself. But if you ':source!' a file with the line ":!ls" in it, |
| 416 | the next characters from that file are read until a <CR> is found. You will |
| 417 | not have to type <CR> yourself, unless ":!ls" was the last line in the file. |
| 418 | |
| 419 | It is possible to put ':source[!]' commands in the script file, so you can |
| 420 | make a top-down hierarchy of script files. The ':source' command can be |
| 421 | nested as deep as the number of files that can be opened at one time (about |
| 422 | 15). The ':source!' command can be nested up to 15 levels deep. |
| 423 | |
| 424 | You can use the "<sfile>" string (literally, this is not a special key) inside |
| 425 | of the sourced file, in places where a file name is expected. It will be |
| 426 | replaced by the file name of the sourced file. For example, if you have a |
| 427 | "other.vimrc" file in the same directory as your ".vimrc" file, you can source |
| 428 | it from your ".vimrc" file with this command: > |
| 429 | :source <sfile>:h/other.vimrc |
| 430 | |
| 431 | In script files terminal-dependent key codes are represented by |
| 432 | terminal-independent two character codes. This means that they can be used |
| 433 | in the same way on different kinds of terminals. The first character of a |
| 434 | key code is 0x80 or 128, shown on the screen as "~@". The second one can be |
| 435 | found in the list |key-notation|. Any of these codes can also be entered |
| 436 | with CTRL-V followed by the three digit decimal code. This does NOT work for |
| 437 | the <t_xx> termcap codes, these can only be used in mappings. |
| 438 | |
| 439 | *:source_crnl* *W15* |
Bram Moolenaar | 6f345a1 | 2019-12-17 21:27:18 +0100 | [diff] [blame] | 440 | Win32: Files that are read with ":source" normally have <CR><NL> <EOL>s. |
| 441 | These always work. If you are using a file with <NL> <EOL>s (for example, a |
| 442 | file made on Unix), this will be recognized if 'fileformats' is not empty and |
| 443 | the first line does not end in a <CR>. This fails if the first line has |
| 444 | something like ":map <F1> :help^M", where "^M" is a <CR>. If the first line |
| 445 | ends in a <CR>, but following ones don't, you will get an error message, |
| 446 | because the <CR> from the first lines will be lost. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 447 | |
Bram Moolenaar | 520470a | 2005-06-16 21:59:56 +0000 | [diff] [blame] | 448 | Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 449 | These always work. If you are using a file with <NL> <EOL>s (for example, a |
| 450 | file made on Unix), this will be recognized if 'fileformats' is not empty and |
| 451 | the first line does not end in a <CR>. Be careful not to use a file with <NL> |
| 452 | linebreaks which has a <CR> in first line. |
| 453 | |
| 454 | On other systems, Vim expects ":source"ed files to end in a <NL>. These |
| 455 | always work. If you are using a file with <CR><NL> <EOL>s (for example, a |
Bram Moolenaar | 5666fcd | 2019-12-26 14:35:26 +0100 | [diff] [blame] | 456 | file made on MS-Windows), all lines will have a trailing <CR>. This may cause |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 457 | problems for some commands (e.g., mappings). There is no automatic <EOL> |
| 458 | detection, because it's common to start with a line that defines a mapping |
| 459 | that ends in a <CR>, which will confuse the automaton. |
| 460 | |
| 461 | *line-continuation* |
| 462 | Long lines in a ":source"d Ex command script file can be split by inserting |
| 463 | a line continuation symbol "\" (backslash) at the start of the next line. |
| 464 | There can be white space before the backslash, which is ignored. |
| 465 | |
| 466 | Example: the lines > |
| 467 | :set comments=sr:/*,mb:*,el:*/, |
| 468 | \://, |
| 469 | \b:#, |
| 470 | \:%, |
| 471 | \n:>, |
| 472 | \fb:- |
| 473 | are interpreted as if they were given in one line: |
| 474 | :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:- |
| 475 | |
| 476 | All leading whitespace characters in the line before a backslash are ignored. |
| 477 | Note however that trailing whitespace in the line before it cannot be |
| 478 | inserted freely; it depends on the position where a command is split up |
| 479 | whether additional whitespace is allowed or not. |
| 480 | |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 481 | When a space is required it's best to put it right after the backslash. A |
| 482 | space at the end of a line is hard to see and may be accidentally deleted. > |
| 483 | :syn match Comment |
| 484 | \ "very long regexp" |
| 485 | \ keepend |
| 486 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 487 | There is a problem with the ":append" and ":insert" commands: > |
| 488 | :1append |
| 489 | \asdf |
| 490 | . |
| 491 | The backslash is seen as a line-continuation symbol, thus this results in the |
| 492 | command: > |
| 493 | :1appendasdf |
| 494 | . |
| 495 | To avoid this, add the 'C' flag to the 'cpoptions' option: > |
| 496 | :set cpo+=C |
| 497 | :1append |
| 498 | \asdf |
| 499 | . |
| 500 | :set cpo-=C |
| 501 | |
| 502 | Note that when the commands are inside a function, you need to add the 'C' |
| 503 | flag when defining the function, it is not relevant when executing it. > |
| 504 | :set cpo+=C |
| 505 | :function Foo() |
| 506 | :1append |
| 507 | \asdf |
| 508 | . |
| 509 | :endfunction |
| 510 | :set cpo-=C |
Bram Moolenaar | 67f8ab8 | 2018-09-11 22:37:29 +0200 | [diff] [blame] | 511 | < |
| 512 | *line-continuation-comment* |
Bram Moolenaar | 95bafa2 | 2018-10-02 13:26:25 +0200 | [diff] [blame] | 513 | To add a comment in between the lines start with '"\ '. Notice the space |
| 514 | after the backslash. Example: > |
Bram Moolenaar | 67f8ab8 | 2018-09-11 22:37:29 +0200 | [diff] [blame] | 515 | let array = [ |
| 516 | "\ first entry comment |
| 517 | \ 'first', |
| 518 | "\ second entry comment |
| 519 | \ 'second', |
| 520 | \ ] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 521 | |
| 522 | Rationale: |
| 523 | Most programs work with a trailing backslash to indicate line |
| 524 | continuation. Using this in Vim would cause incompatibility with Vi. |
| 525 | For example for this Vi mapping: > |
| 526 | :map xx asdf\ |
| 527 | < Therefore the unusual leading backslash is used. |
| 528 | |
Bram Moolenaar | 67f8ab8 | 2018-09-11 22:37:29 +0200 | [diff] [blame] | 529 | Starting a comment in a continuation line results in all following |
| 530 | continuation lines to be part of the comment. Since it was like this |
| 531 | for a long time, when making it possible to add a comment halfway a |
| 532 | sequence of continuation lines, it was not possible to use \", since |
| 533 | that was a valid continuation line. Using '"\ ' comes closest, even |
| 534 | though it may look a bit weird. Requiring the space after the |
| 535 | backslash is to make it very unlikely this is a normal comment line. |
| 536 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 537 | ============================================================================== |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 538 | 5. Using Vim packages *packages* |
| 539 | |
| 540 | A Vim package is a directory that contains one or more plugins. The |
| 541 | advantages over normal plugins: |
| 542 | - A package can be downloaded as an archive and unpacked in its own directory. |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 543 | Thus the files are not mixed with files of other plugins. That makes it |
| 544 | easy to update and remove. |
Bram Moolenaar | 9171587 | 2016-03-03 17:13:03 +0100 | [diff] [blame] | 545 | - A package can be a git, mercurial, etc. repository. That makes it really |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 546 | easy to update. |
| 547 | - A package can contain multiple plugins that depend on each other. |
| 548 | - A package can contain plugins that are automatically loaded on startup and |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 549 | ones that are only loaded when needed with `:packadd`. |
| 550 | |
| 551 | |
| 552 | Using a package and loading automatically ~ |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 553 | |
| 554 | Let's assume your Vim files are in the "~/.vim" directory and you want to add a |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 555 | package from a zip archive "/tmp/foopack.zip": |
| 556 | % mkdir -p ~/.vim/pack/foo |
| 557 | % cd ~/.vim/pack/foo |
| 558 | % unzip /tmp/foopack.zip |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 559 | |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 560 | The directory name "foo" is arbitrary, you can pick anything you like. |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 561 | |
| 562 | You would now have these files under ~/.vim: |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 563 | pack/foo/README.txt |
Bram Moolenaar | af1a0e3 | 2016-03-09 22:19:26 +0100 | [diff] [blame] | 564 | pack/foo/start/foobar/plugin/foo.vim |
| 565 | pack/foo/start/foobar/syntax/some.vim |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 566 | pack/foo/opt/foodebug/plugin/debugger.vim |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 567 | |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 568 | When Vim starts up, after processing your .vimrc, it scans all directories in |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 569 | 'packpath' for plugins under the "pack/*/start" directory. First all those |
| 570 | directories are added to 'runtimepath'. Then all the plugins are loaded. |
| 571 | See |packload-two-steps| for how these two steps can be useful. |
Bram Moolenaar | f365482 | 2016-03-04 22:12:23 +0100 | [diff] [blame] | 572 | |
Bram Moolenaar | 664f3cf | 2019-12-07 16:03:51 +0100 | [diff] [blame] | 573 | In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds |
Bram Moolenaar | af1a0e3 | 2016-03-09 22:19:26 +0100 | [diff] [blame] | 574 | "~/.vim/pack/foo/start/foobar" to 'runtimepath'. |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 575 | |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 576 | If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will |
| 577 | find the syntax/some.vim file, because its directory is in 'runtimepath'. |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 578 | |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 579 | Vim will also load ftdetect files, if there are any. |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 580 | |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 581 | Note that the files under "pack/foo/opt" are not loaded automatically, only the |
Bram Moolenaar | af1a0e3 | 2016-03-09 22:19:26 +0100 | [diff] [blame] | 582 | ones under "pack/foo/start". See |pack-add| below for how the "opt" directory |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 583 | is used. |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 584 | |
Bram Moolenaar | 8dcf259 | 2016-03-12 22:47:14 +0100 | [diff] [blame] | 585 | Loading packages automatically will not happen if loading plugins is disabled, |
| 586 | see |load-plugins|. |
| 587 | |
| 588 | To load packages earlier, so that 'runtimepath' gets updated: > |
| 589 | :packloadall |
| 590 | This also works when loading plugins is disabled. The automatic loading will |
| 591 | only happen once. |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 592 | |
Bram Moolenaar | 2685212 | 2016-05-24 20:02:38 +0200 | [diff] [blame] | 593 | If the package has an "after" directory, that directory is added to the end of |
| 594 | 'runtimepath', so that anything there will be loaded later. |
| 595 | |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 596 | |
| 597 | Using a single plugin and loading it automatically ~ |
| 598 | |
| 599 | If you don't have a package but a single plugin, you need to create the extra |
| 600 | directory level: |
Bram Moolenaar | af1a0e3 | 2016-03-09 22:19:26 +0100 | [diff] [blame] | 601 | % mkdir -p ~/.vim/pack/foo/start/foobar |
| 602 | % cd ~/.vim/pack/foo/start/foobar |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 603 | % unzip /tmp/someplugin.zip |
| 604 | |
| 605 | You would now have these files: |
Bram Moolenaar | af1a0e3 | 2016-03-09 22:19:26 +0100 | [diff] [blame] | 606 | pack/foo/start/foobar/plugin/foo.vim |
| 607 | pack/foo/start/foobar/syntax/some.vim |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 608 | |
| 609 | From here it works like above. |
| 610 | |
| 611 | |
| 612 | Optional plugins ~ |
| 613 | *pack-add* |
| 614 | To load an optional plugin from a pack use the `:packadd` command: > |
| 615 | :packadd foodebug |
| 616 | This searches for "pack/*/opt/foodebug" in 'packpath' and will find |
| 617 | ~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it. |
| 618 | |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 619 | This could be done if some conditions are met. For example, depending on |
| 620 | whether Vim supports a feature or a dependency is missing. |
| 621 | |
| 622 | You can also load an optional plugin at startup, by putting this command in |
| 623 | your |.vimrc|: > |
| 624 | :packadd! foodebug |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 625 | The extra "!" is so that the plugin isn't loaded if Vim was started with |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 626 | |--noplugin|. |
Bram Moolenaar | 5f148ec | 2016-03-07 22:59:26 +0100 | [diff] [blame] | 627 | |
| 628 | It is perfectly normal for a package to only have files in the "opt" |
| 629 | directory. You then need to load each plugin when you want to use it. |
| 630 | |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 631 | |
| 632 | Where to put what ~ |
| 633 | |
| 634 | Since color schemes, loaded with `:colorscheme`, are found below |
| 635 | "pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend |
| 636 | you put them below "pack/*/opt", for example |
| 637 | ".vim/pack/mycolors/opt/dark/colors/very_dark.vim". |
| 638 | |
| 639 | Filetype plugins should go under "pack/*/start", so that they are always |
| 640 | found. Unless you have more than one plugin for a file type and want to |
| 641 | select which one to load with `:packadd`. E.g. depending on the compiler |
| 642 | version: > |
| 643 | if foo_compiler_version > 34 |
| 644 | packadd foo_new |
| 645 | else |
| 646 | packadd foo_old |
| 647 | endif |
| 648 | |
| 649 | The "after" directory is most likely not useful in a package. It's not |
| 650 | disallowed though. |
| 651 | |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 652 | ============================================================================== |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 653 | 6. Creating Vim packages *package-create* |
| 654 | |
| 655 | This assumes you write one or more plugins that you distribute as a package. |
| 656 | |
| 657 | If you have two unrelated plugins you would use two packages, so that Vim |
Bram Moolenaar | 2547aa9 | 2020-07-26 17:00:44 +0200 | [diff] [blame] | 658 | users can choose what they include or not. Or you can decide to use one |
Bram Moolenaar | 3d1cde8 | 2020-08-15 18:55:18 +0200 | [diff] [blame] | 659 | package with optional plugins, and tell the user to add the preferred ones with |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 660 | `:packadd`. |
| 661 | |
| 662 | Decide how you want to distribute the package. You can create an archive or |
| 663 | you could use a repository. An archive can be used by more users, but is a |
| 664 | bit harder to update to a new version. A repository can usually be kept |
| 665 | up-to-date easily, but it requires a program like "git" to be available. |
| 666 | You can do both, github can automatically create an archive for a release. |
| 667 | |
| 668 | Your directory layout would be like this: |
| 669 | start/foobar/plugin/foo.vim " always loaded, defines commands |
| 670 | start/foobar/plugin/bar.vim " always loaded, defines commands |
| 671 | start/foobar/autoload/foo.vim " loaded when foo command used |
| 672 | start/foobar/doc/foo.txt " help for foo.vim |
| 673 | start/foobar/doc/tags " help tags |
| 674 | opt/fooextra/plugin/extra.vim " optional plugin, defines commands |
| 675 | opt/fooextra/autoload/extra.vim " loaded when extra command used |
| 676 | opt/fooextra/doc/extra.txt " help for extra.vim |
| 677 | opt/fooextra/doc/tags " help tags |
| 678 | |
| 679 | This allows for the user to do: > |
| 680 | mkdir ~/.vim/pack/myfoobar |
| 681 | cd ~/.vim/pack/myfoobar |
| 682 | git clone https://github.com/you/foobar.git |
| 683 | |
| 684 | Here "myfoobar" is a name that the user can choose, the only condition is that |
| 685 | it differs from other packages. |
| 686 | |
| 687 | In your documentation you explain what the plugins do, and tell the user how |
| 688 | to load the optional plugin: > |
| 689 | :packadd! fooextra |
| 690 | |
| 691 | You could add this packadd command in one of your plugins, to be executed when |
| 692 | the optional plugin is needed. |
| 693 | |
| 694 | Run the `:helptags` command to generate the doc/tags file. Including this |
Bram Moolenaar | 3d1cde8 | 2020-08-15 18:55:18 +0200 | [diff] [blame] | 695 | generated file in the package means that the user can drop the package in the |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 696 | pack directory and the help command works right away. Don't forget to re-run |
| 697 | the command after changing the plugin help: > |
| 698 | :helptags path/start/foobar/doc |
| 699 | :helptags path/opt/fooextra/doc |
| 700 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 701 | |
| 702 | Dependencies between plugins ~ |
| 703 | *packload-two-steps* |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 704 | Suppose you have two plugins that depend on the same functionality. You can |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 705 | put the common functionality in an autoload directory, so that it will be |
| 706 | found automatically. Your package would have these files: |
| 707 | |
| 708 | pack/foo/start/one/plugin/one.vim > |
| 709 | call foolib#getit() |
| 710 | < pack/foo/start/two/plugin/two.vim > |
| 711 | call foolib#getit() |
| 712 | < pack/foo/start/lib/autoload/foolib.vim > |
| 713 | func foolib#getit() |
| 714 | |
| 715 | This works, because loading packages will first add all found directories to |
| 716 | 'runtimepath' before sourcing the plugins. |
| 717 | |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 718 | ============================================================================== |
| 719 | 7. Debugging scripts *debug-scripts* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 720 | |
| 721 | Besides the obvious messages that you can add to your scripts to find out what |
| 722 | they are doing, Vim offers a debug mode. This allows you to step through a |
| 723 | sourced file or user function and set breakpoints. |
| 724 | |
| 725 | NOTE: The debugging mode is far from perfect. Debugging will have side |
| 726 | effects on how Vim works. You cannot use it to debug everything. For |
| 727 | example, the display is messed up by the debugging messages. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 728 | |
| 729 | An alternative to debug mode is setting the 'verbose' option. With a bigger |
| 730 | number it will give more verbose messages about what Vim is doing. |
| 731 | |
| 732 | |
| 733 | STARTING DEBUG MODE *debug-mode* |
| 734 | |
| 735 | To enter debugging mode use one of these methods: |
| 736 | 1. Start Vim with the |-D| argument: > |
| 737 | vim -D file.txt |
| 738 | < Debugging will start as soon as the first vimrc file is sourced. This is |
| 739 | useful to find out what is happening when Vim is starting up. A side |
| 740 | effect is that Vim will switch the terminal mode before initialisations |
| 741 | have finished, with unpredictable results. |
| 742 | For a GUI-only version (Windows, Macintosh) the debugging will start as |
| 743 | soon as the GUI window has been opened. To make this happen early, add a |
| 744 | ":gui" command in the vimrc file. |
| 745 | *:debug* |
| 746 | 2. Run a command with ":debug" prepended. Debugging will only be done while |
| 747 | this command executes. Useful for debugging a specific script or user |
| 748 | function. And for scripts and functions used by autocommands. Example: > |
| 749 | :debug edit test.txt.gz |
| 750 | |
| 751 | 3. Set a breakpoint in a sourced file or user function. You could do this in |
| 752 | the command line: > |
| 753 | vim -c "breakadd file */explorer.vim" . |
| 754 | < This will run Vim and stop in the first line of the "explorer.vim" script. |
| 755 | Breakpoints can also be set while in debugging mode. |
| 756 | |
| 757 | In debugging mode every executed command is displayed before it is executed. |
| 758 | Comment lines, empty lines and lines that are not executed are skipped. When |
| 759 | a line contains two commands, separated by "|", each command will be displayed |
| 760 | separately. |
| 761 | |
| 762 | |
| 763 | DEBUG MODE |
| 764 | |
| 765 | Once in debugging mode, the usual Ex commands can be used. For example, to |
| 766 | inspect the value of a variable: > |
| 767 | echo idx |
| 768 | When inside a user function, this will print the value of the local variable |
| 769 | "idx". Prepend "g:" to get the value of a global variable: > |
| 770 | echo g:idx |
| 771 | All commands are executed in the context of the current function or script. |
| 772 | You can also set options, for example setting or resetting 'verbose' will show |
| 773 | what happens, but you might want to set it just before executing the lines you |
| 774 | are interested in: > |
| 775 | :set verbose=20 |
| 776 | |
| 777 | Commands that require updating the screen should be avoided, because their |
| 778 | effect won't be noticed until after leaving debug mode. For example: > |
| 779 | :help |
| 780 | won't be very helpful. |
| 781 | |
| 782 | There is a separate command-line history for debug mode. |
| 783 | |
| 784 | The line number for a function line is relative to the start of the function. |
| 785 | If you have trouble figuring out where you are, edit the file that defines |
| 786 | the function in another Vim, search for the start of the function and do |
| 787 | "99j". Replace "99" with the line number. |
| 788 | |
| 789 | Additionally, these commands can be used: |
| 790 | *>cont* |
| 791 | cont Continue execution until the next breakpoint is hit. |
| 792 | *>quit* |
| 793 | quit Abort execution. This is like using CTRL-C, some |
| 794 | things might still be executed, doesn't abort |
| 795 | everything. Still stops at the next breakpoint. |
| 796 | *>next* |
| 797 | next Execute the command and come back to debug mode when |
| 798 | it's finished. This steps over user function calls |
| 799 | and sourced files. |
| 800 | *>step* |
| 801 | step Execute the command and come back to debug mode for |
| 802 | the next command. This steps into called user |
| 803 | functions and sourced files. |
| 804 | *>interrupt* |
| 805 | interrupt This is like using CTRL-C, but unlike ">quit" comes |
| 806 | back to debug mode for the next command that is |
| 807 | executed. Useful for testing |:finally| and |:catch| |
| 808 | on interrupt exceptions. |
| 809 | *>finish* |
| 810 | finish Finish the current script or user function and come |
| 811 | back to debug mode for the command after the one that |
| 812 | sourced or called it. |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 813 | *>bt* |
| 814 | *>backtrace* |
| 815 | *>where* |
| 816 | backtrace Show the call stacktrace for current debugging session. |
| 817 | bt |
| 818 | where |
| 819 | *>frame* |
Bram Moolenaar | 38a5563 | 2016-02-15 22:07:32 +0100 | [diff] [blame] | 820 | frame N Goes to N backtrace level. + and - signs make movement |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 821 | relative. E.g., ":frame +3" goes three frames up. |
| 822 | *>up* |
| 823 | up Goes one level up from call stacktrace. |
| 824 | *>down* |
| 825 | down Goes one level down from call stacktrace. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 826 | |
| 827 | About the additional commands in debug mode: |
| 828 | - There is no command-line completion for them, you get the completion for the |
| 829 | normal Ex commands only. |
Bram Moolenaar | dae8d21 | 2016-02-27 22:40:16 +0100 | [diff] [blame] | 830 | - You can shorten them, up to a single character, unless more than one command |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 831 | starts with the same letter. "f" stands for "finish", use "fr" for "frame". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 832 | - Hitting <CR> will repeat the previous one. When doing another command, this |
| 833 | is reset (because it's not clear what you want to repeat). |
| 834 | - When you want to use the Ex command with the same name, prepend a colon: |
| 835 | ":cont", ":next", ":finish" (or shorter). |
| 836 | |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 837 | The backtrace shows the hierarchy of function calls, e.g.: |
| 838 | >bt ~ |
| 839 | 3 function One[3] ~ |
| 840 | 2 Two[3] ~ |
| 841 | ->1 Three[3] ~ |
| 842 | 0 Four ~ |
| 843 | line 1: let four = 4 ~ |
| 844 | |
| 845 | The "->" points to the current frame. Use "up", "down" and "frame N" to |
| 846 | select another frame. |
| 847 | |
| 848 | In the current frame you can evaluate the local function variables. There is |
| 849 | no way to see the command at the current line yet. |
| 850 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 851 | |
| 852 | DEFINING BREAKPOINTS |
| 853 | *:breaka* *:breakadd* |
| 854 | :breaka[dd] func [lnum] {name} |
| 855 | Set a breakpoint in a function. Example: > |
| 856 | :breakadd func Explore |
| 857 | < Doesn't check for a valid function name, thus the breakpoint |
| 858 | can be set before the function is defined. |
| 859 | |
| 860 | :breaka[dd] file [lnum] {name} |
| 861 | Set a breakpoint in a sourced file. Example: > |
| 862 | :breakadd file 43 .vimrc |
| 863 | |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 864 | :breaka[dd] here |
| 865 | Set a breakpoint in the current line of the current file. |
| 866 | Like doing: > |
| 867 | :breakadd file <cursor-line> <current-file> |
| 868 | < Note that this only works for commands that are executed when |
| 869 | sourcing the file, not for a function defined in that file. |
| 870 | |
Bram Moolenaar | c6f9f73 | 2018-02-11 19:06:26 +0100 | [diff] [blame] | 871 | :breaka[dd] expr {expression} |
| 872 | Sets a breakpoint, that will break whenever the {expression} |
| 873 | evaluates to a different value. Example: > |
| 874 | :breakadd expr g:lnum |
| 875 | |
| 876 | < Will break, whenever the global variable lnum changes. |
| 877 | Note if you watch a |script-variable| this will break |
| 878 | when switching scripts, since the script variable is only |
| 879 | valid in the script where it has been defined and if that |
| 880 | script is called from several other scripts, this will stop |
| 881 | whenever that particular variable will become visible or |
Bram Moolenaar | 9faec4e | 2021-02-27 16:38:07 +0100 | [diff] [blame] | 882 | inaccessible again. |
Bram Moolenaar | c6f9f73 | 2018-02-11 19:06:26 +0100 | [diff] [blame] | 883 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 884 | The [lnum] is the line number of the breakpoint. Vim will stop at or after |
| 885 | this line. When omitted line 1 is used. |
| 886 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 887 | *:debug-name* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 888 | {name} is a pattern that is matched with the file or function name. The |
| 889 | pattern is like what is used for autocommands. There must be a full match (as |
| 890 | if the pattern starts with "^" and ends in "$"). A "*" matches any sequence |
| 891 | of characters. 'ignorecase' is not used, but "\c" can be used in the pattern |
| 892 | to ignore case |/\c|. Don't include the () for the function name! |
| 893 | |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 894 | The match for sourced scripts is done against the full file name. If no path |
| 895 | is specified the current directory is used. Examples: > |
| 896 | breakadd file explorer.vim |
| 897 | matches "explorer.vim" in the current directory. > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 898 | breakadd file *explorer.vim |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 899 | matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 900 | breakadd file */explorer.vim |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 901 | matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 902 | |
| 903 | The match for functions is done against the name as it's shown in the output |
Bram Moolenaar | b204990 | 2021-01-24 12:53:53 +0100 | [diff] [blame] | 904 | of ":function". However, for local functions the script-specific prefix such |
| 905 | as "<SNR>99_" is ignored to make it easier to match script-local functions |
| 906 | without knowing the ID of the script. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 907 | |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 908 | Note that functions are first loaded and later executed. When they are loaded |
| 909 | the "file" breakpoints are checked, when they are executed the "func" |
| 910 | breakpoints. |
| 911 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 912 | |
| 913 | DELETING BREAKPOINTS |
| 914 | *:breakd* *:breakdel* *E161* |
| 915 | :breakd[el] {nr} |
| 916 | Delete breakpoint {nr}. Use |:breaklist| to see the number of |
| 917 | each breakpoint. |
| 918 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 919 | :breakd[el] * |
| 920 | Delete all breakpoints. |
| 921 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 922 | :breakd[el] func [lnum] {name} |
| 923 | Delete a breakpoint in a function. |
| 924 | |
| 925 | :breakd[el] file [lnum] {name} |
| 926 | Delete a breakpoint in a sourced file. |
| 927 | |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 928 | :breakd[el] here |
| 929 | Delete a breakpoint at the current line of the current file. |
| 930 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 931 | When [lnum] is omitted, the first breakpoint in the function or file is |
| 932 | deleted. |
| 933 | The {name} must be exactly the same as what was typed for the ":breakadd" |
| 934 | command. "explorer", "*explorer.vim" and "*explorer*" are different. |
| 935 | |
| 936 | |
| 937 | LISTING BREAKPOINTS |
| 938 | *:breakl* *:breaklist* |
| 939 | :breakl[ist] |
| 940 | List all breakpoints. |
| 941 | |
| 942 | |
| 943 | OBSCURE |
| 944 | |
| 945 | *:debugg* *:debuggreedy* |
| 946 | :debugg[reedy] |
| 947 | Read debug mode commands from the normal input stream, instead |
| 948 | of getting them directly from the user. Only useful for test |
| 949 | scripts. Example: > |
| 950 | echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim |
| 951 | |
| 952 | :0debugg[reedy] |
| 953 | Undo ":debuggreedy": get debug mode commands directly from the |
| 954 | user, don't use typeahead for debug commands. |
| 955 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 956 | ============================================================================== |
Bram Moolenaar | 4f3f668 | 2016-03-26 23:01:59 +0100 | [diff] [blame] | 957 | 8. Profiling *profile* *profiling* |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 958 | |
Bram Moolenaar | 996343d | 2010-07-04 22:20:21 +0200 | [diff] [blame] | 959 | Profiling means that Vim measures the time that is spent on executing |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 960 | functions and/or scripts. The |+profile| feature is required for this. |
Bram Moolenaar | b204990 | 2021-01-24 12:53:53 +0100 | [diff] [blame] | 961 | It is included when Vim was compiled with "huge" features. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 962 | |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 963 | You can also use the |reltime()| function to measure time. This only requires |
Bram Moolenaar | b204990 | 2021-01-24 12:53:53 +0100 | [diff] [blame] | 964 | the |+reltime| feature, which is present in more builds. |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 965 | |
Bram Moolenaar | 16ea367 | 2013-07-28 16:02:18 +0200 | [diff] [blame] | 966 | For profiling syntax highlighting see |:syntime|. |
| 967 | |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 968 | For example, to profile the one_script.vim script file: > |
| 969 | :profile start /tmp/one_script_profile |
| 970 | :profile file one_script.vim |
| 971 | :source one_script.vim |
| 972 | :exit |
| 973 | |
Bram Moolenaar | 16ea367 | 2013-07-28 16:02:18 +0200 | [diff] [blame] | 974 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 975 | :prof[ile] start {fname} *:prof* *:profile* *E750* |
| 976 | Start profiling, write the output in {fname} upon exit. |
Bram Moolenaar | 0a63ded | 2015-04-15 13:31:24 +0200 | [diff] [blame] | 977 | "~/" and environment variables in {fname} will be expanded. |
Bram Moolenaar | 9b2200a | 2006-03-20 21:55:45 +0000 | [diff] [blame] | 978 | If {fname} already exists it will be silently overwritten. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 979 | The variable |v:profiling| is set to one. |
| 980 | |
Bram Moolenaar | 9b2200a | 2006-03-20 21:55:45 +0000 | [diff] [blame] | 981 | :prof[ile] pause |
| 982 | Don't profile until the following ":profile continue". Can be |
| 983 | used when doing something that should not be counted (e.g., an |
| 984 | external command). Does not nest. |
| 985 | |
| 986 | :prof[ile] continue |
| 987 | Continue profiling after ":profile pause". |
| 988 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 989 | :prof[ile] func {pattern} |
| 990 | Profile function that matches the pattern {pattern}. |
| 991 | See |:debug-name| for how {pattern} is used. |
| 992 | |
| 993 | :prof[ile][!] file {pattern} |
| 994 | Profile script file that matches the pattern {pattern}. |
| 995 | See |:debug-name| for how {pattern} is used. |
| 996 | This only profiles the script itself, not the functions |
| 997 | defined in it. |
| 998 | When the [!] is added then all functions defined in the script |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 999 | will also be profiled. |
| 1000 | Note that profiling only starts when the script is loaded |
| 1001 | after this command. A :profile command in the script itself |
| 1002 | won't work. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1003 | |
| 1004 | |
Bram Moolenaar | d9fba31 | 2005-06-26 22:34:35 +0000 | [diff] [blame] | 1005 | :profd[el] ... *:profd* *:profdel* |
| 1006 | Stop profiling for the arguments specified. See |:breakdel| |
| 1007 | for the arguments. |
| 1008 | |
| 1009 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1010 | You must always start with a ":profile start fname" command. The resulting |
Bram Moolenaar | b204990 | 2021-01-24 12:53:53 +0100 | [diff] [blame] | 1011 | file is written when Vim exits. For example, to profile one specific |
| 1012 | function: > |
| 1013 | profile start /tmp/vimprofile |
| 1014 | profile func MyFunc |
| 1015 | |
| 1016 | Here is an example of the output, with line |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1017 | numbers prepended for the explanation: |
| 1018 | |
| 1019 | 1 FUNCTION Test2() ~ |
| 1020 | 2 Called 1 time ~ |
| 1021 | 3 Total time: 0.155251 ~ |
| 1022 | 4 Self time: 0.002006 ~ |
| 1023 | 5 ~ |
| 1024 | 6 count total (s) self (s) ~ |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 1025 | 7 9 0.000096 for i in range(8) ~ |
| 1026 | 8 8 0.153655 0.000410 call Test3() ~ |
| 1027 | 9 8 0.000070 endfor ~ |
| 1028 | 10 " Ask a question ~ |
| 1029 | 11 1 0.001341 echo input("give me an answer: ") ~ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1030 | |
| 1031 | The header (lines 1-4) gives the time for the whole function. The "Total" |
| 1032 | time is the time passed while the function was executing. The "Self" time is |
| 1033 | the "Total" time reduced by time spent in: |
| 1034 | - other user defined functions |
| 1035 | - sourced scripts |
| 1036 | - executed autocommands |
| 1037 | - external (shell) commands |
| 1038 | |
| 1039 | Lines 7-11 show the time spent in each executed line. Lines that are not |
| 1040 | executed do not count. Thus a comment line is never counted. |
| 1041 | |
| 1042 | The Count column shows how many times a line was executed. Note that the |
| 1043 | "for" command in line 7 is executed one more time as the following lines. |
| 1044 | That is because the line is also executed to detect the end of the loop. |
| 1045 | |
| 1046 | The time Vim spends waiting for user input isn't counted at all. Thus how |
| 1047 | long you take to respond to the input() prompt is irrelevant. |
| 1048 | |
| 1049 | Profiling should give a good indication of where time is spent, but keep in |
| 1050 | mind there are various things that may clobber the results: |
| 1051 | |
| 1052 | - The accuracy of the time measured depends on the gettimeofday() system |
| 1053 | function. It may only be as accurate as 1/100 second, even though the times |
| 1054 | are displayed in micro seconds. |
| 1055 | |
| 1056 | - Real elapsed time is measured, if other processes are busy they may cause |
| 1057 | delays at unpredictable moments. You may want to run the profiling several |
| 1058 | times and use the lowest results. |
| 1059 | |
| 1060 | - If you have several commands in one line you only get one time. Split the |
| 1061 | line to see the time for the individual commands. |
| 1062 | |
| 1063 | - The time of the lines added up is mostly less than the time of the whole |
| 1064 | function. There is some overhead in between. |
| 1065 | |
| 1066 | - Functions that are deleted before Vim exits will not produce profiling |
| 1067 | information. You can check the |v:profiling| variable if needed: > |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 1068 | :if !v:profiling |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1069 | : delfunc MyFunc |
| 1070 | :endif |
| 1071 | < |
Bram Moolenaar | 8cd06ca | 2005-02-28 22:44:58 +0000 | [diff] [blame] | 1072 | - Profiling may give weird results on multi-processor systems, when sleep |
| 1073 | mode kicks in or the processor frequency is reduced to save power. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1074 | |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 1075 | - The "self" time is wrong when a function is used recursively. |
| 1076 | |
| 1077 | |
Bram Moolenaar | 91f84f6 | 2018-07-29 15:07:52 +0200 | [diff] [blame] | 1078 | vim:tw=78:ts=8:noet:ft=help:norl: |