This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-14
Channels
- # adventofcode (36)
- # announcements (5)
- # atom-editor (2)
- # babashka (19)
- # beginners (98)
- # biff (7)
- # calva (25)
- # cider (1)
- # cljdoc (10)
- # clojure (70)
- # clojure-czech (1)
- # clojure-dev (14)
- # clojure-europe (79)
- # clojure-nl (1)
- # clojure-norway (8)
- # clojure-seattle (3)
- # clojure-uk (2)
- # clojurescript (28)
- # community-development (44)
- # core-typed (3)
- # cursive (2)
- # datalevin (5)
- # datascript (5)
- # datomic (1)
- # dev-tooling (12)
- # emacs (14)
- # honeysql (3)
- # humbleui (11)
- # introduce-yourself (1)
- # java (1)
- # kaocha (1)
- # lsp (3)
- # malli (21)
- # matcher-combinators (2)
- # nbb (7)
- # off-topic (15)
- # portal (12)
- # reitit (4)
- # releases (1)
- # shadow-cljs (59)
- # sql (8)
- # tree-sitter (3)
I did a package refresh last night and now my prelude install chokes on start up. Can't load helm-config
. It happens with a fresh prelude install also. Anyone else having this problem? Emacs 27.1
It’s this commit from helm causing the issue: https://github.com/emacs-helm/helm/commit/e81fbbc687705595ab65ae5cd3bdf93c17a90743 Looks like helm-config hasn’t been needed for a while… https://github.com/emacs-helm/helm/blob/v3.9.0/helm-config.el#L20
This change to prelude got my config working again:
diff --git a/modules/prelude-helm.el b/modules/prelude-helm.el
index 93ce2aa..75b0e5f 100644
--- a/modules/prelude-helm.el
+++ b/modules/prelude-helm.el
@@ -33,7 +33,6 @@
(prelude-require-packages '(helm helm-projectile))
-(require 'helm-config)
(require 'helm-projectile)
(when (executable-find "curl")
I’ll make a PR for prelude with the details.
will anything do this re-formatting for me?
{:a :b :c :d} -> {:a :b
:c :d}
if you're willing to go all the way into aggressive-indent-mode, this is would be done just by adding a newline after :b
- definitely an opinionated route though!
I use cider-format-edn-region
a lot: https://docs.cider.mx/cider/usage/misc_features.html#formatting-edn
(it requires an active REPL, obviously 🙂)
Awesome thanks for the help.
I use lispy, M
over one of the curly braces will do that.
not that i'm aware of, but if you make the newlines yourself you could use align-regexp
on the result to align the keywords into columns