Antoine Delègue
Antoine Delègue
Ok, it is solved now eventhough I'm not sure what the cause was. I think it was because `stdin` was not defined inside loadPyodide.
This is caused by an error inside the `stdout` callback when loading. The error message is a bit cryptic though.
I was thinking more broadly of a way of using the project without installing any tools and having the feature currently inside the command line available through compile-time execution. I'm...
https://github.com/status-im/nim-testutils seems to contain a bug. Inside ntu.nim: ```nim proc spawnTest(child: var Thread[ThreadPayload]; test: TestSpec; core: int): bool = ``` a thread is created and `ThreadPayload` is passed to it....
``` ../../lib/std/typedthreads.nim(305, 25) Error: type mismatch: got but expected one of: proc (t: var Thread[system.void], tp: proc (){.nimcall, gcsafe.}){.noSideEffect, gcsafe.} ``` I don't understand this error in the tests. They...
Currently, the [nimsuggest documentation](https://nim-lang.org/docs/nimsuggest.html) seems a bit outdated. This is hindering my ability to add new feature while keeping performance decent (the performance is already quite bad). The `--v3` flag...
Nimsuggest keeps using so much CPU, I'm tempted to write a naive nim parser for fast suggestions (even if templates or macros are not supported)
NimPlus does not use the Nim LSP for suggestions / checking. You can use it without installing them. On the other-hand, if you prefer the suggestions provided by LSP-nimlangserver, you...
I'd be happy to contribute pull as a command to the palette. I believe that the palette is a great way to make shortcuts more discoverable: the first time an...