Ramil Gadzhiev
Ramil Gadzhiev
Same issue, ruby. Matching corrupts when **changing** keyword.  Configs https://github.com/RamiGaggi/dotfiles/blob/f097d6a376dec8c8901dbe1bc2f0c70f9cab8816/nvim/init.lua#L250-L252 ``` matchup = { enable = true } ```
Same, this problem appears when i switch to another buffer with telescope buffer picker too fast. [config](https://github.com/RamiGaggi/dotfiles/blob/main/nvim/init.lua#L617-L630)
You can do this before calling setup, but be ware, it's monkey patching. ```lua local autocmds = require("kitty-scrollback.autocommands") autocmds.set_term_enter_autocmd = function(_) end autocmds.set_yank_post_autocmd = function() end require("kitty-scrollback").setup({ keymaps_enabled = false...