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
Using lightspeed.nvim while in multiple cursors mode results in hanging up neovim. The only way to get out of that is Ctrl-C or kill -9.
kill -9
The easiest way to fix this would be to provide an override option to disable lightspeed.nvim (and restore default mappings) by toggling a variable.
That's what other plugins are doing. For example, from my .vimrc:
function! Multiple_cursors_before() let g:yankring_record_enabled = 0 if exists("AutoPairsToggle") call AutoPairsToggle() endif endfunction function! Multiple_cursors_after() let g:yankring_record_enabled = 1 if exists("AutoPairsToggle") call AutoPairsToggle() endif endfunction
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using lightspeed.nvim while in multiple cursors mode results in hanging up neovim. The only way to get out of that is Ctrl-C or
kill -9
.The easiest way to fix this would be to provide an override option to disable lightspeed.nvim (and restore default mappings) by toggling a variable.
That's what other plugins are doing. For example, from my .vimrc:
The text was updated successfully, but these errors were encountered: