Kyle Chui

Results 122 comments of Kyle Chui

Are you using the tagged version or `main` branch? Please try switching to the other and let me know if that changes anything.

That's good to hear! I'm still trying to work on the latest version when I have the time, so hopefully I'll be able to release a new version at some...

What version of Neovim are you using? If you're using v0.7.2, this is an issue with `vim.fn.input` that was resolved in [this upstream issue](https://github.com/neovim/neovim/issues/14090#issuecomment-1184064517) (requires nightly).

Yeah sorry about that one. I was initially thinking of doing a workaround by using some arbitrarily long hash string to denote `cancelreturn`, but then figured that I would just...

Yep, I'll close this issue once I update the README to require Neovim 0.8+

Can you provide an example of what is exactly the problem? Like your setup function + buffer + keymap combo?

Sample config: ```lua require("nvim-surround").setup({ surrounds = { [")"] = { change = { replacement = { "(", ")" }, }, }, ["}"] = { change = { replacement = {...

Note to self: When computing nearest selection, return which character from the alias table was actually used to find the selections.

To my knowledge (if I'm understanding correctly) this should already be possible in the plugin. It's certainly not the most elegant, but here's a code sample for Lua strings: ```lua...

Hi there, adding this in would require a non-trivial refactor and I probably won't do it anytime soon (although it is quite an interesting idea). However, a workaround you could...