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
It's ($handler <<< $CUTBUFFER &), the <<< will add a trailing newline.
The only issue is that this would causes linewise yanks in Zsh to be interpreted as characterwise in (n)vim (see #2). I've made a branch which does not append a newline, but now we'll have to re-add the newline in any time there's a linewise yank.
Yank commands, such as
"+yiw
or{Visual}"+y
, append a newline to the clipboard. Even copying a single character adds a newline.Currently I am using
linux/wayland
withwl-clipboard
.This issue can be patched with the following code:
It’s possible that a newline is being added somewhere in the plugin.
It may work this way with another clipboard adapters.
The text was updated successfully, but these errors were encountered: