Jason

Results 24 comments of Jason

> It will need a test @vtjnash any ideas on how to test this? once you trigger the UAC on subprocess, you need user's interaction to either click allow or...

Hello, @vtjnash , could you please take a look?

> Would you happen to be using Copilot? Yes, I am using Copilot

> did you tried latest commit, code completion was not working for me before but right now it does no, just checkout the latest commit same for me, and I...

the latest commit without copilot still gives me the wrong completion items of `list_of_list` ### definition ![image](https://github.com/zigtools/zls/assets/15936231/5908d0ee-1fd2-405a-86c9-d06f8c26be0a) ### usage ![image](https://github.com/zigtools/zls/assets/15936231/fb0a0031-9af4-42ac-9380-5103b32e6658)

```zig const std = @import("std"); const Foo = struct { a: i32 }; const ListOfListOfFoo = std.ArrayList(std.ArrayList(Foo)); pub fn main() !void { var foo_list_of_list: ListOfListOfFoo = undefined; for (foo_list_of_list.items) |foo_list|...

@yoshuawuyts No, I didn't mean use it as proxy, I mean request through some proxy, in my country have censorship, it is really important

@yoshuawuyts just like these [Proxy](https://docs.rs/reqwest/0.10.0-alpha.2/reqwest/struct.Proxy.html), support http/https/socks proxy And `HTTP_PROXY`, `HTTPS_PROXY`, `SOCKS_PROXY` and `NO_PROXY` system variables support

https://github.com/http-rs/surf This one doesn't rely on `rustls`, but it uses `async-std` instead of `tokio`