Jamie Brandon

Results 47 comments of Jamie Brandon

Do you mean jump-to-definition? It's bound to ctrl-. by default but at the moment it is only supported in clj/cljs.

We can use (https://github.com/davidhalter/jedi) for python and tern ( http://ternjs.net/) for js. We just need to implement async autocompletion first. Shouldn't be too hard. On 10 January 2014 03:02, fishg...

A minor usecase - when translate-c can't handle something I make a wrapper function instead: ``` [nix-shell:~/bluetron/blinky]$ cat wrapper.c #include "stdbool.h" #include "stdint.h" #include "nrf_delay.h" #include "boards.h" void bluetron_nrf_delay_ms(uint32_t ms_time)...

Let's add validation in general to this issue. Something like: ``` zig fn validate(comptime T: type, bytes: *const [@sizeOf(T)]u8) !void { switch (@typeInfo(T)) { .Struct => inline for (@typeInfo(T).Struct.fields) |field|...

I believe that at least one of the issues here is that `makeDictVector` is called multiple times while `Metadata` is called only once. So some intermediate vectors are created with...

> The fuzz tests in zig test mode would still run but would only do 1 iteration each, with (probably useless) random input. Non-deterministic CI failures ahoy! After fuzzing in...

Some minor quality-of-life options from other tools: * Set a timeout after which the fuzz test will be killed and the process restarted. * Choose whether timing out is considered...