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