larpon
larpon
Would be really nice to be able to copy / duplicate layers
E.g. Left arrow for one frame back, right for forward
It would be a killer feature to have live examples of V repositories embedded straight in the README.md. The V compiler can run in WASM - so if you can...
IDE
With the project taking off in this speed - It'd be nice with an Electron based IDE. Complete with syntax highlighting, plugin manager, code completion and gdb support for when...
```v struct Message { a string b string } struct Fax { message Message } f := Fax{ message: struct { a: 'A' } } dump(f) ``` Here, `message` can...
I've been try to get `sokol_gp` to work with multiple [`sokol_gfx` contexts](https://github.com/floooh/sokol/blob/master/sokol_gfx.h#L542-L583) I've tried to patch the code a bit here and there (just simple things, like removing the init_cookie...
I'm having trouble interpreting this error when trying to edit a `.cpp` file in `nvim` using this plugin. The error is: ``` [ncm2_pyclang_proc@yarp] Job is dead. cmd=['/usr/bin/python3', '-u', '/home/user/.local/share/nvim/plugged/nvim-yarp/pythonx/yarp.py', '/tmp/nvimMQ7gCF/0',...
### Describe the bug `$dbg` statement in `sdl/examples/basic_window` results in compile error ### Reproduction Steps `basic_window.v` with the following contents: ```v module main import sdl fn main() { sdl.init(sdl.init_video) window...