Alexander Medvednikov

Results 12 issues of Alexander Medvednikov

Right now everything is hardcoded.

Like vimtutor, but better.

Mouse support, etc. Right now you have to know Vim to use Vid.

![image](https://user-images.githubusercontent.com/687996/166807114-337d22b3-ec47-4d31-af65-5741ff4a57a4.png)

`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...

Bug

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.

Type: Optimization