TwoClocks

Results 23 issues of TwoClocks

add support for `bitoffsetof` I took a best guess. If you imaged something else let me know, or fix it up the way you like it.

Here are the tests from the Rust repr-c converted to C with a zig runner. Since neither layout nor `_bifoffsetof` are merged, only the parser is enabled for testing. All...

```c typedef int I1 __attribute__((aligned(8))); typedef I1 I2 __attribute__((aligned(1))); _Static_assert(sizeof(I2) == 4,"record I2 wrong sizeof"); _Static_assert(_Alignof(I2) == 1, "record I2 wrong alignment"); ``` the alignment of I2 fails. It returns...

bug

Neither Clang, nor ARO like this code ```c typedef int J[]; struct J_size { char a[sizeof(J)+1]; char b; }; ``` Both error with `invalid application of 'sizeof' to an incomplete...

enhancement

The following code walks the bottom panel off the bottom of the screen. While I suppose its height is still the required height, but it's off the screen, so who...

bug

This is an attempt to fix [Bug #613](https://github.com/gyscos/cursive/issues/613https://github.com/gyscos/cursive/issues/613) In theory, this code could be placed inside the `desperation` branch where `cap` is called. To fix the bug, you have to...

I just discovered this create, and I benchmarking my brains out. It's great. Thanks so much. I've found a few things I wish there were docs for (or I can't...

### Description If you install `fd` or `rg` via snap (linux), `find_files` and `live_grep` are blank. The pickers pop up, but nothing is in them regardless of what is typed....

bug

The example given in the docs for running a single file does not work. steps to reproduce: 1) Install docker image 2) clone this repro 3) Run command from docs...

the following lines fails to load `include required("env.hocon")` with an exception about not being able to find `env.hocon.conf` or `env.hocon.json` etc. Seems like it shouldn't imply an extension if one...