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
Vim-iced seems to be over-riding Vim's normal yank and paste functionality:
If I yank or cut a part of a comment Vim-iced will select the whole comment.
If I try and yank or cut a part of a function (single line) it will select the whole comment.
If I try and paste something in from the system clipboard it pastes in the function that it previously yanked.
My clipboard is set to unamedplus, I'm using vim-iced 2.3.2
def smalltest
"a small test"
[]
(println "hello, first line")
(comment
(smalltest)
(+ 3 3)
)
In vim v$y to select the println line and yank it. Go down a line and paste (p) - it pastes the whole function rather than the single line. The expected behaviour is it would paste in the single println that was selected.
In the comment it will not let you select the (+ 3 3) line, instead it selects the whole comment. Expected behaviour is to be able to paste in a single line.
Select something in another window (e.g. another vim instance in Tmux), in insert mode in Vim press v and it will paste in the last selection that vim-iced knows about. The expected behaviour is it will paste in what is in the system clipboard.
If I do :IcedDisconnect then it will work
I saw a closed bug if you have unnamedplus set but I was not sure what that issue covered.
The text was updated successfully, but these errors were encountered:
Vim-iced seems to be over-riding Vim's normal yank and paste functionality:
My clipboard is set to unamedplus, I'm using vim-iced 2.3.2
In vim v$y to select the println line and yank it. Go down a line and paste (p) - it pastes the whole function rather than the single line. The expected behaviour is it would paste in the single println that was selected.
In the comment it will not let you select the (+ 3 3) line, instead it selects the whole comment. Expected behaviour is to be able to paste in a single line.
Select something in another window (e.g. another vim instance in Tmux), in insert mode in Vim press v and it will paste in the last selection that vim-iced knows about. The expected behaviour is it will paste in what is in the system clipboard.
If I do :IcedDisconnect then it will work
I saw a closed bug if you have unnamedplus set but I was not sure what that issue covered.
The text was updated successfully, but these errors were encountered: