nxmxsxs
nxmxsxs
I think this happened because, as there's no load order when it comes to neovim plugins, heirline (which depends on colors from my colorscheme plugin) would load before my colorscheme...
Helo. I thought I would share the lazy module I use: ```lua local lazy = {} lazy.require = function(modname) local ref = nil local init = false local init_ref =...
Yup, just confirmed it only segfaults with neovim latest master. On nvim 0.7.2, It segfaults with this message `thread '' panicked at 'assertion failed: col
Yup, I figured you would.
yes, you fixed the main problem. However consider this case: 1) you have the string `"hello"` 2) if you try to `ciw` with the cursor on the character `h`, you'll...
Yeah. I agree with the sentiment about using `vim.schedule`. ~~I've got another solution via [this branch](https://github.com/MurdeRM3L0DY/lazy.nvim/tree/expr_remap_key_handler) which uses `expr` and `remap` to retrigger the original keymap.~~ Edit: I've figured out...
Understood. From my various "tests" it works pretty well: - loading multiple plugins with one keymap. e.g `gzaiw[char]` loads `mini.surround` then `mini.ai` for me - count works as expected
AFAICT, these are the more relevant issues regarding the keys handler: - #308 - #307 - #286 - #252 - #71 - #28 All of these seems to be fixed...
Happy to help! Though I did mention that there were some issues with neovim stable. Were you able to verify this?