Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 1 | *repeat.txt* For Vim version 7.4. Last change: 2016 Feb 21 |
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 | |
| 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| |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 15 | 5. Using Vim packages |packages| |
| 16 | 6. Debugging scripts |debug-scripts| |
| 17 | 7. Profiling |profiling| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 18 | |
| 19 | ============================================================================== |
| 20 | 1. Single repeats *single-repeat* |
| 21 | |
| 22 | *.* |
| 23 | . Repeat last change, with count replaced with [count]. |
| 24 | Also repeat a yank command, when the 'y' flag is |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 25 | included in 'cpoptions'. Does not repeat a |
| 26 | command-line command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 27 | |
| 28 | Simple changes can be repeated with the "." command. Without a count, the |
| 29 | 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] | 30 | last one. |v:count| and |v:count1| will be set. |
| 31 | |
| 32 | If the last change included a specification of a numbered register, the |
| 33 | register number will be incremented. See |redo-register| for an example how |
| 34 | to use this. |
| 35 | |
| 36 | Note that when repeating a command that used a Visual selection, the same SIZE |
| 37 | of area is used, see |visual-repeat|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 38 | |
| 39 | *@:* |
| 40 | @: Repeat last command-line [count] times. |
| 41 | {not available when compiled without the |
| 42 | |+cmdline_hist| feature} |
| 43 | |
| 44 | |
| 45 | ============================================================================== |
| 46 | 2. Multiple repeats *multi-repeat* |
| 47 | |
| 48 | *:g* *:global* *E147* *E148* |
| 49 | :[range]g[lobal]/{pattern}/[cmd] |
| 50 | Execute the Ex command [cmd] (default ":p") on the |
| 51 | lines within [range] where {pattern} matches. |
| 52 | |
| 53 | :[range]g[lobal]!/{pattern}/[cmd] |
| 54 | Execute the Ex command [cmd] (default ":p") on the |
| 55 | lines within [range] where {pattern} does NOT match. |
| 56 | |
| 57 | *:v* *:vglobal* |
| 58 | :[range]v[global]/{pattern}/[cmd] |
| 59 | Same as :g!. |
| 60 | |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 61 | Instead of the '/' which surrounds the {pattern}, you can use any other |
Bram Moolenaar | e2db695 | 2013-07-24 19:53:36 +0200 | [diff] [blame] | 62 | single byte character, but not an alphabetic character, '\', '"' or '|'. |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 63 | This is useful if you want to include a '/' in the search pattern or |
| 64 | replacement string. |
| 65 | |
| 66 | For the definition of a pattern, see |pattern|. |
| 67 | |
Bram Moolenaar | 32efaf6 | 2014-11-05 17:02:17 +0100 | [diff] [blame] | 68 | NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for |
| 69 | examples. |
| 70 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 71 | The global commands work by first scanning through the [range] lines and |
| 72 | marking each line where a match occurs (for a multi-line pattern, only the |
| 73 | start of the match matters). |
| 74 | In a second scan the [cmd] is executed for each marked line with its line |
| 75 | number prepended. For ":v" and ":g!" the command is executed for each not |
| 76 | marked line. If a line is deleted its mark disappears. |
| 77 | The default for [range] is the whole buffer (1,$). Use "CTRL-C" to interrupt |
| 78 | the command. If an error message is given for a line, the command for that |
| 79 | line is aborted and the global command continues with the next marked or |
| 80 | unmarked line. |
| 81 | |
| 82 | To repeat a non-Ex command, you can use the ":normal" command: > |
| 83 | :g/pat/normal {commands} |
| 84 | Make sure that {commands} ends with a whole command, otherwise Vim will wait |
| 85 | for you to type the rest of the command for each match. The screen will not |
| 86 | have been updated, so you don't know what you are doing. See |:normal|. |
| 87 | |
| 88 | The undo/redo command will undo/redo the whole global command at once. |
| 89 | The previous context mark will only be set once (with "''" you go back to |
| 90 | where the cursor was before the global command). |
| 91 | |
| 92 | The global command sets both the last used search pattern and the last used |
| 93 | substitute pattern (this is vi compatible). This makes it easy to globally |
| 94 | replace a string: |
| 95 | :g/pat/s//PAT/g |
| 96 | This replaces all occurrences of "pat" with "PAT". The same can be done with: |
| 97 | :%s/pat/PAT/g |
| 98 | Which is two characters shorter! |
| 99 | |
Bram Moolenaar | 864207d | 2008-06-24 22:14:38 +0000 | [diff] [blame] | 100 | When using "global" in Ex mode, a special case is using ":visual" as a |
| 101 | command. This will move to a matching line, go to Normal mode to let you |
| 102 | execute commands there until you use |Q| to return to Ex mode. This will be |
| 103 | repeated for each matching line. While doing this you cannot use ":global". |
| 104 | To abort this type CTRL-C twice. |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 105 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 106 | ============================================================================== |
| 107 | 3. Complex repeats *complex-repeat* |
| 108 | |
| 109 | *q* *recording* |
| 110 | q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"} |
| 111 | (uppercase to append). The 'q' command is disabled |
| 112 | while executing a register, and it doesn't work inside |
Bram Moolenaar | a0ed84a | 2015-11-19 17:56:13 +0100 | [diff] [blame] | 113 | a mapping and |:normal|. |
| 114 | |
| 115 | Note: If the register being used for recording is also |
| 116 | used for |y| and |p| the result is most likely not |
| 117 | what is expected, because the put will paste the |
| 118 | recorded macro and the yank will overwrite the |
| 119 | recorded macro. {Vi: no recording} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 120 | |
| 121 | q Stops recording. (Implementation note: The 'q' that |
| 122 | stops recording is not stored in the register, unless |
| 123 | it was the result of a mapping) {Vi: no recording} |
| 124 | |
| 125 | *@* |
Bram Moolenaar | 61d35bd | 2012-03-28 20:51:51 +0200 | [diff] [blame] | 126 | @{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 127 | times. Note that register '%' (name of the current |
| 128 | file) and '#' (name of the alternate file) cannot be |
Bram Moolenaar | 2a8a3ec | 2011-01-08 16:06:37 +0100 | [diff] [blame] | 129 | used. |
| 130 | The register is executed like a mapping, that means |
| 131 | that the difference between 'wildchar' and 'wildcharm' |
| 132 | applies. |
| 133 | For "@=" you are prompted to enter an expression. The |
| 134 | result of the expression is then executed. |
| 135 | See also |@:|. {Vi: only named registers} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 136 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 137 | *@@* *E748* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 138 | @@ Repeat the previous @{0-9a-z":*} [count] times. |
| 139 | |
Bram Moolenaar | 61d35bd | 2012-03-28 20:51:51 +0200 | [diff] [blame] | 140 | :[addr]*{0-9a-z".=+} *:@* *:star* |
| 141 | :[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] | 142 | command. First set cursor at line [addr] (default is |
| 143 | current line). When the last line in the register does |
| 144 | not have a <CR> it will be added automatically when |
| 145 | the 'e' flag is present in 'cpoptions'. |
| 146 | Note that the ":*" command is only recognized when the |
| 147 | '*' flag is present in 'cpoptions'. This is NOT the |
| 148 | default when 'nocompatible' is used. |
| 149 | For ":@=" the last used expression is used. The |
| 150 | result of evaluating the expression is executed as an |
| 151 | Ex command. |
| 152 | Mappings are not recognized in these commands. |
| 153 | {Vi: only in some versions} Future: Will execute the |
| 154 | register for each line in the address range. |
| 155 | |
| 156 | *:@:* |
| 157 | :[addr]@: Repeat last command-line. First set cursor at line |
| 158 | [addr] (default is current line). {not in Vi} |
| 159 | |
| 160 | *:@@* |
| 161 | :[addr]@@ Repeat the previous :@{0-9a-z"}. First set cursor at |
| 162 | line [addr] (default is current line). {Vi: only in |
| 163 | some versions} |
| 164 | |
| 165 | ============================================================================== |
| 166 | 4. Using Vim scripts *using-scripts* |
| 167 | |
| 168 | For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|. |
| 169 | |
| 170 | *:so* *:source* *load-vim-script* |
| 171 | :so[urce] {file} Read Ex commands from {file}. These are commands that |
| 172 | start with a ":". |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 173 | Triggers the |SourcePre| autocommand. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 174 | |
| 175 | :so[urce]! {file} Read Vim commands from {file}. These are commands |
| 176 | that are executed from Normal mode, like you type |
| 177 | them. |
| 178 | When used after |:global|, |:argdo|, |:windo|, |
| 179 | |:bufdo|, in a loop or when another command follows |
| 180 | the display won't be updated while executing the |
| 181 | commands. |
| 182 | {not in Vi} |
| 183 | |
| 184 | *:ru* *:runtime* |
| 185 | :ru[ntime][!] {file} .. |
| 186 | Read Ex commands from {file} in each directory given |
| 187 | by 'runtimepath'. There is no error for non-existing |
| 188 | files. Example: > |
| 189 | :runtime syntax/c.vim |
| 190 | |
| 191 | < There can be multiple {file} arguments, separated by |
| 192 | spaces. Each {file} is searched for in the first |
| 193 | directory from 'runtimepath', then in the second |
| 194 | directory, etc. Use a backslash to include a space |
| 195 | inside {file} (although it's better not to use spaces |
| 196 | in file names, it causes trouble). |
| 197 | |
| 198 | When [!] is included, all found files are sourced. |
| 199 | When it is not included only the first found file is |
| 200 | sourced. |
| 201 | |
| 202 | When {file} contains wildcards it is expanded to all |
| 203 | matching files. Example: > |
| 204 | :runtime! plugin/*.vim |
| 205 | < This is what Vim uses to load the plugin files when |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 206 | starting up. This similar command: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 207 | :runtime plugin/*.vim |
| 208 | < would source the first file only. |
| 209 | |
| 210 | When 'verbose' is one or higher, there is a message |
| 211 | when no file could be found. |
| 212 | When 'verbose' is two or higher, there is a message |
| 213 | about each searched file. |
| 214 | {not in Vi} |
| 215 | |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 216 | *:loadp* *:loadplugin* |
| 217 | :loadp[lugin] {name} Search for an optional plugin directory and source the |
| 218 | plugin files found. It is similar to: > |
| 219 | :runtime pack/*/opt/{name}/plugin/*.vim |
| 220 | < However, `:loadplugin` uses 'packpath' instead of |
| 221 | 'runtimepath'. And the directory found is added to |
| 222 | 'runtimepath'. |
| 223 | |
| 224 | Note that {name} is the directory name, not the name |
| 225 | of the .vim file. If the "{name}/plugin" directory |
| 226 | contains more than one file they are all sourced. |
| 227 | |
| 228 | Also see |load-plugin|. |
| 229 | |
| 230 | {not available without the |+packages| feature} |
| 231 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 232 | :scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167* |
| 233 | Specify the character encoding used in the script. |
| 234 | The following lines will be converted from [encoding] |
| 235 | to the value of the 'encoding' option, if they are |
| 236 | different. Examples: > |
| 237 | scriptencoding iso-8859-5 |
| 238 | scriptencoding cp932 |
| 239 | < |
| 240 | When [encoding] is empty, no conversion is done. This |
| 241 | can be used to restrict conversion to a sequence of |
| 242 | lines: > |
| 243 | scriptencoding euc-jp |
| 244 | ... lines to be converted ... |
| 245 | scriptencoding |
| 246 | ... not converted ... |
| 247 | |
| 248 | < When conversion isn't supported by the system, there |
| 249 | is no error message and no conversion is done. |
| 250 | |
| 251 | Don't use "ucs-2" or "ucs-4", scripts cannot be in |
| 252 | these encodings (they would contain NUL bytes). |
| 253 | When a sourced script starts with a BOM (Byte Order |
Bram Moolenaar | 06b5d51 | 2010-05-22 15:37:44 +0200 | [diff] [blame] | 254 | Mark) in utf-8 format Vim will recognize it, no need |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 255 | to use ":scriptencoding utf-8" then. |
| 256 | |
| 257 | When compiled without the |+multi_byte| feature this |
| 258 | command is ignored. |
| 259 | {not in Vi} |
| 260 | |
Bram Moolenaar | 8feef4f | 2015-01-07 16:57:10 +0100 | [diff] [blame] | 261 | *:scr* *:scriptnames* |
| 262 | :scr[iptnames] List all sourced script names, in the order they were |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 263 | first sourced. The number is used for the script ID |
| 264 | |<SID>|. |
| 265 | {not in Vi} {not available when compiled without the |
| 266 | |+eval| feature} |
| 267 | |
| 268 | *:fini* *:finish* *E168* |
| 269 | :fini[sh] Stop sourcing a script. Can only be used in a Vim |
| 270 | script file. This is a quick way to skip the rest of |
| 271 | the file. If it is used after a |:try| but before the |
| 272 | matching |:finally| (if present), the commands |
| 273 | following the ":finally" up to the matching |:endtry| |
| 274 | are executed first. This process applies to all |
| 275 | nested ":try"s in the script. The outermost ":endtry" |
| 276 | then stops sourcing the script. {not in Vi} |
| 277 | |
| 278 | All commands and command sequences can be repeated by putting them in a named |
| 279 | register and then executing it. There are two ways to get the commands in the |
| 280 | register: |
| 281 | - Use the record command "q". You type the commands once, and while they are |
| 282 | being executed they are stored in a register. Easy, because you can see |
| 283 | what you are doing. If you make a mistake, "p"ut the register into the |
| 284 | file, edit the command sequence, and then delete it into the register |
| 285 | again. You can continue recording by appending to the register (use an |
| 286 | uppercase letter). |
| 287 | - Delete or yank the command sequence into the register. |
| 288 | |
| 289 | Often used command sequences can be put under a function key with the ':map' |
| 290 | command. |
| 291 | |
| 292 | An alternative is to put the commands in a file, and execute them with the |
| 293 | ':source!' command. Useful for long command sequences. Can be combined with |
| 294 | the ':map' command to put complicated commands under a function key. |
| 295 | |
| 296 | The ':source' command reads Ex commands from a file line by line. You will |
| 297 | have to type any needed keyboard input. The ':source!' command reads from a |
| 298 | script file character by character, interpreting each character as if you |
| 299 | typed it. |
| 300 | |
| 301 | Example: When you give the ":!ls" command you get the |hit-enter| prompt. If |
| 302 | you ':source' a file with the line "!ls" in it, you will have to type the |
| 303 | <Enter> yourself. But if you ':source!' a file with the line ":!ls" in it, |
| 304 | the next characters from that file are read until a <CR> is found. You will |
| 305 | not have to type <CR> yourself, unless ":!ls" was the last line in the file. |
| 306 | |
| 307 | It is possible to put ':source[!]' commands in the script file, so you can |
| 308 | make a top-down hierarchy of script files. The ':source' command can be |
| 309 | nested as deep as the number of files that can be opened at one time (about |
| 310 | 15). The ':source!' command can be nested up to 15 levels deep. |
| 311 | |
| 312 | You can use the "<sfile>" string (literally, this is not a special key) inside |
| 313 | of the sourced file, in places where a file name is expected. It will be |
| 314 | replaced by the file name of the sourced file. For example, if you have a |
| 315 | "other.vimrc" file in the same directory as your ".vimrc" file, you can source |
| 316 | it from your ".vimrc" file with this command: > |
| 317 | :source <sfile>:h/other.vimrc |
| 318 | |
| 319 | In script files terminal-dependent key codes are represented by |
| 320 | terminal-independent two character codes. This means that they can be used |
| 321 | in the same way on different kinds of terminals. The first character of a |
| 322 | key code is 0x80 or 128, shown on the screen as "~@". The second one can be |
| 323 | found in the list |key-notation|. Any of these codes can also be entered |
| 324 | with CTRL-V followed by the three digit decimal code. This does NOT work for |
| 325 | the <t_xx> termcap codes, these can only be used in mappings. |
| 326 | |
| 327 | *:source_crnl* *W15* |
| 328 | MS-DOS, Win32 and OS/2: Files that are read with ":source" normally have |
| 329 | <CR><NL> <EOL>s. These always work. If you are using a file with <NL> <EOL>s |
| 330 | (for example, a file made on Unix), this will be recognized if 'fileformats' |
| 331 | is not empty and the first line does not end in a <CR>. This fails if the |
| 332 | first line has something like ":map <F1> :help^M", where "^M" is a <CR>. If |
| 333 | the first line ends in a <CR>, but following ones don't, you will get an error |
| 334 | message, because the <CR> from the first lines will be lost. |
| 335 | |
Bram Moolenaar | 520470a | 2005-06-16 21:59:56 +0000 | [diff] [blame] | 336 | 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] | 337 | These always work. If you are using a file with <NL> <EOL>s (for example, a |
| 338 | file made on Unix), this will be recognized if 'fileformats' is not empty and |
| 339 | the first line does not end in a <CR>. Be careful not to use a file with <NL> |
| 340 | linebreaks which has a <CR> in first line. |
| 341 | |
| 342 | On other systems, Vim expects ":source"ed files to end in a <NL>. These |
| 343 | always work. If you are using a file with <CR><NL> <EOL>s (for example, a |
| 344 | file made on MS-DOS), all lines will have a trailing <CR>. This may cause |
| 345 | problems for some commands (e.g., mappings). There is no automatic <EOL> |
| 346 | detection, because it's common to start with a line that defines a mapping |
| 347 | that ends in a <CR>, which will confuse the automaton. |
| 348 | |
| 349 | *line-continuation* |
| 350 | Long lines in a ":source"d Ex command script file can be split by inserting |
| 351 | a line continuation symbol "\" (backslash) at the start of the next line. |
| 352 | There can be white space before the backslash, which is ignored. |
| 353 | |
| 354 | Example: the lines > |
| 355 | :set comments=sr:/*,mb:*,el:*/, |
| 356 | \://, |
| 357 | \b:#, |
| 358 | \:%, |
| 359 | \n:>, |
| 360 | \fb:- |
| 361 | are interpreted as if they were given in one line: |
| 362 | :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:- |
| 363 | |
| 364 | All leading whitespace characters in the line before a backslash are ignored. |
| 365 | Note however that trailing whitespace in the line before it cannot be |
| 366 | inserted freely; it depends on the position where a command is split up |
| 367 | whether additional whitespace is allowed or not. |
| 368 | |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 369 | When a space is required it's best to put it right after the backslash. A |
| 370 | space at the end of a line is hard to see and may be accidentally deleted. > |
| 371 | :syn match Comment |
| 372 | \ "very long regexp" |
| 373 | \ keepend |
| 374 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 375 | There is a problem with the ":append" and ":insert" commands: > |
| 376 | :1append |
| 377 | \asdf |
| 378 | . |
| 379 | The backslash is seen as a line-continuation symbol, thus this results in the |
| 380 | command: > |
| 381 | :1appendasdf |
| 382 | . |
| 383 | To avoid this, add the 'C' flag to the 'cpoptions' option: > |
| 384 | :set cpo+=C |
| 385 | :1append |
| 386 | \asdf |
| 387 | . |
| 388 | :set cpo-=C |
| 389 | |
| 390 | Note that when the commands are inside a function, you need to add the 'C' |
| 391 | flag when defining the function, it is not relevant when executing it. > |
| 392 | :set cpo+=C |
| 393 | :function Foo() |
| 394 | :1append |
| 395 | \asdf |
| 396 | . |
| 397 | :endfunction |
| 398 | :set cpo-=C |
| 399 | |
| 400 | Rationale: |
| 401 | Most programs work with a trailing backslash to indicate line |
| 402 | continuation. Using this in Vim would cause incompatibility with Vi. |
| 403 | For example for this Vi mapping: > |
| 404 | :map xx asdf\ |
| 405 | < Therefore the unusual leading backslash is used. |
| 406 | |
| 407 | ============================================================================== |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 408 | 5. Using Vim packages *packages* |
| 409 | |
| 410 | A Vim package is a directory that contains one or more plugins. The |
| 411 | advantages over normal plugins: |
| 412 | - A package can be downloaded as an archive and unpacked in its own directory. |
| 413 | That makes it easy to updated and/or remove. |
| 414 | - A package can be a git, mercurial, etc. respository. That makes it really |
| 415 | easy to update. |
| 416 | - A package can contain multiple plugins that depend on each other. |
| 417 | - A package can contain plugins that are automatically loaded on startup and |
| 418 | ones that are only loaded when needed with `:loadplugin`. |
| 419 | |
| 420 | Let's assume your Vim files are in the "~/.vim" directory and you want to add a |
| 421 | package from a zip archive "/tmp/mypack.zip": |
| 422 | % mkdir -p ~/.vim/pack/my |
| 423 | % cd ~/.vim/pack/my |
| 424 | % unzip /tmp/mypack.zip |
| 425 | |
| 426 | The directory name "my" is arbitrary, you can pick anything you like. |
| 427 | |
| 428 | You would now have these files under ~/.vim: |
| 429 | pack/my/README.txt |
| 430 | pack/my/ever/always/plugin/always.vim |
| 431 | pack/my/ever/always/syntax/always.vim |
| 432 | pack/my/opt/mydebug/plugin/debugger.vim |
| 433 | |
| 434 | When Vim starts up it scans all directories in 'packpath' for plugins under the |
| 435 | "ever" directory and loads them. When found that directory is added to |
| 436 | 'runtimepath'. |
| 437 | |
| 438 | In the example Vim will find "my/ever/always/plugin/always.vim" and adds |
| 439 | "~/.vim/pack/my/ever/always" to 'runtimepath'. |
| 440 | |
| 441 | If the "always" plugin kicks in and sets the 'filetype' to "always", Vim will |
| 442 | find the syntax/always.vim file, because its directory is in 'runtimepath'. |
| 443 | |
| 444 | *load-plugin* |
| 445 | To load an optional plugin from a pack use the `:loadplugin` command: > |
| 446 | :loadplugin mydebug |
| 447 | This could be done inside always.vim, if some conditions are met. |
| 448 | Or you could add this command to your |.vimrc|. |
| 449 | |
| 450 | It is perfectly normal for a package to only have files in the "opt" |
| 451 | directory. You then need to load each plugin when you want to use it. |
| 452 | |
| 453 | Loading packages will not happen if loading plugins is disabled, see |
| 454 | |load-plugins|. |
| 455 | |
| 456 | ============================================================================== |
| 457 | 6. Debugging scripts *debug-scripts* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 458 | |
| 459 | Besides the obvious messages that you can add to your scripts to find out what |
| 460 | they are doing, Vim offers a debug mode. This allows you to step through a |
| 461 | sourced file or user function and set breakpoints. |
| 462 | |
| 463 | NOTE: The debugging mode is far from perfect. Debugging will have side |
| 464 | effects on how Vim works. You cannot use it to debug everything. For |
| 465 | example, the display is messed up by the debugging messages. |
| 466 | {Vi does not have a debug mode} |
| 467 | |
| 468 | An alternative to debug mode is setting the 'verbose' option. With a bigger |
| 469 | number it will give more verbose messages about what Vim is doing. |
| 470 | |
| 471 | |
| 472 | STARTING DEBUG MODE *debug-mode* |
| 473 | |
| 474 | To enter debugging mode use one of these methods: |
| 475 | 1. Start Vim with the |-D| argument: > |
| 476 | vim -D file.txt |
| 477 | < Debugging will start as soon as the first vimrc file is sourced. This is |
| 478 | useful to find out what is happening when Vim is starting up. A side |
| 479 | effect is that Vim will switch the terminal mode before initialisations |
| 480 | have finished, with unpredictable results. |
| 481 | For a GUI-only version (Windows, Macintosh) the debugging will start as |
| 482 | soon as the GUI window has been opened. To make this happen early, add a |
| 483 | ":gui" command in the vimrc file. |
| 484 | *:debug* |
| 485 | 2. Run a command with ":debug" prepended. Debugging will only be done while |
| 486 | this command executes. Useful for debugging a specific script or user |
| 487 | function. And for scripts and functions used by autocommands. Example: > |
| 488 | :debug edit test.txt.gz |
| 489 | |
| 490 | 3. Set a breakpoint in a sourced file or user function. You could do this in |
| 491 | the command line: > |
| 492 | vim -c "breakadd file */explorer.vim" . |
| 493 | < This will run Vim and stop in the first line of the "explorer.vim" script. |
| 494 | Breakpoints can also be set while in debugging mode. |
| 495 | |
| 496 | In debugging mode every executed command is displayed before it is executed. |
| 497 | Comment lines, empty lines and lines that are not executed are skipped. When |
| 498 | a line contains two commands, separated by "|", each command will be displayed |
| 499 | separately. |
| 500 | |
| 501 | |
| 502 | DEBUG MODE |
| 503 | |
| 504 | Once in debugging mode, the usual Ex commands can be used. For example, to |
| 505 | inspect the value of a variable: > |
| 506 | echo idx |
| 507 | When inside a user function, this will print the value of the local variable |
| 508 | "idx". Prepend "g:" to get the value of a global variable: > |
| 509 | echo g:idx |
| 510 | All commands are executed in the context of the current function or script. |
| 511 | You can also set options, for example setting or resetting 'verbose' will show |
| 512 | what happens, but you might want to set it just before executing the lines you |
| 513 | are interested in: > |
| 514 | :set verbose=20 |
| 515 | |
| 516 | Commands that require updating the screen should be avoided, because their |
| 517 | effect won't be noticed until after leaving debug mode. For example: > |
| 518 | :help |
| 519 | won't be very helpful. |
| 520 | |
| 521 | There is a separate command-line history for debug mode. |
| 522 | |
| 523 | The line number for a function line is relative to the start of the function. |
| 524 | If you have trouble figuring out where you are, edit the file that defines |
| 525 | the function in another Vim, search for the start of the function and do |
| 526 | "99j". Replace "99" with the line number. |
| 527 | |
| 528 | Additionally, these commands can be used: |
| 529 | *>cont* |
| 530 | cont Continue execution until the next breakpoint is hit. |
| 531 | *>quit* |
| 532 | quit Abort execution. This is like using CTRL-C, some |
| 533 | things might still be executed, doesn't abort |
| 534 | everything. Still stops at the next breakpoint. |
| 535 | *>next* |
| 536 | next Execute the command and come back to debug mode when |
| 537 | it's finished. This steps over user function calls |
| 538 | and sourced files. |
| 539 | *>step* |
| 540 | step Execute the command and come back to debug mode for |
| 541 | the next command. This steps into called user |
| 542 | functions and sourced files. |
| 543 | *>interrupt* |
| 544 | interrupt This is like using CTRL-C, but unlike ">quit" comes |
| 545 | back to debug mode for the next command that is |
| 546 | executed. Useful for testing |:finally| and |:catch| |
| 547 | on interrupt exceptions. |
| 548 | *>finish* |
| 549 | finish Finish the current script or user function and come |
| 550 | back to debug mode for the command after the one that |
| 551 | sourced or called it. |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 552 | *>bt* |
| 553 | *>backtrace* |
| 554 | *>where* |
| 555 | backtrace Show the call stacktrace for current debugging session. |
| 556 | bt |
| 557 | where |
| 558 | *>frame* |
Bram Moolenaar | 38a5563 | 2016-02-15 22:07:32 +0100 | [diff] [blame] | 559 | frame N Goes to N backtrace level. + and - signs make movement |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 560 | relative. E.g., ":frame +3" goes three frames up. |
| 561 | *>up* |
| 562 | up Goes one level up from call stacktrace. |
| 563 | *>down* |
| 564 | down Goes one level down from call stacktrace. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 565 | |
| 566 | About the additional commands in debug mode: |
| 567 | - There is no command-line completion for them, you get the completion for the |
| 568 | normal Ex commands only. |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 569 | - You can shorten them, up to a single character, unless more then one command |
| 570 | 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] | 571 | - Hitting <CR> will repeat the previous one. When doing another command, this |
| 572 | is reset (because it's not clear what you want to repeat). |
| 573 | - When you want to use the Ex command with the same name, prepend a colon: |
| 574 | ":cont", ":next", ":finish" (or shorter). |
| 575 | |
Bram Moolenaar | f1f60f8 | 2016-01-16 15:40:53 +0100 | [diff] [blame] | 576 | The backtrace shows the hierarchy of function calls, e.g.: |
| 577 | >bt ~ |
| 578 | 3 function One[3] ~ |
| 579 | 2 Two[3] ~ |
| 580 | ->1 Three[3] ~ |
| 581 | 0 Four ~ |
| 582 | line 1: let four = 4 ~ |
| 583 | |
| 584 | The "->" points to the current frame. Use "up", "down" and "frame N" to |
| 585 | select another frame. |
| 586 | |
| 587 | In the current frame you can evaluate the local function variables. There is |
| 588 | no way to see the command at the current line yet. |
| 589 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 590 | |
| 591 | DEFINING BREAKPOINTS |
| 592 | *:breaka* *:breakadd* |
| 593 | :breaka[dd] func [lnum] {name} |
| 594 | Set a breakpoint in a function. Example: > |
| 595 | :breakadd func Explore |
| 596 | < Doesn't check for a valid function name, thus the breakpoint |
| 597 | can be set before the function is defined. |
| 598 | |
| 599 | :breaka[dd] file [lnum] {name} |
| 600 | Set a breakpoint in a sourced file. Example: > |
| 601 | :breakadd file 43 .vimrc |
| 602 | |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 603 | :breaka[dd] here |
| 604 | Set a breakpoint in the current line of the current file. |
| 605 | Like doing: > |
| 606 | :breakadd file <cursor-line> <current-file> |
| 607 | < Note that this only works for commands that are executed when |
| 608 | sourcing the file, not for a function defined in that file. |
| 609 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 610 | The [lnum] is the line number of the breakpoint. Vim will stop at or after |
| 611 | this line. When omitted line 1 is used. |
| 612 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 613 | *:debug-name* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 614 | {name} is a pattern that is matched with the file or function name. The |
| 615 | pattern is like what is used for autocommands. There must be a full match (as |
| 616 | if the pattern starts with "^" and ends in "$"). A "*" matches any sequence |
| 617 | of characters. 'ignorecase' is not used, but "\c" can be used in the pattern |
| 618 | to ignore case |/\c|. Don't include the () for the function name! |
| 619 | |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 620 | The match for sourced scripts is done against the full file name. If no path |
| 621 | is specified the current directory is used. Examples: > |
| 622 | breakadd file explorer.vim |
| 623 | matches "explorer.vim" in the current directory. > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 624 | breakadd file *explorer.vim |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 625 | matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 626 | breakadd file */explorer.vim |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 627 | matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 628 | |
| 629 | The match for functions is done against the name as it's shown in the output |
| 630 | of ":function". For local functions this means that something like "<SNR>99_" |
| 631 | is prepended. |
| 632 | |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 633 | Note that functions are first loaded and later executed. When they are loaded |
| 634 | the "file" breakpoints are checked, when they are executed the "func" |
| 635 | breakpoints. |
| 636 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 637 | |
| 638 | DELETING BREAKPOINTS |
| 639 | *:breakd* *:breakdel* *E161* |
| 640 | :breakd[el] {nr} |
| 641 | Delete breakpoint {nr}. Use |:breaklist| to see the number of |
| 642 | each breakpoint. |
| 643 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 644 | :breakd[el] * |
| 645 | Delete all breakpoints. |
| 646 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 647 | :breakd[el] func [lnum] {name} |
| 648 | Delete a breakpoint in a function. |
| 649 | |
| 650 | :breakd[el] file [lnum] {name} |
| 651 | Delete a breakpoint in a sourced file. |
| 652 | |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 653 | :breakd[el] here |
| 654 | Delete a breakpoint at the current line of the current file. |
| 655 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 656 | When [lnum] is omitted, the first breakpoint in the function or file is |
| 657 | deleted. |
| 658 | The {name} must be exactly the same as what was typed for the ":breakadd" |
| 659 | command. "explorer", "*explorer.vim" and "*explorer*" are different. |
| 660 | |
| 661 | |
| 662 | LISTING BREAKPOINTS |
| 663 | *:breakl* *:breaklist* |
| 664 | :breakl[ist] |
| 665 | List all breakpoints. |
| 666 | |
| 667 | |
| 668 | OBSCURE |
| 669 | |
| 670 | *:debugg* *:debuggreedy* |
| 671 | :debugg[reedy] |
| 672 | Read debug mode commands from the normal input stream, instead |
| 673 | of getting them directly from the user. Only useful for test |
| 674 | scripts. Example: > |
| 675 | echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim |
| 676 | |
| 677 | :0debugg[reedy] |
| 678 | Undo ":debuggreedy": get debug mode commands directly from the |
| 679 | user, don't use typeahead for debug commands. |
| 680 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 681 | ============================================================================== |
Bram Moolenaar | f6fee0e | 2016-02-21 23:02:49 +0100 | [diff] [blame] | 682 | 7. Profiling *profile* *profiling* |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 683 | |
Bram Moolenaar | 996343d | 2010-07-04 22:20:21 +0200 | [diff] [blame] | 684 | Profiling means that Vim measures the time that is spent on executing |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 685 | functions and/or scripts. The |+profile| feature is required for this. |
| 686 | It is only included when Vim was compiled with "huge" features. |
| 687 | {Vi does not have profiling} |
| 688 | |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 689 | You can also use the |reltime()| function to measure time. This only requires |
| 690 | the |+reltime| feature, which is present more often. |
| 691 | |
Bram Moolenaar | 16ea367 | 2013-07-28 16:02:18 +0200 | [diff] [blame] | 692 | For profiling syntax highlighting see |:syntime|. |
| 693 | |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 694 | For example, to profile the one_script.vim script file: > |
| 695 | :profile start /tmp/one_script_profile |
| 696 | :profile file one_script.vim |
| 697 | :source one_script.vim |
| 698 | :exit |
| 699 | |
Bram Moolenaar | 16ea367 | 2013-07-28 16:02:18 +0200 | [diff] [blame] | 700 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 701 | :prof[ile] start {fname} *:prof* *:profile* *E750* |
| 702 | Start profiling, write the output in {fname} upon exit. |
Bram Moolenaar | 0a63ded | 2015-04-15 13:31:24 +0200 | [diff] [blame] | 703 | "~/" and environment variables in {fname} will be expanded. |
Bram Moolenaar | 9b2200a | 2006-03-20 21:55:45 +0000 | [diff] [blame] | 704 | If {fname} already exists it will be silently overwritten. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 705 | The variable |v:profiling| is set to one. |
| 706 | |
Bram Moolenaar | 9b2200a | 2006-03-20 21:55:45 +0000 | [diff] [blame] | 707 | :prof[ile] pause |
| 708 | Don't profile until the following ":profile continue". Can be |
| 709 | used when doing something that should not be counted (e.g., an |
| 710 | external command). Does not nest. |
| 711 | |
| 712 | :prof[ile] continue |
| 713 | Continue profiling after ":profile pause". |
| 714 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 715 | :prof[ile] func {pattern} |
| 716 | Profile function that matches the pattern {pattern}. |
| 717 | See |:debug-name| for how {pattern} is used. |
| 718 | |
| 719 | :prof[ile][!] file {pattern} |
| 720 | Profile script file that matches the pattern {pattern}. |
| 721 | See |:debug-name| for how {pattern} is used. |
| 722 | This only profiles the script itself, not the functions |
| 723 | defined in it. |
| 724 | When the [!] is added then all functions defined in the script |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 725 | will also be profiled. |
| 726 | Note that profiling only starts when the script is loaded |
| 727 | after this command. A :profile command in the script itself |
| 728 | won't work. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 729 | |
| 730 | |
Bram Moolenaar | d9fba31 | 2005-06-26 22:34:35 +0000 | [diff] [blame] | 731 | :profd[el] ... *:profd* *:profdel* |
| 732 | Stop profiling for the arguments specified. See |:breakdel| |
| 733 | for the arguments. |
| 734 | |
| 735 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 736 | You must always start with a ":profile start fname" command. The resulting |
| 737 | file is written when Vim exits. Here is an example of the output, with line |
| 738 | numbers prepended for the explanation: |
| 739 | |
| 740 | 1 FUNCTION Test2() ~ |
| 741 | 2 Called 1 time ~ |
| 742 | 3 Total time: 0.155251 ~ |
| 743 | 4 Self time: 0.002006 ~ |
| 744 | 5 ~ |
| 745 | 6 count total (s) self (s) ~ |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 746 | 7 9 0.000096 for i in range(8) ~ |
| 747 | 8 8 0.153655 0.000410 call Test3() ~ |
| 748 | 9 8 0.000070 endfor ~ |
| 749 | 10 " Ask a question ~ |
| 750 | 11 1 0.001341 echo input("give me an answer: ") ~ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 751 | |
| 752 | The header (lines 1-4) gives the time for the whole function. The "Total" |
| 753 | time is the time passed while the function was executing. The "Self" time is |
| 754 | the "Total" time reduced by time spent in: |
| 755 | - other user defined functions |
| 756 | - sourced scripts |
| 757 | - executed autocommands |
| 758 | - external (shell) commands |
| 759 | |
| 760 | Lines 7-11 show the time spent in each executed line. Lines that are not |
| 761 | executed do not count. Thus a comment line is never counted. |
| 762 | |
| 763 | The Count column shows how many times a line was executed. Note that the |
| 764 | "for" command in line 7 is executed one more time as the following lines. |
| 765 | That is because the line is also executed to detect the end of the loop. |
| 766 | |
| 767 | The time Vim spends waiting for user input isn't counted at all. Thus how |
| 768 | long you take to respond to the input() prompt is irrelevant. |
| 769 | |
| 770 | Profiling should give a good indication of where time is spent, but keep in |
| 771 | mind there are various things that may clobber the results: |
| 772 | |
| 773 | - The accuracy of the time measured depends on the gettimeofday() system |
| 774 | function. It may only be as accurate as 1/100 second, even though the times |
| 775 | are displayed in micro seconds. |
| 776 | |
| 777 | - Real elapsed time is measured, if other processes are busy they may cause |
| 778 | delays at unpredictable moments. You may want to run the profiling several |
| 779 | times and use the lowest results. |
| 780 | |
| 781 | - If you have several commands in one line you only get one time. Split the |
| 782 | line to see the time for the individual commands. |
| 783 | |
| 784 | - The time of the lines added up is mostly less than the time of the whole |
| 785 | function. There is some overhead in between. |
| 786 | |
| 787 | - Functions that are deleted before Vim exits will not produce profiling |
| 788 | information. You can check the |v:profiling| variable if needed: > |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 789 | :if !v:profiling |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 790 | : delfunc MyFunc |
| 791 | :endif |
| 792 | < |
Bram Moolenaar | 8cd06ca | 2005-02-28 22:44:58 +0000 | [diff] [blame] | 793 | - Profiling may give weird results on multi-processor systems, when sleep |
| 794 | mode kicks in or the processor frequency is reduced to save power. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 795 | |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 796 | - The "self" time is wrong when a function is used recursively. |
| 797 | |
| 798 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 799 | vim:tw=78:ts=8:ft=help:norl: |