comparison runtime/doc/change.txt @ 99:04f2e519ab18

updated for version 7.0038
author vimboss
date Fri, 14 Jan 2005 21:48:43 +0000
parents c75153d791d0
children 8b0ee9d57d7f
comparison
equal deleted inserted replaced
98:98435a8ddb09 99:04f2e519ab18
1 *change.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 1 *change.txt* For Vim version 7.0aa. Last change: 2005 Jan 14
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
376 376
377 The CTRL-A command is very useful in a macro. Example: Use the following 377 The CTRL-A command is very useful in a macro. Example: Use the following
378 steps to make a numbered list. 378 steps to make a numbered list.
379 379
380 1. Create the first list entry, make sure it starts with a number. 380 1. Create the first list entry, make sure it starts with a number.
381 2. qa - start recording into buffer 'a' 381 2. qa - start recording into register 'a'
382 3. Y - yank the entry 382 3. Y - yank the entry
383 4. p - put a copy of the entry below the first one 383 4. p - put a copy of the entry below the first one
384 5. CTRL-A - increment the number 384 5. CTRL-A - increment the number
385 6. q - stop recording 385 6. q - stop recording
386 7. <count>@a - repeat the yank, put and increment <count> times 386 7. <count>@a - repeat the yank, put and increment <count> times