Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make registers picker behave like normal mode pasting #3419

Open
crater2150 opened this issue Feb 19, 2025 · 1 comment
Open

Make registers picker behave like normal mode pasting #3419

crater2150 opened this issue Feb 19, 2025 · 1 comment
Labels
enhancement Enhancement to performance, inner workings or existent features

Comments

@crater2150
Copy link

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.

@crater2150 crater2150 added the enhancement Enhancement to performance, inner workings or existent features label Feb 19, 2025
crater2150 added a commit to crater2150/telescope.nvim that referenced this issue Feb 19, 2025
)

This makes the registers picker behave as pasting in normal mode when a
buffer contains line or block data.
@crater2150
Copy link
Author

I tried to fix the problem by using nvim_put and vim.fn.getregtype(): crater2150@c49aa3c

This seems to work for block registers, but adds an extra newline with line registers. Going to look into it futher tomorrow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Enhancement to performance, inner workings or existent features
Projects
None yet
Development

No branches or pull requests

1 participant