iacore
iacore
When the icon font won't load, it looks like this:  Source: https://liberapay.com/timokoesters
**Describe the bug** The colors! The horror! **To Reproduce** Try to run the following code with `chaos my_eyes.kaos`. some compile error: ``` pretty c ```  syntax error: ``` bool...
Currently, when the bind foreign class callback returns `{ NULL, NULL }` like the following: ```c WrenForeignClassMethods APITest_bindForeignClass( WrenVM* vm, const char* module, const char* className) { WrenForeignClassMethods methods =...
Bug in source code: https://github.com/tree-sitter/tree-sitter-python/blob/24b530ca158d2782ea9046e756057a412e16b52f/src/scanner.cc#L242 Minimal example: [test-indent.txt](https://github.com/tree-sitter/tree-sitter-python/files/7836269/test-indent.txt) ``` > tree-sitter parse ../test-indent.txt (module [0, 0] - [3, 0] (function_definition [0, 0] - [2, 39] name: (identifier [0, 4] -...
### Qubes OS release r4.1 ### The Issue Buttons on the tablet work in sys-usb, but not sent to dom0. Buttons on the pen work (since it has the same...
[How to file a helpful issue](https://www.qubes-os.org/doc/issue-tracking/) ### Qubes OS release r4.1 ### Brief summary Cursor change support is added in #1551. However, it doesn't work with electron-based apps. Other applications,...
## The Problem Rakudo cannot compile empty C struct. It is valid in C though. ``` use NativeCall; class VrDeviceInfo is repr('CStruct') is export {} ``` ## Expected Behavior This...
## The Problem Currently, there is no way to pass struct by value to C function with `NativeCall`. For example: ``` #include typedef struct { int a; int b[3]; int...
## The Problem In C, some struct has field of type `int[4]`. However, raku doesn't support this yet. ## Steps to Reproduce ``` use NativeCall; class TestStruct is repr('CStruct') {...