|
1 | 1 | *yankring.txt* For Vim version 7.0.
|
2 | 2 |
|
3 | 3 | Author: David Fishburn August 29, 2009
|
4 |
| -Version: 9.0 |
| 4 | +Version: 10.0 |
5 | 5 |
|
6 | 6 | For instructions on installing this file, type
|
7 | 7 | :help add-local-help |add-local-help| inside Vim.
|
@@ -94,6 +94,13 @@ your |.vimrc|.
|
94 | 94 | < Default: 100
|
95 | 95 | Controls how many elements to save in the yankring. >
|
96 | 96 | let g:yankring_max_history = 100
|
| 97 | + yankring_min_element_length |
| 98 | +< Default: 1 |
| 99 | + If the yanked element has a length less than this value |
| 100 | + if will not be added to the YankRing. This can be useful if |
| 101 | + you want to bypass single letter deletes by adding the |
| 102 | + following to your .vimrc: > |
| 103 | + let g:yankring_min_element_length = 2 |
97 | 104 | yankring_max_element_length
|
98 | 105 | < Default: 1048576 (1M)
|
99 | 106 | Will truncate a new entry to the specified maximum. If
|
@@ -1124,6 +1131,25 @@ mapping: >
|
1124 | 1131 | ==============================================================================
|
1125 | 1132 | 7. History *yankring-history*
|
1126 | 1133 |
|
| 1134 | + 10.0: January 31, 2010 |
| 1135 | + NF: Change the buffer name to [YankRing] to resemble other |
| 1136 | + non-user buffers. |
| 1137 | + NF: Added g:yankring_min_element_length which can prevent |
| 1138 | + items from being added to the YankRing if they are too small. |
| 1139 | + For example, single character deletes (Vedran M). |
| 1140 | + BF: When shifting focus back to Vim, the YankRing may incorrectly |
| 1141 | + report: "YR:Failed to change to the yankring buffer, |
| 1142 | + please contact author". |
| 1143 | + BF: When entering Vim for the first time and hitting "p" |
| 1144 | + nothing was pasted (Mark Huiskes). |
| 1145 | + BF: When entering Vim for the first time and the |
| 1146 | + yankring_clipboard_monitor = 1, the clipboard entry |
| 1147 | + was not automatically added to the yankring. |
| 1148 | + BF: When overriding the default and setting |
| 1149 | + g:yankring_window_use_bottom = 0, the YankRing would |
| 1150 | + report the error (Sergey Khorev): |
| 1151 | + E21: Cannot make changes, 'modifiable' is off |
| 1152 | + |
1127 | 1153 | 9.0: August 29, 2009:
|
1128 | 1154 | BF: You cannot execute a macro with ":normal @a". It is still
|
1129 | 1155 | not possible, but you can execute it with ":normal! @a"
|
|
0 commit comments