Ramil Gadzhiev

Results 3 comments of Ramil Gadzhiev

Same issue, ruby. Matching corrupts when **changing** keyword. ![Peek 2022-07-19 12-31](https://user-images.githubusercontent.com/79656935/179718595-e91b1d3e-e0c3-453b-8934-f4314eaaea15.gif) 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...