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
Is your feature request related to a problem? Please describe.
Currently, pasting from the builtin.registers picker behaves differently from pasting with p in normal mode, when the register contains data from a linewise or blockwise yank. For example, take a file with the following content:
Hello World
Hello World
With the cursor on the first H, then copying with y$, the pasting via telescope's picker behaves the same as via p, resulting in:
HHello Worldello World
Hello World
But if I do a linewise copy, i.e. yy with the cursor anywhere on the first line, then p, the result is
Hello World
Hello World
Hello World
while the telescope picker has the same result as the character-wise copy from before.
Similarly, copying the two "Hello" via visual-block selection, then pasting with p (with the cursor on the first char again), results in
HHelloello World
HHelloello World
while telescope.builtin.registers() results in
HHello
Helloello World
Hello World
Describe the solution you'd like
Pasting via p and via the builtin.registers() picker should behave the same.
Additional context
I've briefly looked into the code. I don't have much experience with the nvim API, but it seems vim.fn.getregtype can be used to check, which type of copying was used.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, pasting from the
builtin.registers
picker behaves differently from pasting withp
in normal mode, when the register contains data from a linewise or blockwise yank. For example, take a file with the following content:With the cursor on the first
H
, then copying withy$
, the pasting via telescope's picker behaves the same as viap
, resulting in:But if I do a linewise copy, i.e.
yy
with the cursor anywhere on the first line, thenp
, the result iswhile the telescope picker has the same result as the character-wise copy from before.
Similarly, copying the two "Hello" via visual-block selection, then pasting with
p
(with the cursor on the first char again), results inwhile
telescope.builtin.registers()
results inDescribe the solution you'd like
Pasting via
p
and via thebuiltin.registers()
picker should behave the same.Additional context
I've briefly looked into the code. I don't have much experience with the nvim API, but it seems
vim.fn.getregtype
can be used to check, which type of copying was used.The text was updated successfully, but these errors were encountered: