iacore

Results 421 comments of iacore

> [@iacore](https://github.com/iacore) What do you mean by "This doesn't work"? And did you restart VSCode after creating the file? I did restart VSCode. The type info is still not from...

~~"mouse capturing" do not exist on Linux, as applications don't need permission to read mouse movement (poor security decision of X?).~~ This is related to absolute mouse position being interpreted...

At this point we might as well support all xinput devices and copy code from some open-source remote play solution.

API Proposal from Lume: https://github.com/lumeland/lume/issues/590#issuecomment-3008927969 ``` addEventListener("filechanged", (ev) => { const { filename, canHotReload } = ev.details; if (canHotReload) { console.log(`The file ${filename} was changed and can be hot reloaded`);...

[the plot thickens](https://github.com/lumeland/lume/discussions/611#discussioncomment-9720365). i may end up adding more features.

So, I discovered another bug that I don't know how to fix. Can you fix it? I've added a test for it.

fixed it. moved it to #279.

mmm ok. Thanks for the explanation!

there is also the Rust way of turning a-b into a_b

Why is `CString` used everywhere? On every write it literally recalculates the length of the string. ```rust pub fn tputs(&mut self, str: &CStr) { self.begin_buffering(); let _ = self.write(str.to_bytes()); self.end_buffering();...