Sainan
Sainan
Yeah, it seems for you it disconnects after a C++ exception is thrown. But for me the issue is that I can't get it to connect via TCP at all....
Notepad++ v8.5.2 on Windows 10. 64-bit version of N++ & the plugin.
That's strange. Idk, must be _something_ about my machine, then. Not a huge issue since I can use the tcp over stdio proxy and that works fine.
Turned off firewall, still same issue. I do use a VPN, tho (Mullvad), but same issue with Wireguard and OpenVPN protocols, and when I turn it off.
Ehhh ```Lua table.uniques = function(t) local seen = {} t:filter(function(x) if seen:contains(x) then return false end seen:insert(x) return true end) return t end ```
Although might need a different name such as table.deduplicate or table.dedup so we can have table.deduplicated or table.deduped for the copying variant.
Somewhat worth noting that now this can be emulated as followed on 0.10.0: ```lua local t = { "foo", "foo", "bar" } print(dumpvar(t:countvalues():keys())) -- { "foo", "bar" } ``` Although...
My concern is compat with WASM, where W^X is baked into the ISA, by which I mean new code to run cannot be allocated at runtime without a bunch of...
I think just getting an API working is the first priority. I have tons of ideas for possible improvements beyond the initial API proposed here, but it will have to...
Of course. Our standard is to have a consistent standard library across platforms, otherwise there's diminishing value in adding it to the standard library to begin with. I think the...