You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to "_dd and then immediately hit p, nothing happens. Only after you type p a second time does pasting work.
From my investigation, it seems like the v:register variable is not reset correctly after the "_dd operation. I opened a thread on the vim-dev mailing list which might provide a good solution, but one way to avoid the issue for the _ register in particular is to check for it explicitly. Sadly, this doesn't solve the larger issue, but might at least help for the common case of black hole deletion.
The text was updated successfully, but these errors were encountered:
I have a similar problem with my own plugin, here: AndrewRadev/whitespaste.vim#2.
If you try to
"_dd
and then immediately hitp
, nothing happens. Only after you typep
a second time does pasting work.From my investigation, it seems like the
v:register
variable is not reset correctly after the"_dd
operation. I opened a thread on the vim-dev mailing list which might provide a good solution, but one way to avoid the issue for the_
register in particular is to check for it explicitly. Sadly, this doesn't solve the larger issue, but might at least help for the common case of black hole deletion.The text was updated successfully, but these errors were encountered: