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
When there are multiple cursors, pressing cl breaks into new lines. Disabling noice.nvim fixed it; but I want vim-visual-multi to play nicely with noice.nvim.
Steps to reproduce
<C-S-n> 2 times to create a column of cursors
cl to delete the character to the right
issue occurred
Config
I'm using lazy.nvim:
return {
"mg979/vim-visual-multi",
config=function()
-- create a column of cursors from visual modevim.api.nvim_set_keymap(
"n",
"<C-S-n>",
":call vm#commands#add_cursor_down(0, v:count1)<cr>",
{ noremap=true, silent=true }
)
vim.cmd([[ " all mappings disabled except <C-n> (<C-n> can't be remapped) let g:VM_default_mappings = 0 " To change any mapping you must first initialize the variable: let g:VM_maps = {} let g:VM_maps['Find Under'] = "<C-n>" " https://github.com/mg979/vim-visual-multi/issues/172 let g:VM_maps['I BS'] = "" " disable backspace mapping let g:VM_maps['I CtrlC'] = "" " disable backspace mapping]])
end,
}
Hello! Hope you're doing well.
Description
vm-issue_2.mp4
When there are multiple cursors, pressing
cl
breaks into new lines. Disablingnoice.nvim
fixed it; but I wantvim-visual-multi
to play nicely withnoice.nvim
.Steps to reproduce
<C-S-n>
2 times to create a column of cursorscl
to delete the character to the rightConfig
I'm using
lazy.nvim
:System
NVIM v0.9.5
Build type: Release
LuaJIT 2.1.1702233742
ArchLinux (Linux 6.7.4-arch1-1)
Thank you!
The text was updated successfully, but these errors were encountered: