shift

Results 16 comments of shift

I see, thanks for pointing out at augroups. I don't know whether i should keep this issue open though.

Alright, I've tried to use `LeapEnter` and `LeapLeave` events, but they don't work. Neovim does not recognise them. I tried to register those autocmds after loading leap.nvim, so it is...

Oh, this is my bad, I forgot that I need to append `User ` before custom vim events

Using autocmds for this pretty weird because `LeapEnter` is being executed after I have typed `sre` (for example). I had to map using a Lua function that turns conceal off,...

```lua vim.api.nvim_create_autocmd("User LeapEnter", { group = "Conceal", callback = function() vim.opt.conceallevel = 0 end }) ``` `Conceal` augroup was created before. When I put some `print` statements there I can...

After a couple of tests I realized that the problem is in `LeapLeave` event. When I disable `LeapLeave` autocmd, that looks like this: ```lua vim.api.nvim_create_autocmd("User LeapLeave", { group = "Conceal",...

Oh, this makes sense now. Thanks for support, it works as expected now!

There is an interesting moment: it looks like it is a NeoVim issue itself, since after I've downgraded to 0.7 from latest nightly everything seemed to work. Although I am...