File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -1107,6 +1107,11 @@ mapping: >
1107
1107
==============================================================================
1108
1108
7. History *yankring-history*
1109
1109
1110
+ 6.1: October 31, 2008:
1111
+ BF: If the g:yankring_history_dir contains spaces (default on
1112
+ Windows) an error was reported. A simple work around was to
1113
+ let g:yankring_history_dir = 'c:\Vim' or no spaces (Matt).
1114
+
1110
1115
6.0: October 25, 2008:
1111
1116
NF: The YankRing now maintains the history in a file. This means
1112
1117
if you are running multiple instances of Vim, they all see
Original file line number Diff line number Diff line change 1
1
" yankring.vim - Yank / Delete Ring for Vim
2
2
" ---------------------------------------------------------------
3
- " Version: 6.0
3
+ " Version: 6.1
4
4
" Authors: David Fishburn <[email protected] >
5
- " Last Modified: 2008 Oct 28
5
+ " Last Modified: 2008 Oct 31
6
6
" Script: http://www.vim.org/scripts/script.php?script_id=1234
7
7
" Based On: Mocked up version by Yegappan Lakshmanan
8
8
" http://groups.yahoo.com/group/vim/post?act=reply&messageNum=34406
@@ -18,7 +18,7 @@ if v:version < 700
18
18
finish
19
19
endif
20
20
21
- let loaded_yankring = 60
21
+ let loaded_yankring = 61
22
22
23
23
let s: yr_has_voperator = 0
24
24
if v: version > 701 || ( v: version == 701 && has (" patch205" ) )
@@ -219,12 +219,11 @@ let s:yr_buffer_last = -1
219
219
let s: yr_buffer_id = -1
220
220
let s: yr_search = " "
221
221
let s: yr_history_last_upd = 0
222
- let s: yr_history_file = escape (
222
+ let s: yr_history_file =
223
223
\ g: yankring_history_dir .' /' .
224
224
\ g: yankring_history_file .
225
225
\ (g: yankring_share_between_instances== 1 ?' ' :' _' .v: servername ).
226
- \ ' .txt' ,
227
- \ ' ' )
226
+ \ ' .txt'
228
227
229
228
230
229
" Vim window size is changed by the yankring plugin or not
You can’t perform that action at this time.
0 commit comments