Add new option to control mouse yank_action #186
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Thanks for this plugin <3
This PR adds a new option
@yank_action_mousethat acts like the@yank_actionoption for mouse selections and falls back to said one when not set.The idea is to allow different behavior when copying via mouse selection or via keyboard e.g. leave the selection in tact after copying to
primaryclipboard when selecting with the mouse but remove the selection when typingyto copy to theclipboard.Currently it is only possible to
copy-pipe), which also removes it when I select with the mouse, which (at least I think) is unintuitivecopy-pipe-no-clear) which behaves differently from what nvim does when pressingy(nvim removes the selection)To fix this, with the new option one could configure
This does the following
primaryclipboardyon a selectionclipboardWhich is similar to how most GUI copying works with mouse selection and
Ctrl+Cinstead ofy(except for the removal of the selection to behave like nvim).