vim

For discussion on all things (neo)vim.
orestis 2021-02-10T12:35:39.069Z

So I played around with creating a NeoVim GUI. For now using web technologies for prototyping. It’s fun how even the RPC API is geared towards terminal grids. The obvious, and easy to implement UI update algorithm supposes that drawing one character in one cell is a cheap operation, and easy to batch.

orestis 2021-02-11T16:09:13.073500Z

Server side is so much faster! Just sending the new row and doing an innerHtml is pretty fast.

Olical 2021-02-10T22:21:39.069500Z

Still pretty darn cool. I wonder if rendering to canvas would be better... or even a React like DOM reconciling thing.