Alexander Medvednikov
Alexander Medvednikov
Right now everything is hardcoded.
Like vimtutor, but better.
Mouse support, etc. Right now you have to know Vim to use Vid.

`ui/src/picture.v` ```v if img := dd.create_image(pic.path) { pic.image = img } ``` ``` if (_t1 = gg__Context_create_image(&dd->Context, pic->path), !_t1.is_error) { gg__Image img = *(gg__Image*)_t1.data; pic->image = img; ``` should instead...
Right now there's no way to quit a Sokol application on macOS. This adds a quit menu and a cmd+q shortcut.
Quite a useful feature, would be nice to have it upstream.
Hi, I reduced the default stack size from 8 MB to 8 KB. Surprisingly RAM usage remained the same in our test program which launches thousands of coroutines. Also they...
Concatenating multiple strings should always result in only one allocation.