Saem Ghani

Results 100 comments of Saem Ghani

Oh, I forgot, the gendepend bit is another thing I considered, but it's was slow. It's the closet to a working solution, but just imagine the compiler where one has...

This extension doesn't have nor installs any Nim tool chain. Unless something broke upstream it should just work, the extension simply find and uses whatever nimsuggest you have on your...

Generating source in a cache just seems like a terrible idea. It's a cache, it can disappear with unknown lifetime. The complexity of managing an index where live edits are...

In the readme are instructions as to how to setup the extension dev environment, the slowest thing about it is likely waiting for downloads, but it's dead simple. Anyhow, I'd...

Implied paths work differently between nim compile and nim check, I found out because I ran into the issue a while back (can't recall more).

For me it's not a big deal. If you'd like to take a closer look see the readme for debug instructions and/or checkout the code that dispatches nimpretty. Maybe there...

This makes me nervous, gonna read it over a few times, but the grammar doesn't feel right. The keyword of doesn't feel like it's being classified correctly, I think we...

For the case case 😁, of is saying the thing left of the case is equal to/in the lhs of the of. Hence more equality. So if we started with...

Not exactly equality, but it feels more like an operator than control flow in both cases. This is fuzzy stuff, it's classify syntax to a language agnostic set of categories...

Could you achieve the same thing with a cfg file? The extension uses nimsuggest, which is essentially the compiler. If anything Nimble should generate a workable cfg. Nimble and I...