Jason Beetham
Jason Beetham
Currently, atleast as far as I can tell there are no methods of changing focused tile, or resizing with just keyboard alone. Something akin to tiling window managers. `alt +...
``` test.h #define own own int* wasm_engine_new(); ``` ```nim import futhark importc: sysPath "/usr/lib/clang/13.0.1/include" path "./" "test.h" discard wasmEngineNew() ``` Creates a `wasmEngineNew` annotated with `varags` and on usage of...
### Description ```nim template emitTupleType(trait: typedesc): untyped = trait type Traitor[Traits] = ref object of RootObj ## vtable: emitTupleType(Traits) type Generic[X] = object proc test2[Traits](val: Traitor[Generic[Traits]]) = static: assert val.vtable...
> command can be used by developers to compile individual modules inside their package Presently `nimble c nimblepkg/options` does not work. This seems to be the intended interface.
Attempting `nimble install https://github.com/beef331/wasm3@#813a80fa66bdaeebfb98abe6aed1642719c29c6a` results in nimble failing to copy a file, saying it already exists. Manually cloning and doing `nimble develop` on that repo works fine.
Presently `nimib` takes in all code blocks and quotes Henry Ford "You can have all the code you want as long as it's Nim". `NbBlock` should have a language field...
This change makes the elvis operator better at handling complex expressions. It also removes the incorrect `try except` usage that caught defects, as they just hide bugs if you use...
Presently the following results in `micros` being installed in the workspace directory instead of `.deps`. ``` mkdir workspace cd workspace atlas init --deps=".deps" atlas use micros ``` Looking at the...
Presently the logic to parse types is hardcoded https://github.com/juancarlospaco/cliche/blob/nim/src/cliche.nim#L122-L139 . Is there any specific reason this does not use a generic interface like the following? ```nim proc parseCommand[T](input: openarray[char]): T...