Dmitry Matveyev
Dmitry Matveyev
Thank you for the attempts! It looks like it needs a lot more effort then. I'm a bit worried that this will grow too large since I already support 2...
Alright, thank you! Looks like it should be relatively easy to do, I will try to implement it in the nearest future.
@ajusa to give a heads up here. I didn't get to work on it as it appears a lot more complicated than just adding a few lines of code. The...
Note to self: the `raylib.h` file can actually be fully substituted by its parts as shown in janet bindings https://github.com/janet-lang/jaylib/tree/master/src. The problem is that `raylib.h` is specifically tweaked to be...
My 2 cents on how I use LSP in the order from most to least important: 1. Go to definition 2. Lookup documentation or get an error on the current...
Same problem on macos v10.14.5 using kitty terminal v0.14.1 and kakoune built from master. Any further suggestions? ``` ~/toughbyte/hub(gmail-push-sync) » otool -L $(which kak) /usr/local/opt/ncurses/lib/libncursesw.6.dylib (compatibility version 6.0.0, current version...
I have same issue trying to parse ```c typedef struct rAudioBuffer rAudioBuffer; ``` which I fix to ```c typedef struct rAudioBuffer {} rAudioBuffer; ``` which translates with nep1 and header...
More on this: - It's impossible to place C comments for structs or enums so that they are converted to correct Nim documentation comments displayed by `nim doc` - `nim...
Great, thanks! Also an update on raygui. I found a way to link it statically on "as needed" basis which means that we don't need to compile it as a...
> compile `raygui.h` to **.DLL** that refers to `libraylib.dll` Do you mean you want a Linux version of it? On Linux shared libraries have `.so` extension and on Windows there's...