We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When pressing gv (:help reselect-visual), it should reselect the copied region (visual block).
gv
Reproduction:
vim.keymap.set('v', '<leader>y', require('osc52').copy_visual)
<leader>y
Some codes like the following would be needed:
local start = vim.fn.getpos("'<") local end = vim.fn.getpos("'>") -- copy OSC52... vim.fn.setpos("'<", start) vim.fn.setpos("'>", end)
The text was updated successfully, but these errors were encountered:
fa9bbb3
Thanks for the report, it should be fixed in the latest commit.
Sorry, something went wrong.
Awesome, thanks!
fix: copy_visual does not respect reselect-visual (gv)
b1c7394
Fix #18
No branches or pull requests
When pressing
gv
(:help reselect-visual), it should reselect the copied region (visual block).Reproduction:
<leader>y
(osc52.copy_visual)Some codes like the following would be needed:
The text was updated successfully, but these errors were encountered: