Arne Brasseur

Results 76 issues of Arne Brasseur

### Issue: Given, with | being the cursor position ``` (xxx (yyy|)) zzz ``` When you slurp forward in paredit it gives you ``` (xxx (yyy|) zzz) ``` In Maria...

enhancement
commands/keys

- It's not obvious when first looking at Maria how to add a code block. I looked around in the UI, ended clicking on "+", and lost the document I...

commands/keys

Having `load-gist`, `load-js` and `load-npm` is super cool, e.g. I created this little "piano" with Chris Ford's [cljs-bach](https://github.com/ctford/cljs-bach). https://dev.maria.cloud/gist/da20602e3eef7cf1e9b45a13884da972 This works if you evaluate the forms one by one, but...

With the work that's been done it's becoming possible to use the sideloader+dynamic loading of middleware to upgrade an nREPL connection to use the cider-nrepl middleware. Now I'm starting to...

See https://github.com/lambdaisland/deja-fu#piggieback-printing A literal like `#time/time "10:11:12"` will get parsed on the Clojure side to an `UnknownTaggedLiteral`, which then gets printed again. This printing on the Clojure side will output...

When doing a `POST` request the `:body` in the request map is `nil`. ``` clojure :body (if (.isBlocking exchange) (.getInputStream exchange)) ```

enhancement

So apparently the Shoes version in Debian/Ubuntu hasn't been updated since 2008 :/ There's a Debian issue from 2010 about it being outdated, but from what I can see the...

Cucumber is a multi-platform testing tool, when using Cucumber you write your tests in a language called "Gherkin", which looks like lightly structured plain text. Each test file is known...

Guides

`clojure.test` has this feature where you can define a function named `test-ns-hook`, and instead of running the test vars in the current namespace, it will run that function. My impression...

feature

We have two places where we throw an early-exit with exit code 252. We should never do this, an exit code should unambiguously at the code that caused it. -...

improvement