Raafat Turki
Raafat Turki
Update? This is a really important piece as some programs are pretty much unusable with animations.
That's good to hear! yes the fold API would be a very nice interface. However I do remember `:mksession` being able to store folds along with their states, I don't...
> encodes the folds with raw `normal! zc` commands ... That's correct, but I don't think the fold API PR will appear anytime soon. > I'm a bit confused about...
Hmm, I understand Yes rn you are allowed to type stuff other than 00 - FF which isn't ideal but afaik there isn't a "sane" way of preventing it. The...
Turns out it's totally possible to control what char insert on each key press. For instance the following prevents the `s` char from being inserted into the buffer: ```lua vim.api.nvim_create_autocmd({...
Hmm, yes the current binary buffer detection is not too sophisticated (the correct way would be to lookup magic bytes but that's a bit too computationally expensive and requires file...
Ahaa, as I suspected it's not utf8. You seem to be using lazy to manage your plugins, you should put the options in an `opts` table like so: > you...
Hmm, corn re-renders when any of the following autocmds are triggered ```lua "DiagnosticChanged", "CursorMoved", "CursorMovedI", "TextChanged", "TextChangedI", "WinResized", "ModeChanged", ``` I will look into making the render cycle non-blocking. Perhaps...
Hi! I need more information to work with here A minimal reproduction would be best .. or anything better than a screenshot in German ahaha
The plugin is going through a rewrite right now, the use of xxd limits the way nvim interacts with the hex content such as searching. This will be trivial to...