Alexei Mozaidze

Results 17 comments of Alexei Mozaidze

It seems that the image is removed.

Also, I'm not sure if Clippy can even lint this, but some functions that logically should not accept negative values accept `i32`, like `RaylibBuilder::size`, which makes no sense at all...

Maybe use `Into` trait for functions? A lot of times I have to convert some value back and forth, making functions accept values that implement `Into` could make user experience...

wgpu has a best-effort support for OpenGL, which means that some OpenGL graphics cards that lack certain functionality cannot be supported by wgpu (aka my integrated graphics). It would be...

Closing issue as, suddenly, it didn't want to crash. Might be because I changed/updated the mods I used, so I might've been wrong on the _"I don't think any of...

The bug still occurs, the only thing I have, though, is this small piece of log I copied from console befoe crashing ```log [00:42:14] [Worker-Main-3/ERROR]: Couldn't download http texture java.net.UnknownHostException:...

Here's a snippet that fixes the issue: ```lua local group = vim.api.nvim_create_augroup("marks-fix-hl", {}) vim.api.nvim_create_autocmd({ "VimEnter" }, { group = group, callback = function() vim.api.nvim_set_hl(0, "MarkSignNumHL", {}) end, }) ``` You...

#39 is now merged with the main branch

Are there any plans to implement this feature?