Aditya Siram

Results 18 issues of Aditya Siram

### What happened? If you have a `proc` where one of the argument names is quoted, `getImpl` ignores the backquotes: ```nim import macros proc p(`let`:int) = discard static: echo bindSym("p").getImpl.repr...

Currently checking for the presence of a flag in the '.nimble' file: ``` when defined(foo): echo "foo is defined" ``` does not work when `nimble` is invoked with that flag:...

Feature

### Problem Description I'm using `stack` to install an `xmonad` executable into `~/.local/bin`, followed by `xmonad --restart` at command line but the changes aren't reflected until I `mod-S-q` and re-login....

Currently the standard restricts the meaning of streams to file streams. The underlying idea is a Plan 9-like design aesthetic in which everything is a file. This should be extended...

enhancement
kernel-extension

/u/taktoa on Reddit reported: I'm trying to get this to build in Nix, and I'm getting the following linker error: ``` Linking dist/build/fltkhs-fluidtohs/fltkhs-fluidtohs ... …/dist/build/libHSfltkhs-0.5.1.4-…-ghc8.0.1.so: undefined reference to `Fl_Timer_New' …/dist/build/libHSfltkhs-0.5.1.4-…-ghc8.0.1.so:...

I have to `:quit` in order to close the application.

The following fails: ``` import options import fusion/matching {.experimental: "caseStmtMacros".} type OKind* = enum O1 O* = object case kind*: OKind of O1: o1*: int case O(kind:O1,o1:1): of OKind.O1(o1: @i):...

### What happened? This is a contrived example but please bear with me, it was difficult to distill a more minimal reproduction for this bug, it seems at a certain...