-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Not compatible with neovim? #23
Comments
I have the same issue. I'm trying to figure out which version stops working. |
Did either of you solve this? I started this discussion on the Nvim plugin manager Packer's GitHub page. I haven't had time to digest all of this information yet, but I suspect that the answer is found somewhere in the following resources: I will update this when I get it working. |
Hey guys, I ran into the same problem. I found a temporary approach which is to use nvim-treesitter with the incremental selection settings, require'nvim-treesitter.configs'.setup {
...
incremental_selection = {
enable = true,
keymaps = {
init_selection = "vv",
node_incremental = "vv",
node_decremental = "vV",
},
},
...
}
|
Thanks @ifyouseewendy! It's too bad that the Treesitter option doesn't support as fine-grained expansions. If anyone learns of a Neovim port for vim-expand-region please share! |
@CharlesARoy try this one https://github.com/gorkunov/smartpairs.vim (yes it's old) but it works well in nvim. By default it inits selection with {
"gorkunov/smartpairs.vim",
event = "BufEnter",
},
|
Plugin is currently working on my side, though I can't find out which module name to Using |
In my case, it works fine with nvim. Below is the lazy config
|
Hi,
Thanks for creating this tool. I've been using it for a long time.
I'm migrating over to neovim, and noticed that it doesn't work in my setup. Below are the relevant lines in my config:
I'm wondering whether it is known to be incompatible with neovim, or something is wrong with my setup?
The text was updated successfully, but these errors were encountered: