This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
Emacs 29.1 released! https://www.reddit.com/r/emacs/comments/15deuje/emacs_291_is_available/

have you guys using it in wsl2 + wslg been able to get it to work with powertoys? my emacs window doesn't respond to my keyboard shortcuts or fancyzones.
found this https://github.com/microsoft/wslg/issues/22 looks like i'm stuck with x410 for now
I currently have this same question https://clojurians.slack.com/archives/C099W16KZ/p1441136787000091
queries look like this
(d/q '[:find ?name
:where [?e :person/name ?name]
[?e :person/zip 90210]]
(d/db conn))
but CIDER will default to this
(d/q '[:find ?name
:where [?e :person/name ?name]
[?e :person/zip 90210]]
(d/db conn))
As you might imagine, to clojure-mode/cider-mode that's just a vector, undistinguishable from other vectors It seems possible to have a datomic-mode, but someone would have to crank it out :) This alternative will be aligned the same by a variety of tools:
(d/q '[:find ?name
:where
[?e :person/name ?name]
[?e :person/zip 90210]]
(d/db conn))
yup, that is what I am doing for now… XTDB uses vector of vectors for where clauses, so it does not have this indent problem. Oh well, something to keep in mind while I use Datomic
Personally I would enjoy a datomic minor mode, and a honeysql one, among others... simply a matter of effort/reward ratio