Jason Beetham
Jason Beetham
Was scrolling through the issues and seen this one, so just wanted to drop in and say that embedding Nimscript is very easy with atleast 1.4.0 onward and with my...
As I seen you want help with this I've started a [fork](https://github.com/beef331/moe) to implement it, if you want to check it out build it using `nimble dscript`, copy the stdlib...
Further progression, although with how some of your data is layed out `Color` specifically it's being a little big of a pain to work with, the macro ontop of color...
The current state is, no more manual procs, all exposed code is generated using macros, this gives full control(atleast mostly full, some things arent exposed yet) of `EditorSettings` and `ColorTheme`...
Error report order issue with `--errorMax:0` the error is there just not presented first ``` /home/jason/nimskull/bin/abuse.nim(5, 3) Error: only a 'ref object' can be raised /home/jason/nimskull/bin/abuse.nim(4, 18) Error: type mismatch:...
That will not resolve the issue as converters bubble up. For example the following still errors. ```nim # Module c converter toInt*(x: uint8): int = int(x) proc `$`*(x: uint8): string...
Well I think the hotkeys should be customizable by the user, and you can disable the tiling navigation/resizing and the like when an input is active, assuming there is some...
@narimiran can I get you to add the August entries as well when you go to publish this?
Looking into it `isFunctionTypeVariadic` seems to return `1` on the above procedure, causing this issue. Perhaps it's a bug with libclang?
You dont need to put that pragma in every file that uses it, you just need to say to your users "Create a config.nims and put `--experimental:overloadableEnums` in it". It's...