Stefan Kamphausen

Results 12 comments of Stefan Kamphausen

I'd also recommend _considering_ vertical alignment in `let`, `ns`, literal maps and vectors and maybe other place for improved readability while keeping in mind that it may complicate the code...

Tests run through, but I think there are no tests for the cookie spec. I don't feel confident enough to write one myself.

Me too! :-) Tried ctrlf today and found this almost immediately. It's the one isearch feature I use a lot.

My use-case for `C-w` is to search for usages of a function or variable. Very, very barebones code navigation; works for all coding languages as it doesn't rely on special...

GitHub seems to be doing exactly what shopify does. So, here is a gist outlining the solution I created after the short discussion in #43 https://gist.github.com/ska2342/4567b02531ff611db6a1208ebd4316e6 IMHO, that is perfectly...

Facing the same problem. I upgraded from 2.8.0 to 2.8.3 to get the newer nrepl versions which seem to be required by Cider. Any help highly appreciated.

@alexander-yakushev, I start the REPL via a boot task from the command-line and inject the nREPL from there. Anyhow, I just use 2.8.3 in development and don't commit my local...

Is anyone still working on boot? There's no real movement in the project, even with serious bugs like this around. Don't want to be pushy. It's totally fine if the...

The workaround is fine for me. Been on 2.8.2 for builds and 2.8.3 for local development (nrepl requirement) for ages. I did some heavy investments in my build tooling with...

I would love to understand this, too. An even smaller example: Fails: ((p/parser :thing [:name*] :name #"[a-z]" ) "foo") Works: ((p/parser :thing [:name] :name #"[a-z]*" ) "foo") Regards, Stefan