Results 26 comments of Clyybber
trafficstars

While we are at it, I found another weird behaviour: When starting sxhkd manually from a terminal emulator window and then opening new terminal windows, the shell in the newly...

IMO if a library wants to give me a way to log what it's doing it should allow me to pass a proc to it, with the arguments of that...

@disruptek had the awesome idea to transform `x = a & b` into `a.add b; x = a`/`a &= b; x = a`. EDIT: A bit simpler: `x = (a...

Instead of attaching syms to types, I think we should attach scopes (the declaration scope) to syms, so that symbols available at declaration will always be available at instantiation.

Fair enough, I'd prefer if the implementation was a bit cleaner/more self contained too.

So we make debugging harder, introduce a bunch of new arguments/pragmas that make everything unneccessarily more complex, instead of just using the already existing `{.push: stacktraces: off.}` when you really...

Heh, I had the same error a few days ago, the issue is that the renderer is using internalError but only has an empty config created with `newPartialConfigRef` which makes...

The if statement is clear and readable, "encourages" writing proper error messages and is not something people will have to search for in the documentation. I don't think the stdlib...

I would prefer to reuse the template mechanism as a means to alias symbols, so looking forwards to Araqs RFC there. Afaict the other thing that `alias` enables is passing...

IMO `{.compileTime.}` should be merged with `static`, and the scope issue (https://github.com/nim-lang/Nim/issues/9970#issuecomment-452226661) be resolved like this: Static without introducing a scope: ```nim static let foo = "ha" echo foo #At...