kiryph
kiryph
@georgeharker Thanks for chiming in. However, I have installed the same neovim version on cli 0.9.5 where I cannot reproduce the issue ``` ❯ nvim --version NVIM v0.9.5 Build type:...
@georgeharker Thanks for taking a look. Could you at least reproduce it? **When I install VimR version v0.44.0 with neovim 0.8.2 from January 2023, I do not get the error:**...
> I don't use Lazy.nvim but installed via packer and see the same thing. I do not think this issue is related to the used package manager (packer or lazy)....
Sorry for the noise and confusion in this issue. 1. Version 0.8.x are not compatible with the new VimR release. So I could not test them at all. I did...
I tried it on a fresh new day and unfortunately, the issue persists. I am not sure what was different to the last time I tried it. I guess it...
I had to place the unimpaired bindings using repmo into `~/.vim/after/plugin/repmo-unimpaired.vim` (filename is up to you except the file extension `.vim`). Otherwise vim-unimpaired itself has the last word. It looks...
I was hoping you might use targets.vim as well. Anyhow: targets.vim provides quite a lot text objects, see e.g. here https://github.com/wellle/targets.vim/blob/master/cheatsheet.md. To speed up start up time text object mappings...
Thank you for your help. Sometimes the obvious and easy answer is more difficult to see. As far as I have tested it, it does not work perfectly Consider this:...
## [which-key.nvim](https://github.com/folke/which-key.nvim) Yes, VimTeX works out of the box. Here three screenshots. 1. `l`:  2. `ts`:  3. `[`:...
Here a possible user configuration for neovim using [which-key.nvim](https://github.com/folke/which-key.nvim): ```lua vim.api.nvim_create_autocmd("BufEnter", { pattern = "*.tex", callback = function() require("vimtexwhichkey") end, }) ``` file vimtexwhichkey.lua ```lua -- file vimtexwhichkey.lua local wk...