Ambrose Bonnaire-Sergeant

Results 116 comments of Ambrose Bonnaire-Sergeant

This seems to be linked to [this call](https://github.com/technomancy/leiningen/blob/6eb2388da82ece454f7f674d88d4af0f3c287d99/leiningen-core/src/leiningen/core/classpath.clj#L508-L510) to `aether/merge-versions-from-managed-coords`. The result seems to inherit the dep options from `:dependencies` rather than `:managed-dependencies`. For example the result of the following...

Perhaps this is just how pomegranate works. I think [this feature request](https://github.com/clj-commons/pomegranate/issues/76) covers what we want to achieve via leiningen: to manage more than just the version in `:managed-dependencies`.

I don't think this is a solvable problem if we require `:and` to be involved. If instead we have a `:distinct` property, we can then have the explainer short circuit...

Oh I see, I misread the docs. Do we even need to specify the bounds on cljs since it looks like the same as double? -------- Original Message -------- On...

@velios I'm getting around to trying it out in practice, @rajcspsg sent me these repl snippets. If you can figure out how to test it, please do. ```clojure (require '[schema.core...

> I'm finding (on macOS both 13.1 x86 and 13.2.1 arm64) that {:button :primary :pressed? true} only occurs with a full trackpad click, not with the Tap to click feature...

Can you post your solution? I'm guessing you followed [this advice](https://clojurians.slack.com/archives/C053AK3F9/p1693489435690519?thread_ts=1693443309.522889&cid=C053AK3F9)? > henryw374: Set the locale on the formatter itself rather than relying on ambient default

Similar (rejected) feature for schema for reference: https://github.com/plumatic/schema/pull/451/files

I think it's fipp now. I found more discussion here: https://github.com/tpope/vim-fireplace/commit/cb124b8a086fa89da9c11856df6f0994ba8767ef fipp is causing me minor issues, also would be nice to have the option to switch to something more...

If a context would be inferred as dynamic, we can push the context into each body form. Then we can proceed to handle individual cases, but the advantage is it...