Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to version 20.0 #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions doc/yankring.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
*yankring.txt* For Vim version 7.0.

Author: David Fishburn July 27, 2015
Version: 19.0
Author: David Fishburn March 1, 2016
Version: 20.0

For instructions on installing this file, type
:help add-local-help |add-local-help| inside Vim.
Expand Down Expand Up @@ -169,6 +169,15 @@ your |.vimrc|.
option controls whether [gp] and [gP] are also mapped. Setting this
option to 0 will not create these maps. >
let g:yankring_paste_using_g = 1
yankring_paste_visual_reset_default_register
< Default: 0
Vim's help |put-Visual-mode| indicates when you visually select text
and paste Vim places the replaced text into the default register.
This means if you attempt to paste again, you have to use the
YankRing's replace feature. If in visual mode and pasting from
the default register, this option will set the default register
back to the value before the paste. >
let g:yankring_paste_visual_reset_default_register = 1
yankring_window_use_separate
< Default: 1
This is a new feature as of the 2.0 release. The YankRing now uses a
Expand Down Expand Up @@ -395,7 +404,7 @@ variables in your |vimrc|.
Yanks visually select text. >
yankring_del_v_key
< n - normal mode
Default: d
Default: d x
The visually select text is included in the YankRing and deleted. >
yankring_paste_n_bkey
< n - normal mode
Expand Down Expand Up @@ -1236,6 +1245,21 @@ mapping: >
==============================================================================
7. History *yankring-history*

20.0: Jnauary 1, 2019
NF: YankRing uses new Vim 8.1 TextYankPost event which allows
the removal of quite a few normal mode maps.
NF: All YankRing maps now use <unique>. If a mapping already
exists Vim will report an error. Now the user will know
if there are conflicts. (tenfyzhong, pull #12)
NF: New option g:yankring_paste_visual_reset_default_register
default(0).
When in visual mode and we are pasting text from the default
register, the default register gets replaced with the
overwritten text. This option will put the contents that
were just pasted back into the default register.
This will allow you to paste multiple times in visual mode
without having to use the YankRing replace feature.

19.0: July 27, 2015
NF: Updated documentation displayed in the YankRing window when
pressing ? to explain the Insert=0 status (Oskar Kvist).
Expand Down
Loading