comparison runtime/doc/change.txt @ 8:7edf9b6e4c36

Various changes
author vimboss
date Wed, 16 Jun 2004 11:19:22 +0000
parents 3fc0f57ecb91
children 4102fb4ea781
comparison
equal deleted inserted replaced
7:3fc0f57ecb91 8:7edf9b6e4c36
1 *change.txt* For Vim version 7.0aa. Last change: 2004 May 08 1 *change.txt* For Vim version 7.0aa. Last change: 2004 Jun 15
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
961 9. Last search pattern register "/ 961 9. Last search pattern register "/
962 962
963 1. Unnamed register "" *quote_quote* *quotequote* 963 1. Unnamed register "" *quote_quote* *quotequote*
964 Vim fills this register with text deleted with the "d", "c", "s", "x" commands 964 Vim fills this register with text deleted with the "d", "c", "s", "x" commands
965 or copied with the yank "y" command, regardless of whether or not a specific 965 or copied with the yank "y" command, regardless of whether or not a specific
966 register was used (e.g. "xdd). An exception is the '_' register: "_dd does 966 register was used (e.g. "xdd). This is like the unnamed register is pointing
967 not store the deleted text in any register. Vim uses the contents of this 967 to the last used register. An exception is the '_' register: "_dd does not
968 store the deleted text in any register. Vim uses the contents of this
968 register for any put command (p or P) which does not specify a register. 969 register for any put command (p or P) which does not specify a register.
969 Additionally you can access it with the name '"'. This means you have to type 970 Additionally you can access it with the name '"'. This means you have to type
970 two double quotes. Writing to the "" register writes to register "0. 971 two double quotes. Writing to the "" register writes to register "0.
971 {Vi: register contents are lost when changing files, no '"'} 972 {Vi: register contents are lost when changing files, no '"'}
972 973